function menuValidate() {
if (document.all || document.getElementById) {
	document.menuSearchForm.submitButton.disabled = true;
		if (document.all) {
		eval(document.all.menusubmittext).innerHTML = "<h3 style='color: #FFFFFF; margin-top: 0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Searching...<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Please wait...</h3>";
		} else {
		document.getElementById('menusubmittext').innerHTML = "<h3 style='color: #FFFFFF; margin-top: 0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Searching...<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Please wait...</h3>";
		}
	}
document.menuSearchForm.submit();
}

function searchWindow(content) {
searchWin = window.open(content, 'reqWin', 'width=300,height=250,scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no');
searchWin.focus();
}