 parentSayisi = 0;
    sol = 0;
    ust = 0;
    tmpAcilim = false;
    tmpDivGoster = "";

    function parentSay(nesne) {
        if(!tmpAcilim) {
            if(typeof(nesne)=="object") {
                try {
                    parentSayisi += 1
                    if(!isNaN(nesne.offsetLeft)) {
                        sol += parseInt(nesne.offsetLeft)
                        ust += parseInt(nesne.offsetTop)
                    }
                    parentSay(nesne.offsetParent)
                } catch(e) {}
            }
        }
    }

    function divGoster() {
        clearTimeout(tmpDivGoster)
        tmpAcilim=true
        var div = document.getElementById('Dene')
        div.style.position = "absolute";
        div.style.display = "block";
        div.style.left = sol+"px"
        div.style.top = ust+14+"px"
    }

    function divGizle() {
        tmpDivGoster = setTimeout("document.getElementById('Dene').style.display='none'; tmpAcilim=false; sol=0; ust=0",500)
    }

    function divGizle2(katmanAdi) {
        tmpDivGoster2 = setTimeout("document.getElementById('"+katmanAdi+"').style.display='none'",500)
    }