function popUp(URL) {
day = new Date();
id = day.getTime();
eval("new_page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=450,left = 340,top = 312');");
}


function popitup(url,name) {
	day = new Date();
	id = day.getTime();
	newwindow=window.open(url,id,'height=450,width=600');
	if (window.focus) {newwindow.focus()}
	return false;
}
