function Form_Validator(theForm)
{
	if (theForm.name.value == "")
	{
		alert("Please enter a value for the \"Name\" field.");
		theForm.name.focus();
		return (false);
	}

	if (theForm.daytime_tel_no.value == "")
	{
		alert("Please enter a value for the \"Daytime Tel. No.\" field.");
		theForm.daytime_tel_no.focus();
		return (false);
	}

	if (theForm.evening_tel_no.value == "")
	{
		alert("Please enter a value for the \"Evening Tel. No.\" field.");
		theForm.evening_tel_no.focus();
		return (false);
	}

	if (theForm.email.value == "")
	{
		alert("Please enter a value for the \"EMail Address\" field.");
		theForm.email.focus();
		return (false);
	}

	if (theForm.email_confirmed.value == "")
	{
		alert("Please enter a value for the \"EMail Address Confirmation\" field.");
		theForm.email_confirmed.focus();
		return (false);
	}

	if (theForm.email.value != theForm.email_confirmed.value)
	{
		alert("Email Address Mismatch! Please try again.");
		theForm.email_confirmed.focus();
		return (false);
	}

	if (theForm.property_type.value == "")
	{
		alert("Please enter a value for the \"Property Type\" field.");
		theForm.property_type.focus();
		return (false);
	}

	if (theForm.number_of_bedrooms.value == "")
	{
		alert("Please enter a value for the \"Number of Bedrooms\" field.");
		theForm.number_of_bedrooms.focus();
		return (false);
	}

	if (theForm.country.value == "")
	{
		alert("Please enter a value for the \"Country\" field.");
		theForm.country.focus();
		return (false);
	}

	if (theForm.location_resort.value == "")
	{
		alert("Please enter a value for the \"Location or Resort\" field.");
		theForm.location_resort.focus();
		return (false);
	}

}
