function Module_Contact_OnValidate(o){
	try{
	
		if ( o.Name_1.value.length == 0 ){
			alert("Please enter your full name");
			o.Name_1.focus();
			return false;
		}
		
		if ( o.Home_Telephone_Number_3.value.length == 0 ){
			alert("Please enter your home telephone number");
			o.Home_Telephone_Number_3.focus();
			return false;
		}	
		
		if(!o.Email_Address_6.value.match(/^[\w-+\.]+@[\w-+\.]+[\w-]$/))
		{
			alert("Please enter your email address");
			o.Email_Address_6.focus();
			return false;
		}
		
		if ( o.Property_Price_7.value.length == 0 ){
			alert("Please enter the price of the property you wish to purchase");
			o.Property_Price_7.focus();
			return false;
		}
		
		if ( o.Mortgage_Amount_8.value.length == 0 ){
			alert("Please enter amount you would like to borrow");
			o.Mortgage_Amount_8.focus();
			return false;
		}
		
		oCookieManager.StoreFormData();
	}catch(e){
		alert("This was a problem completing your request, please contact the agent");
		return false;
	}
	  return true;
}