	/*  
	This JavaScript Will be used to:
	1	Open a new browser window
	 CREATED: created in house with no references
	 AUTHORS: Brian Eliason
	 LAST DATE MODIFIED: 4/23/03 
	 
	  */
function openWin(URL)
{
//	title = thumb + " picture";
	newWindow = window.open(URL, '640x480',
	'toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,resizable=yes,width=640,height=480');	
}


