		// popUp function script
		function popUp(URL, width, height, scrollbars) {
			scrollbars=1;
			day = new Date();
			id = day.getTime();
			eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scrollbars+",location=0,statusbar=1,menubar=0,resizable=1,width="+width+",height="+height+",left=150,top=150');");
		}
		function popUp1(URL, width, height) {
			scrollbars=1;
			day = new Date();
			id = day.getTime();
			eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width="+width+",height="+height+",left=10,top=10');");
		}
