function request_Validator(theForm)
{

 if (theForm.name.value.length == "")
  {
    alert("Please enter your name");
    theForm.name.focus();
    return (false);
  }

if (theForm.email_from.value.length == "")
  {
    alert("Please enter your email address");
    theForm.email_from.focus();
    return (false);
  }
  
    return (true);
}

