<!-- Begin
function popUp(URL,W,H) {

	day = new Date();

	id = day.getTime();
	
	winl = (screen.width - W) / 2;
	wint = (screen.height - H) / 2;
	

	eval("page" + id + " = window.open(URL, 'pop', 'width=" + W + ",height=" + H + ",left =" + winl + ",top = " + wint + ",status=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no, location=no, directories=no');");

}

// End -->

