<!--//
// set the path to the qForms directory
qFormAPI.setLibraryPath("lib/js/");
// this loads all the default libraries
qFormAPI.include("*");
//-->

//submit form
function validateForm() {
	if (document.appraisalForm.preferredMethod.options[document.appraisalForm.preferredMethod.selectedIndex].value == 0){
		alert('Please choose a preferred contact.');
		return false;
	}
	else {
		submitMe = true;
	}
	if (document.appraisalForm.timeScale.options[document.appraisalForm.timeScale.selectedIndex].value == 0){
		alert('Please select when you are looking at moving in?');
		return false;
	}
	else {
		document.appraisalForm.action = "appraisal.cfm?submit=true";
		return true
	}
}
