function openWindow( url, winName, iWidth, iHeight ) {
		
	this.name = "MAINPAGE";
	popup = window.open( url, winName, "status=no,width=" + iWidth + ",height=" + iHeight + ",resizable=yes,toolbar=no,scrollbars=yes" );

	if (navigator.appName == "Netscape") { 
   		popup.focus(); 
	} 

}

function openPrintWindow(PrintURL){

popup = window.open(PrintURL,'PrintWindow','status=no,width=680,height=500,resizable=yes,menubar=no,toolbar=yes,scrollbars=yes');

if (navigator.appName == "Netscape") { 
 			      popup.focus();
 			   } 
}


function openSpecimenWindow( url, winName, iWidth, iHeight ) {
		
	this.name = "MAINPAGE";
	popup = window.open( url, winName, "status=no,width=" + iWidth + ",height=" + iHeight + ",resizable=yes,toolbar=no,scrollbars=yes" );

	if (navigator.appName == "Netscape") { 
   		popup.focus(); 
	} 

}


function openInfoSheet( url, winName, iWidth, iHeight ) {
		
	this.name = "MAINPAGE";
	popup = window.open( url, winName, "status=no,width=" + iWidth + ",height=" + iHeight + ",resizable=yes,toolbar=no,scrollbars=yes" );

	if (navigator.appName == "Netscape") { 
   		popup.focus(); 
	} 

}