<!-- 

function GenericWindowOpener(sURL,sName,nW,nH,bLocbar,bMenubar,bResize,bScrbar,bStatbar,bTitle,bToolbar,bHotkeys,bCenter,posX,posY) {
	
	if((parseInt(navigator.appVersion) >= 4 ) && (bCenter)){
		posX = (screen.width - nW) / 2;
		posY = (screen.height - nH) / 2;
	}
		
	args = "width=" + nW + ","
	+ "height=" + nH + ","
	+ "location=" + bLocbar + ","		// 0/1 
	+ "menubar=" + bMenubar + ","		// 0/1 
	+ "resizable=" + bResize + ","		// 0/1 
	+ "scrollbars=" + bScrbar + ","		// 0/1 
	+ "status=" + bStatbar + ","		// 0/1 
	+ "titlebar=" + bTitle + ","		// 0/1 
	+ "toolbar=" + bToolbar + ","		// 0/1 
	+ "hotkeys=" + bHotkeys + ","		// 0/1 
	+ "screenx=" + posX + ","  			//NN Only
	+ "screeny=" + posY + ","  			//NN Only
	+ "left=" + posX + ","     			//IE Only
	+ "top=" + posY;           			//IE Only
	
	window.open(sURL,sName,args);
}


//-->


