<!--
 function aList(im){
        var path=im.src.substring(0, im.src.length-9);
        var img=im.src.substr(im.src.length-9);
        var div=document.getElementById('ls'+im.id);
        if(img=='tree2.gif'){
                im.src=path+'tree3.gif';
                div.style.display='none';
        }
        if(img=='tree3.gif'){
                im.src=path+'tree2.gif';
                div.style.display='';
        }
 }

 function aList3(im){
        var div=document.getElementById('i_'+im);
        var div2=document.getElementById('lsi_'+im);
        var path=div.src.substring(0, div.src.length-9);
        var img=div.src.substr(div.src.length-9);
        if(img=='tree2.gif'){
                div.src=path+'tree3.gif';
                div2.style.display='none';
        }
        if(img=='tree3.gif'){
                div.src=path+'tree2.gif';
                div2.style.display='';
        }
 }

 function aList2(im){
        var div=document.getElementById('i_'+im);
        var path=div.src.substring(0, div.src.length-9);
        div.src=path+'tree3.gif';
 }

 function doHide() {

                  if(document.getElementById('axcrt')){
                     document.getElementById('axcrt').style.visibility = 'hidden';
                     document.getElementById('axcrt').style.display = 'none';
                     setTimeout('doreset()',100);
                  }
 }

         function open_window(link,w,h) //opens new window
        {
                var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
                newWin = window.open(link,'newWin',win);
                newWin.focus();
        }

        function open_printable_version(link) //opens new window
        {
                var win = "menubar=no,location=no,resizable=yes,scrollbars=yes";
                newWin = window.open(link,'perintableWin',win);
                newWin.focus();
        }

        function confirmDelete(id, ask, url) //confirm order delete
        {
                temp = window.confirm(ask);
                if (temp) //delete
                {
                        window.location=url+id;
                }
        }

        function mover(mId,set){
                mId.style.backgroundColor=set;
        }

        function mout(mId,set){
                mId.style.backgroundColor=set;
        }

        function setX()
                {
                   if(document.getElementById('axcrt')){
                   document.getElementById('axcrt').style.pixelTop = document.body.scrollTop + Math.ceil((document.body.clientHeight-100)/2);
                   }
        }
-->