      <!--
      function ShowTime(){
        // Zjistí se aktuální čas
        var D = new Date;
        // Z časového údaje se zjistí počet
        // hodin, minut a sekund
        var H = D.getHours();
        var M = D.getMinutes();
        var S = D.getSeconds();

        // Vytvoří se řetězec obsahující celý čas
        // U minut a sekund se přidají případné
        // uvozující nuly (pokud jich je méně jak 10)
        var StrTime = H + ":" +
          (M<10 ? "0"+M : M) + ":" +
          (S<10 ? "0"+S : S);
        // Změní se obsah značky daného jména

	var Clock = document.getElementById("Clock");
  while (Clock.hasChildNodes()) {
       Clock.removeChild(Clock.firstChild);
   }
    Clock.appendChild(document.createTextNode(StrTime));

        // Aktualizace hodin se provede za sekundu
        setTimeout ("ShowTime()", 1000);
      }

function SetSearchParam()
{
            document.searchbox.url.value = 'http://travel.travelocity.com/flights/InitialSearch.do?Service=CJUS&dateLeavingTime=Anytime&dateReturningTime=Anytime&seniors=0&children=0&flightType=roundtrip&dateReturningMonth=' + document.searchbox.dateReturningMonth.options[document.searchbox.dateReturningMonth.selectedIndex].value + '&dateReturningDay=' + document.searchbox.dateReturningDay.options[document.searchbox.dateReturningDay.selectedIndex].value + '&adults=' + document.searchbox.adults.options[document.searchbox.adults.selectedIndex].value + '&leavingFrom=' + document.searchbox.leavingFrom.value + '&dateLeavingMonth=' + document.searchbox.dateLeavingMonth.options[document.searchbox.dateLeavingMonth.selectedIndex].value + '&goingTo=' + document.searchbox.goingTo.value + '&dateLeavingDay=' + document.searchbox.dateLeavingDay.options[document.searchbox.dateLeavingDay.selectedIndex].value;
}
      // -->