/* Open specified URL in new window (small) */
function popUp(URL) {
	day = new Date();
	id = day.getTime();
	width = 450;
	height = 300;
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbars=0,menubar=0,resizable=1,width=" + width + ",height=" + height + "');");
}
