<!-- Hide Script from older browsers

function ValidateForm(CSform)
{
  // --------------------------------------------
  // Check for a blank Name
  // --------------------------------------------
  if (contactus.name.value == "")
  {
    window.alert("Please enter Name.    ");
    contactus.name.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank Email
  // --------------------------------------------
  if (contactus.email.value == "")
  {
    window.alert("Please enter E-mail.    ");
    contactus.email.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a valid E-mail
  // --------------------------------------------
  if(contactus.email.value.search(new RegExp("^[-0-9a-zA-Z_]+(\\.[-0-9a-zA-Z_]+)*@[-0-9a-zA-Z_]+(\\.[-0-9a-zA-Z_]+)+$"))==-1)
  {
    window.alert("Invalid E-mail address.    ");
	contactus.email.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank City
  // --------------------------------------------
  if (contactus.city.value == "")
  {
    window.alert("Please enter City.    ");
    contactus.city.focus();
    return false;
  }
  
  // --------------------------------------------
  // Check for a blank Comments
  // --------------------------------------------
  if (contactus.comments.value == "")
  {
    window.alert("Please fill in the Comments.    ");
    contactus.comments.focus();
    return false;
  }
}

// End hiding script -->