function print_page() {  
 width=585;
 height=500;
 print_win=window.open('/frame-templates/print_template.cfm','PrintWMSPage','width='+width+',height='+height+', top='+((screen.availHeight/2)-(height/2))+',left='+((screen.availWidth/2)-(width/2))+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
 print_win.focus();  	  
}

function msprint_page() {  
 width=585;
 height=500;
 print_win=window.open('/frame-templates/msprint_template.cfm','PrintWMSPage','width='+width+',height='+height+', top='+((screen.availHeight/2)-(height/2))+',left='+((screen.availWidth/2)-(width/2))+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
 print_win.focus();  	  
}
	 
function email_page() { 
 width=585;
 height=600;
 URLvar = 'email_url='+document.location;
 email_win=window.open('/frame-templates/email_template.cfm?'+URLvar,'EmailWMSPage','width='+width+',height='+height+', top='+((screen.availHeight/2)-(height/2))+',left='+((screen.availWidth/2)-(width/2))+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
 email_win.focus();
}

function msemail_page() { 
 width=585;
 height=600;
 URLvar = 'email_url='+document.location;
 email_win=window.open('/frame-templates/msemail_template.cfm?'+URLvar,'EmailWMSPage','width='+width+',height='+height+', top='+((screen.availHeight/2)-(height/2))+',left='+((screen.availWidth/2)-(width/2))+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
 email_win.focus();
}

