
<!--
// funkcja otwierająca nowe okno z kalendarzem na bierzący miesiąc
function WinOpenkal() {
   msg=open("srmod/kal.html","DisplayWindow","toolbar=no,directories=no,menubar=no,scrollbars=no,height=210,width=230,left=0,top=0,resizable=yes");
}

// funkcja sprawdzająca dane przesłane formularzem rezerwacyjnym
function checkform( thisform ) {
  if ( thisform.imie.value == null || thisform.imie.value == "" ) {
    alert ("Wpisz imię (min. 1 znak). ");
    thisform.imie.focus();
    return false;
  }
  if ( thisform.nazwisko.value == null || thisform.nazwisko.value == "" ) {
    alert ("Wpisz nazwisko (min. 1 znak).");
    thisform.nazwisko.focus();
    return false;
  }
  if ( thisform.telefon.value == null || thisform.telefon.value == "" ) {
    alert ("Wpisz telefon/kontakt (min. 1 znak).");
    thisform.telefon.focus();
    return false;
  }
}

function kursor() {
   if(document.forms.length > 0) {
      document.forms[0].elements[0].focus();
      return true;
   }
}




-->
