<!-- 
function writeRight(ort) {
  if (ort == "top") document.write("<IMG SRC='public/logo.gif' BORDER=0 ALT=''><BR>");
  if (ort == "bottom") document.write("<FONT CLASS='bookingtextklein'>&copy; Developed by <A TARGET='_blank' CLASS='bookinglink' HREF='http://www.infonautics.ch'>Infonautics GmbH</A>, Switzerland<BR></FONT><BR>");
}

function feldtest1(form) {
  form.agnt.value = navigator.userAgent;
  return true;
}

function feldtest2(form) {
  if (form.Arrival.selectedIndex == 0) {
     alert("Kein Anreisedatum für das Pauschalangebot ausgewählt.\nBitte Anreisedatum auswählen um fortzufahren.");
     return false;
  }

  form.agnt.value = navigator.userAgent;
  return true;
}

function feldtest3(form) {
  var tester = 0;
  if (typeof form.Typ1 == "object") {tester += form.Typ1.selectedIndex;}
  if (typeof form.Typ2 == "object") {tester += form.Typ2.selectedIndex;}
  if (typeof form.Typ3 == "object") {tester += form.Typ3.selectedIndex;}
  if (typeof form.Typ4 == "object") {tester += form.Typ4.selectedIndex;}
  if (typeof form.Typ5 == "object") {tester += form.Typ5.selectedIndex;}
  if (typeof form.Typ6 == "object") {tester += form.Typ6.selectedIndex;}

  if (tester == 0) {
     alert("Keine Zimmer für die Buchung ausgewählt.\nBitte eines oder mehrere Zimmer auswählen um fortzufahren.");
     return false;
  }

  form.agnt.value = navigator.userAgent;
  return true;
}
// -->
