

function Validator(theForm)
{

  if (theForm.submitname.value == "")
  {
    alert("Oops! Please name your salon.");
    theForm.submitname.focus();
    return (false);
  }

  if (theForm.description.value == "")
  {
    alert("Oops! Please give a short description.");
    theForm.description.focus();
    return (false);
  }
  
  if (theForm.comment.value == "")
  {
    alert("Oops! Please give more information.");
    theForm.comment.focus();
    return (false);
  }
  return (true);
}
