
		<!--
function CheckRequiredFields() {
var errormessage = new String();
// Put field checks below this point.

if(WithoutSelectionValue(document.candidate.sCriteria))
	{ errormessage += "\n\nPlease select a Specialty from the dropdown list."; }
if(WithoutSelectionValue(document.candidate.licState))
	{ errormessage += "\n\nPlease select a State from the dropdown list."; }
// Put field checks above this point.
if(errormessage.length > 2) {
	alert('NOTE:' + errormessage);
	return false;
	}
return true;
} // end of function CheckRequiredFields()


function WithoutSelectionValue(ss) {
for(var i = 0; i < ss.length; i++) {
	if(ss[i].selected) {
		if(ss[i].value.length) { return false; }
		}
	}
return true;
}

//-->



