   <!--
    function window_open($href,$width,$height,$resizable,$scrollbars)
    {           window.open($href,'_blank','width='+$width+',height='+$height+',resizable='+$resizable+',scrollbars='+$scrollbars);
    }

    // окно по центру
    function window_open_by_center(url, W, H) {
      var X, Y;
      X = (screen.width - W) / 2;
      Y = (screen.height - H) / 2;
      NWin = window.open(url, '_blank', 'toolbar=no,status=no,resizable=yes,scrollbars=yes,width='+W+',height='+H+',left='+X+',top='+Y);
      return false;
    }
    
    //Открытие окна с описанием услуги VIP в аэропортах
    function vip(id,$width,$height,$resizable,$scrollbars){
       hot = window.open("vip-"+id+".aspx", "_blank", "width="+$width+",height="+$height+",resizable="+$resizable+",scrollbars="+$scrollbars);
       hot.focus();
    }

    //Открытие окна с подробным описанием отеля
    function hotel(id){
       hot = window.open("hoteldetail-"+id+".aspx", "_blank", "width=800,height=500,resizable=yes,scrollbars=yes");
       hot.focus();
    }
   //-->
