function ValidatePage() {
if ((document.getElementById('BmfNum').value == "") && (document.getElementById('InvoiceNum').value == "")) {
	alert("BMF # or INVOICE # is required for a search !!!");
	document.getElementById('BmfNum').focus();
	document.getElementById('BmfNum').style.backgroundColor='00ffff'
	return false;
	}
location.replace("http://www.azdwm.gov")
document.Invoice_Search.submit();
return true;
}