	function refreshparentwindow(URL)  {
		window.opener.location.href = URL;
		self.close();
		}

	function popup(URL, winwidth, winheight, scrollbars, resizable)  {
		day = new Date();
		id = day.getTime();
		pleft=(screen.width-winwidth)/2;
		ptop=(screen.height-winheight)/2;
		eval("page" + id + " = window.open('"+URL+"', '" + id + "', 'toolbar=0,scrollbars="+scrollbars+",location=0,statusbar=0,menubar=0,resizable="+resizable+",width="+winwidth+",height="+winheight+",left="+pleft+",top="+ptop+"');");
		}
