﻿/// <reference assembly="ESRI.ArcGIS.ADF.Web.UI.WebControls" name="ESRI.ArcGIS.ADF.Web.UI.WebControls.Runtime.JavaScript.references.js"/>
// JScript File
function arrangeSearchPanel() {
 var pnlS = document.getElementById('pnlSuche');
 var pnlT = document.getElementById('Toc_Panel');
    if (pnlS.style.display !='none'){
     pnlS.style.display = 'none';
     pnlT.style.display = 'block';
          }
 else {
   pnlS.style.display = 'block';
   pnlS.style.height = pnlT.style.height;
     pnlT.style.display = 'none';
}
}
function refreshSearchResults() {
document.getElementById("divSearchResults").style.display = 'none';
showFloatingPanel("pnlSearchResults");
setTimeout("__doPostBack('pnlSearchResults_ctlSearchResults1_UpdatePanel1', '')", 100);

}


