
<!--

function checkOptions(ThisForm) {
	if (document.ThisForm.propertyType.options[document.ThisForm.propertyType.selectedIndex].value == "") {
		window.alert("Property Type is required.");
		return false; }

	if (document.ThisForm.propertyState.options[document.ThisForm.propertyState.selectedIndex].value == "") { 
		window.alert("Property Location is required.");
		return false; }
	
	if (document.ThisForm.propertyPurpose.options[document.ThisForm.propertyPurpose.selectedIndex].value == "") {
		window.alert("Property Planned Use is required.");
		return false; }

	if (document.ThisForm.preferredContactMethod.options[document.ThisForm.preferredContactMethod.selectedIndex].value == "") {
		window.alert("Best Contact Method is required.");
		return false; }

	if (document.ThisForm.heardAboutHAM.options[document.ThisForm.heardAboutHAM.selectedIndex].value == "") {
		window.alert("How Did You Hear About Us is required.");
		return false; }

	if (document.ThisForm.borrowerOccupation.options[document.ThisForm.borrowerOccupation.selectedIndex].value == "") {
		window.alert("Employment Status is required.");
		return false; }

	if (document.ThisForm.mortgageCredit.options[document.ThisForm.mortgageCredit.selectedIndex].value == "") {
		window.alert("Mortgage Credit Status is required.");
		return false; }
	
	if (document.ThisForm.consumerCredit.options[document.ThisForm.consumerCredit.selectedIndex].value == "") {
		window.alert("Consumer Credit status is required.");
		return false; }

	return true; 
}



// -->



