// JavaScript Document

/*print page function*/
function print_page(){ 
if ( navigator.platform.toLowerCase().indexOf("mac") != -1 && 
!window.netscape){ 
alert("The browser version you are currently running is not supported. Please press Command + P to open the print dialog box."); 


}else{ 
window.print(); 
} 
}

