function validateHomeForm() {
	if (document.hform.name.value=="") {
		window.alert("Please, type in your Name!");
		document.hform.name.focus();
		return false;

	}else if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.hform.email.value)==false) {
		window.alert("Please, enter valid e-mail!");
		document.hform.email.focus();
		return false;
	}else if (document.hform.loantype.value=="") {
		window.alert("Please, select Loan Type!");
		document.hform.loantype.focus();
		return false;
	}else if (document.hform.location.value=="") {
		window.alert("Please, select Location!");
		document.hform.location.focus();
		return false;
	}else if (document.hform.purchaseprice.value=="") {
		window.alert("Please, enter your Purchase Price!");
		document.hform.purchaseprice.focus();
		return false;
	}else if (document.hform.amountdesired.value=="") {
		window.alert("Please, enter your Loan amount desired!");
		document.hform.amountdesired.focus();
		return false;
	}else if (document.hform.mycredit.value=="") {
		window.alert("Please, select your Credit!");
		document.hform.mycredit.focus();
		return false;
	}else{
		return true;
	}
}

function validateCommForm() {
	if (document.hform.name.value=="") {
		window.alert("Please, type in your Name!");
		document.hform.name.focus();
		return false;

	}else if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.hform.email.value)==false) {
		window.alert("Please, enter valid e-mail!");
		document.hform.email.focus();
		return false;
	}else if (document.hform.loantype.value=="") {
		window.alert("Please, select Loan Type!");
		document.hform.loantype.focus();
		return false;
	}else if (document.hform.location.value=="") {
		window.alert("Please, select Location!");
		document.hform.location.focus();
		return false;
	}else if (document.hform.financingneeds.value=="") {
		window.alert("Please, enter your Financing Needs!");
		document.hform.financingneeds.focus();
		return false;
	}else{
		return true;
	}
	
}