
	
function newWin(pageUrl, pageHeight, pageWidth) {
	        theWin=window.open(pageUrl, "pop", "toolbar=0,toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + pageWidth + ",height=" + pageHeight); 
	        // checks to see if the user is using netscape, the following code puts the new
	        // window in front of the old window
	        if(navigator.appName=='Netscape') {
	                theWin.focus();
	        } // if using netscape
	} // newWin function
	
	


function newWinWSCROLL(pageUrl, pageHeight, pageWidth) {
	        theWin=window.open(pageUrl, "", "toolbar=0,toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + pageWidth + ",height=" + pageHeight); 
	        // checks to see if the user is using netscape, the following code puts the new
	        // window in front of the old window
	        if(navigator.appName=='Netscape') {
	                theWin.focus();
	        } // if using netscape
	} // newWin function
	

