function popUp_Window(URL, toolbar, scrollbars, location, statusbar, menubar, resizable, width, height, left, top) {
	var strWindowProp = "";
	day = new Date();
	id = day.getTime();
	strWindowProp = "toolbar=" + toolbar + ",scrollbars=" + scrollbars + ",location=" + location + ",statusbar=" + statusbar + ",menubar=" + menubar + ",resizable=" + resizable + ",width=" + width + ",height=" + height + ",left=" + left + ",top=" + top;
	eval("page" + id + " = window.open(URL, '" + id + "', strWindowProp);");
}
