    function setFormData(hotel, fmonth, fday, fyear, nights, adults){
      
      document.forms['fastbookform'].Hotelnames.value=hotel;
      document.forms['fastbookform'].frommonth.value=fmonth;
      document.forms['fastbookform'].fromday.value=fday;
      document.forms['fastbookform'].fromyear.value=fyear;
      document.forms['fastbookform'].nbdays.value=nights;  
      document.forms['fastbookform'].adulteresa.value=adults;
    }
    function execForm(){
        hhotelDispoprice(document.forms['fastbookform']);
    }                

