function Validator(theForm)
{

  if (theForm.fname.value == "")
  {
    alert("Please enter your First Name");
    theForm.fname.focus();
    return (false);
  }

  if (theForm.lname.value == "")
  {
    alert("Please enter your Last Name");
    theForm.lname.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter your E-mail");
    theForm.email.focus();
    return (false);
  }

  if (theForm.country.value == "")
  {
    alert("Please enter your Country");
    theForm.country.focus();
    return (false);
  }

  return (true);
}
