//Check the Search form before submitting
function CheckForm() 
{
  //Check for a word to search
  if ((document.frmSiteSearch.search.value=="")||(document.frmSiteSearch.search.value=="Enter Search Text"))
  {
    alert("Please enter at least one keyword to search");
    document.frmSiteSearch.search.focus();
    return false;
  }
  return true;
}

//Check the contact us form
 function contactUsForm_onsubmit()
      {
        var returnValue = false;
        
        if (document.emailForm.txtName.value == "")
        {
          alert("Please enter your name");
          document.emailForm.txtName.focus();
        }
        else if (document.emailForm.txtAddress1.value == "")
        {
          alert("Please enter your Address");
          document.emailForm.txtAddress1.focus();
        }
        else if (document.emailForm.txtCity.value == "")
        {
          alert("Please enter your City or Suburb");
          document.emailForm.txtCity.focus();
        }
        else if (document.emailForm.txtPostCode.value == "")
        {
          alert("Please enter your Post/Zip Code");
          document.emailForm.txtPostCode.focus();
        }
        else
          returnValue = true;
        
        return returnValue;
      }
