function Validator(theForm)
{
  if (theForm.Group.value == "")
  {
    alert("Please enter a name for your \"Group\".");
    theForm.Group.focus();
    return (false);
  }
  if (theForm.Contact.value == "")
  {
    alert("Please enter a Contact Name.");
    theForm.Contact.focus();
    return (false);
  }
   if (theForm.Phone.value == "")
  {
    alert("Please enter a Contact Phone Number.");
    theForm.Phone.focus();
    return (false);
  }
document.location.href = "mailto:"+"planetarium"+"@wwu.edu"+"?subject=Presentation Request&body=GROUP: "+theForm.Group.value+" CONTACT: "+theForm.Contact.value+" DATE: "+theForm.Date.value+" TIME: "+theForm.Time.value+" PHONE: "+theForm.Phone.value+" BILLING: "+theForm.address.value+" COMMENTS: "+theForm.CommentsQuestions.value;
alert("Thank You for your Request!");
return (false);
 }
