
// raise reservation form for hotel "u hvezdy"
//
function OpenHTSWindow(lang)
{
 idhotel = 11123607;
 idprov = 11329846;
 idprov_htp = 11174436;

 if (window.top != null)
 {
  if (window.top.frames.length > 0)
  {
   if (window.top.frames[0].name == "HTP_referrer")
   {
    idprov = idprov_htp;
   }
  }
 }

 url = "http://www.hoteltime.cz/public/?IDHotel=" + idhotel + "&IDPROV=" + idprov + "&lang=" + lang;
 aw = screen.availWidth;
 ah = screen.availHeight;
 width = aw-40;
 height = ah-80;
 xpos = (aw - width)/2;
 ypos = (ah - height)/2 - 30;
 window.open(url, "hts_res", "width=" + width + ",height=" + height + ",left=" + xpos + ",top=" + ypos + ",scrollbars=1,menubar=0,status=1,toolbar=0,resizable=1").focus();
}