<!--
	function popUp(center,url,winName,width,height,features) {
		if (center) {
			x = (640 - width)/2, y = (480 - height)/2;
			if (screen) {
				y = (screen.availHeight - height)/2;
				x = (screen.availWidth - width)/2;
			}
			if (screen.availWidth > 1800) { 
				x = ((screen.availWidth/2) - width)/2; 
			} 
		}
		var newWin = window.open(url,winName,'scrollbars=no,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+','+features);
		newWin.focus();
	}	
	
//-->