<!--
function checkSuggestemployerForm() {
	if (!checkText(document.frmSuggest.strSuggestemployerTitle, 'StringType', 'employer name', true)) {return false;}
	if (!checkText(document.frmSuggest.strSuggestemployerURL, 'StringType', 'employer URL', false)) {return false;}
	if (!checkEmail(document.frmSuggest.strSuggestemployerEmail, 'employer e-mail address', false)) {return false;}
	if (!checkText(document.frmSuggest.strFloodControl, 'IntegerType', 'check number', true)) {return false;}
	if (document.frmSuggest.strFloodControl.value.length!=4) {alert('Your check number must have 4 digits.  Please try again.');document.frmSuggest.strFloodControl.focus();return false;}

	if(false){ // set to true for testing
		alert('Got to end of JavaScript OK');
		return false;
	}
	else {
		return true;
	}
}

function checkSuggestfeatureForm() {
	if (!checkText(document.frmSuggest.strSuggestfeature, 'TextAreaType', 'suggestion', true)) {return false;}
	if (!checkText(document.frmSuggest.strFloodControl, 'IntegerType', 'check number', true)) {return false;}
	if (document.frmSuggest.strFloodControl.value.length!=4) {alert('Your check number must have 4 digits.  Please try again.');document.frmSuggest.strFloodControl.focus();return false;}

	if(false){ // set to true for testing
		alert('Got to end of JavaScript OK');
		return false;
	}
	else {
		return true;
	}
}

function checkSuggestresourceForm() {
	if (!checkText(document.frmSuggest.strSuggestresourceTitle, 'StringType', 'resource title', true)) {return false;}
	if (!checkText(document.frmSuggest.strSuggestresourceURL, 'StringType', 'resource URL', false)) {return false;}
	if (!checkText(document.frmSuggest.strFloodControl, 'IntegerType', 'check number', true)) {return false;}
	if (document.frmSuggest.strFloodControl.value.length!=4) {alert('Your check number must have 4 digits.  Please try again.');document.frmSuggest.strFloodControl.focus();return false;}

	if(false){ // set to true for testing
		alert('Got to end of JavaScript OK');
		return false;
	}
	else {
		return true;
	}
}
// -->

