function Validator2(theForm)
{

  if (theForm.email.value == "")
  {
    alert("Bitte füllen sie alle Pflichtfelder aus!"); // no email
    theForm.email.focus();
    return (false);
  }

  if (theForm.num.value == "")
  {
    alert("Bitte füllen sie alle Pflichtfelder aus!"); // no number of rooms
    theForm.num.focus();
    return (false);
  }

  if (theForm.category.value == "")
  {
    alert("Bitte füllen sie alle Pflichtfelder aus!"); // no category
    theForm.category.focus();
    return (false);
  }

if (theForm.arrival.value == "")
  {
    alert("Bitte füllen sie alle Pflichtfelder aus!"); // no arrival date
    theForm.arrival.focus();
    return (false);
  }
  
if (theForm.departure.value == "")
  {!
    alert("Bitte füllen sie alle Pflichtfelder aus"); // no departure date
    theForm.departure.focus();
    return (false);
  }  

return (true);
}
