function popUp(URL) {
	day = new Date();
	id = day.getTime();
	popup = window.open(URL, 'myWin', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=380,left = 20,top = 337');
	popup.focus();
}

