function popUp(URL, width, height) {
	day = new Date();
	id = day.getTime();
	w = width;
	h = height;
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=" + (w+20) + ",height=" + (h+20) + "');");
}
