    function getLeft(inobj) {        var el = inobj;        var l = 0;        if ( document.all ) {            while (el != null) {                l += el.offsetLeft;                el = el.offsetParent;            }        }        else {            l = el.x;        }        return(l);    }    function getTop(inobj) {        var el = inobj;        var l = 0;        if ( document.all ) {            while (el != null) {                l += el.offsetTop;                el = el.offsetParent;            }        }        else {            l = el.y;        }        return(l);    }    function getBottom(inobj) {        var l = inobj.height + getTop(inobj);        return(l);    }
