function validateContactUs(theform)
{
  var totalstrerrors = "";
  
  if (validate(theform.Name.value,"req"))
  {
	totalstrerrors += "Please Enter your Name\n";
  }

  if (validate(theform.Email.value,"email"))
  {
	totalstrerrors += "Please Enter a Valid Email Address\n";
  }

  if (validate(theform.Message.value,"req"))
  {
	totalstrerrors += "Please Enter a Message\n";
  }
  
  if (totalstrerrors == "")
  {
    theform.Submit.disabled = true;
    return true;
  }
  else
  {
    alert(totalstrerrors);
    theform.Submit.disabled = false;
    return false;
  }
}
