function NewWindow(page, name, w, h, scroll, resize) {
	window_properties = 'height='+h+',width='+w+',scrollbars='+scroll+',resizable='+resize+''
	win = window.open(page, name, window_properties)

}

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