<!---
function openPopUpWin(pageURL, width, height, topPos, leftPos){
	//Set up the window


winSettings=
	'width='+width+ 
	',' +
	'height='+height+
	',' +	
	 'top='+topPos+
  	','+
	'left='+leftPos+			
  	','+
	'scrollbars=1,'+	//0 for no scrollbars and 1 for scrollbars
	'location=0,'+		//0 for no location bar and 1 for location bar
	'directories=0,'+	//0 for no directory bar and 1 for directory bar
	'status=0,'+		//0 for no status bar and 1 for status bar
	'menubar=0,'+		//0 for no menu bar and 1 for menu bar
	'toolbar=0,'+		//0 for no tool bar and 1 for tool bar
	'resizable=1';		//0 for not resizable and 1 for resizable window 
				  
	//Launch the window	
	popUpWin = window.open(pageURL,"",winSettings); 
}
//--->
