// Rev. 02/06/2006
var treeWidth;
function getTreeWidth(){
    if(navigator.appName.indexOf("Netscape") == -1){
        //confirm("eee");
        //document.write(navigator.appName);
        //if(document.all.MainId != null){
            return document.all.MainId.offsetWidth - 20;
        //}
    }
    if(navigator.appName.indexOf("Opera") != -1){
        //confirm("eee");
        //document.write(navigator.appName);
        //if(document.all.MainId != null){
            return document.all.MainId.offsetWidth - 50;
        //}
    }
    var elem = document.getElementById("MainId");
    return elem.offsetWidth - 20;
    
}

function Toggle(item) {
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")
   key=document.getElementById("x" + item);
   if (visible) {
     obj.style.display="none";
     key.innerHTML="<img src='http://www.guaranty.com.ua/;)/arrw_back.gif' width='14' height='10' hspace='0' vspace='0' border='0'>";
   } else {
      obj.style.display="block";
      key.innerHTML="<img src='http://www.guaranty.com.ua/;)/arrw_down.gif' width='14' height='10' hspace='0' vspace='0' border='0'>";
   }
   setCookies();
   //JSFX_FloatTopDiv();
}





