Here you can write the javascript functions you want to use for your platform. There is no need to enter javascript start/end tags.
For example:
function printPreview(){
var url = window.location.href + '?&printpreview=1';
if(window.location.search){
url = window.location.href + '&printpreview=1';
}
window.open(url);
}
|