

smazat_search = function(text) {  
      okno=window.confirm(text);
      if(okno)  {
        xHttp.open("GET", "/search2/clear/",true);
   xHttp.onreadystatechange = obsluhaStateChangeSearch;
   xHttp.send(null);
   }
}

  function obsluhaStateChangeSearch() 
  {
     if(xHttp.readyState == 4 && xHttp.status == 200) 
     {
           var nText = document.getElementById("vlozeni_search2");
           nText.innerHTML = xHttp.responseText;
     }
  }
  
zprava = function(text) {  
   dotaz=window.alert(text);
   xHttp.open("GET", "/funkce/smazat_session/", true);
   xHttp.send(null);
};

okno_old = function(cesta) {
      
    var window = new Ext.Window({
        autoLoad:cesta,
        autoScroll:true,
       // title:'Obchodní podmínky',
        width:800,
        height:500,
        minWidth: 600,
        minHeight: 400,
        layout: 'fit',
        plain:true,
        bodyStyle:'padding:5px;',
        buttonAlign:'center',
        buttons: [{
            text: 'Zavřít',
            handler: function(){window.hide();}
        }]
    });

    window.show();

};

okno2_old = function(cesta) {
    var win = new Ext.Window({
        autoLoad:cesta,
        autoScroll:false,
       // title:'Obchodní podmínky',
        width:800,
        height:400,
        minWidth: 800,
        minHeight: 200,
        layout: 'fit',
        plain:true,
        bodyStyle:'padding:5px; margin:5px;',
        buttonAlign:'center',
        buttons: [{
            text: 'Zavřít',
            handler: function(){win.hide();}
        }]
    });

    win.show();

};


okno3_old = function(cesta) {
      
    var window = new Ext.Window({
        autoLoad:cesta,
        autoScroll:true,
        title:'Obsah košíku',
        width:800,
        height:400,
        minWidth: 800,
        minHeight: 400,
        layout: 'fit',
        plain:true,
        bodyStyle:'padding:5px; margin:5px;',
        buttonAlign:'center',
        buttons: [{
            text: 'Zavřít',
            handler: function(){window.hide();}
        }]
    });

    window.show();

};

function oknoX(){
window.open("http://eshop.normservis.cz/doc/search0/","Vyhledavani","height=400px, width=1100px, top=250px, left=50px, resizable=no, status=no, toolbar=no,location=no,scrollbars=yes, resizable=yes, directories=no, menubar=no");
};

function okno(cesta){
window.open(cesta,"Nápověda","height=400px, width=800px, top=150px, left=150px, resizable=no, status=no, toolbar=no,location=no,scrollbars=yes, resizable=yes, directories=no, menubar=no");
};

function okno2(cesta){
window.open(cesta,"","height=400px, width=800px, top=150px, left=150px, resizable=no, status=no, toolbar=no,location=no,scrollbars=yes, resizable=yes, directories=no, menubar=no");
};

function okno3(cesta){
window.open(cesta,"Obsah košíku","height=400px, width=800px, top=150px, left=150px, resizable=no, status=no, toolbar=no,location=no,scrollbars=yes, resizable=yes, directories=no, menubar=no");
};


