<!--

function checkform()
{
  if(document.ContactForm.Name.value == ""){
    alert("Please enter your name")
    window.document.ContactForm.Name.focus();
    return false; 
  }
  
  if(document.ContactForm.ContactNumber.value == ""){
    alert("Please enter your contact number")
    window.document.ContactForm.ContactNumber.focus();
    return false; 
  }

  if(document.ContactForm.Address.value == ""){
    alert("Please enter your address")
    window.document.ContactForm.Address.focus();
    return false; 
  }

    if(document.ContactForm.Postcode.value == ""){
    alert("Please enter your postcode")
    window.document.ContactForm.Postcode.focus();
    return false; 
  }

  if(document.ContactForm.Make.value == ""){
    alert("Please enter the make")
    window.document.ContactForm.Make.focus();
    return false; 
  }

  if(document.ContactForm.Model.value == ""){
    alert("Please enter the model")
    window.document.ContactForm.Model.focus();
    return false; 
  }

  if(document.ContactForm.Price.value == ""){
    alert("Please enter a price")
    window.document.ContactForm.Price.focus();
    return false; 
  }

  if(document.ContactForm.Age.value == ""){
    alert("Please enter the age of the home")
    window.document.ContactForm.Age.focus();
    return false; 
  }

  if(document.ContactForm.Dimensions.value == ""){
    alert("Please enter the dimensions of the home")
    window.document.ContactForm.Dimensions.focus();
    return false; 
  }

  if(document.ContactForm.MonthlyGroundRent.value == ""){
    alert("Please enter the monthly ground rent")
    window.document.ContactForm.MonthlyGroundRent.focus();
    return false; 
  }

  if(document.ContactForm.Restrictions.value == ""){
    alert("Please enter any restrictions that the park imposes - if none, please state 'None'")
    window.document.ContactForm.Restrictions.focus();
    return false; 
  }

  if(document.ContactForm.Description.value == ""){
    alert("Please enter a description of the home")
    window.document.ContactForm.Description.focus();
    return false; 
  }

  
  document.ContactForm.submit()
}

//-->
