<!-- 
function writeRight(ort) {
  if (ort == "top") document.write("<IMG SRC='public/logo.gif' BORDER=0 ALT=''><BR>");
  if (ort == "bottom") document.write("<FONT SIZE=1 COLOR='#000000' FACE='Arial,Helvetica'>Service of <A TARGET='_blank' HREF='http://www.victoria-davos.ch'>Turmhotel Victoria</A>, Davos, Switzerland<BR>Developed by <A TARGET='_blank' HREF='http://www.infonautics.ch'>Infonautics GmbH</A>, Cham, Switzerland<BR></FONT><BR>");
}

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;
  }
  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;
  }

  return true;
}
// -->
