<!--
function MM_openBrWindow(theURL,winName,features) {
	var objWin = window.open(theURL,winName,features + ",left=100,top=50,directories=no");
	objWin.focus();
}

function openImage(x_width, y_height)	{
	gotURL = "largePic.php?img=" + document.shoPic.loadPic.value;
	var objWin = window.open(gotURL,"OpenWindow","width=" + x_width + ",height=" + y_height + ",left=50,top=50,menubar=no,scrollbars=yes,toolbar=no,status=no,directories=no,resizable=yes");
	objWin.focus();
}

function loginProcessing() {
	if (document.fmLogin.txtUsername.value == "") {
		document.fmLogin.txtUsername.focus();
		alert("Please enter your Username...");
		return false;
	}
	if (document.fmLogin.txtPassword.value == "") {
		document.fmLogin.txtPassword.focus();
		alert("Please enter your Password...");
		return false;
	}
	return true;
}
function showReport(obj) {
	if (confirm("This report may take a moment to process and display.\nWe appreciate your patience.")) {
		return true;
	}
	return false;
}

function showHelpForm(uid, cid) {
	GB_showCenter("AED Challenge", "http://www.aedchallenge.com/get_help.php?id="+uid+"&cm="+cid,350, 500);
}
//-->

