// script file for extra functions required by front page 
function newWindow(url,sizeW,sizeH,winName){
	// alert("function works");
	theURL = url;
	theWidth = sizeW;
	theHeight = sizeH;
	theName = winName;
	
	// Options 
		// location yes|no Does the location bar show? ver 1.0
		// menubar yes|no Does the menubar show? ver 1.0
		// scrollbars yes|no Do scrollbars show? ver 1.0 
		// status yes|no Does the status bar show| ver 1.0 
		// titlebar yes|no Does the titlebar show? ver 1.0 
		// toolbar yes|no Does the toolbar show? ver 1.0 
		// resizable yes|no Can you resize the window? ver 1.0 
		// height pixels height of window ver 1.0 
		// width pixels width of window ver 1.0 
		// directories yes|no Does the personal toolbar show? ver 1.2 
		// innerHeight pixels specifies the inner height of window ver 1.2 
		// innerWidth pixels specifies the inner width of window ver 1.2 
		// screenX pixels specifies distance from left edge of screen ver 1.2 
		// screenY pixels specifies distance from top edge of screen ver 1.2
		
		
		
		
		theOptions = "width=" + theWidth + "," + "height=" + theHeight + "," + "resizable=yes" + "," + "location=yes" + "," + "scrollbars=yes";
	
	window.open(theURL,theName,theOptions);
}
