function print_page(){  
	width=578;
 height=486;	
 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 email_page(email_url){ 
 width=560;
 height=430;
	URLvar = 'email_url='+email_url;
 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();
}