// JavaScript Document
	<!-- Begin
		function popUp(URL , picWidth , picHeight) 
		{
			day = new Date();
			id = day.getTime();
			leftPos = (screen.width) ? (screen.width-picWidth)/2 : 0;
			topPos = (screen.height) ? (screen.height-picHeight)/2 : 0;
			
			eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+picWidth+",height="+picHeight+",left = "+leftPos+",top = "+topPos+"');");
		}
		// End -->