function Validator(theForm)
{
  if (theForm.name.value ==  "")
    {
    alert("Please enter your Name");
    theForm.name.focus();
    return (false);
    }

  if (theForm.email.value ==  "")
    {
    alert("Please enter your Email");
    theForm.email.focus();
    return (false);
    }

  if (theForm.city.value ==  "")
	{
    alert("Please enter your City");
    theForm.city.focus();
    return (false);
	}

  if (theForm.spam_note.value != "5839853")
	{
    alert("Please Enter:- 5839853");
    theForm.spam_note.focus();
    return (false);
	}

  if (theForm.enquiry.value ==  "")
	{
    alert("Please enter your Message");
    theForm.enquiry.focus();
    return (false);
	}

return (true);
}