function aboutPopUp() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('about.asp?id=' + id, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=240,left = 100,top = 110');");
}
function helpPopUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=300,left = 100,top = 110');");
}
function sqlErrorPopUp(errMsg, pathPrefix) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('" +pathPrefix +"sqlError.asp?errMsg=" + escape(errMsg) + "&id=' + id, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=400,left = 100,top = 110');");
}
function executePopUp(query, exec_id){
	id = exec_id;
	eval("page" + id + " = window.open('executePopup.asp?query=" + escape(query) + "&id=' + id, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=340,left = 300,top = 150');");
	eval("popup_created=!(page" + id + "==null);");
	if (popup_created) {
		eval("page" + id + ".name='page"+id+"Name';");
	}
	return popup_created;
}

function findPopUp(URL, popupType, mappingName, descriptionName) {
	day = new Date();
	id = day.getTime();
	var l_url=URL;
	var popupEnd= id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=550,height=380,left = 100,top = 110');";
	if (popupType.substring(0,4)=="text") {
		eval("page" + id + " = window.open(URL+'&textParam='+document.AnalyzeForm." + mappingName + "$" + descriptionName + ".value, '" + popupEnd);
	} else {
		eval("page" + id + " = window.open(URL, '" + popupEnd);
	}	
}

