// JavaScript Document

function popUp(URL, width, height) {
	day = new Date();
	id = day.getTime();
	wid = screen.width;
	hei = screen.height;
	w = parseInt((wid - width) / 2);
	h = parseInt((hei - height) / 2);
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + (width + 16) + ",height=" + (height + 16) + ",left = " + w + ",top = " + h + "');");
}
//<A HREF="javascript:popUp('index.php', 500, 400)">Open the Popup Window</A>
