function Submit (form_name, form_submit) {
	if (eval('document.'+form_name+'.'+form_submit)) {
		var txt = navigator.userAgent.toLowerCase();
		var ie = ((txt.indexOf("msie") != -1) && (txt.indexOf("opera") == -1));
		if (ie) {
			eval("window.document."+form_name+"."+form_submit+".click();");
		} else {
			eval("window.document."+form_name+".submit();");
		};
	} else {
		window.alert("Internal Error:\nForm not properly configured.");
	};
};
function confirmRedirect (LOCAL_message, LOCAL_url) {
	x = window.confirm(LOCAL_message);
	if (x) {
		window.location = LOCAL_url;
	};
};
function windowPopUp (wid,hei,name,url) {
	posx = (screen.width / 2) - (wid / 2);
	posy = (screen.height / 2) - (hei / 2);
	eval("window_"+name+" = window.open('"+url+"','"+name+"','location=0,scrollbars=1,resizable=1,menubar=0,status=0,toolbar=0,top="+posy+"px,left="+posx+"px,width="+wid+"px,height="+hei+"px');");
};