    var CurrentHelperID = ""

    function showHelper(th, id, t, w, h)
    {
        if (t == "abs")
        {
            var obj = document.getElementById('divHelper')
            if (obj)
            {
                var objFrame = document.getElementById('frameHelper')
                if ((obj.style.display == 'none') || (CurrentHelperID != id))
                {
                    if (objFrame) objFrame.src = '/ssi/helper/helper.asp?hid=' + id

                    var thP = getAbsPos(th)
                    var r = 10
                    var s = 1
                    if (h == 0) h = 200
                    if (w == 0) w = 200
                    obj.style.height = h
                    obj.style.width = w
                    
                    var cWidth = getClientWidth()
                    var cHeight = getClientHeight()
                    var cSLeft = getClientSLeft()
                    var cSTop = getClientSTop()
                    var thWidth = th.offsetWidth
                    var thHeight = th.offsetHeight
                    
                    if ((thP.x + thWidth + s + w + r) > (cWidth + cSLeft)) obj.style.left = thP.x - w - s
                    else obj.style.left = thP.x + thWidth + s
                    if ((thP.y + thHeight + s + h + r) > (cHeight + cSTop)) obj.style.top = thP.y - h - s
                    else obj.style.top = thP.y + thHeight + s
                    
                    CurrentHelperID = id
                    obj.style.display = ''
                }
                else
                {
                    CurrentHelperID = ""
                    obj.style.display = 'none'
                    if (objFrame) objFrame.src = ''
                }
            }
        }
        else
        {
            var obj = document.getElementById('helpTBody_' + id)
            if (obj)
            {
                if (obj.style.display == 'none')
                {
                    document.getElementById('helpArr_' + id).innerHTML = '&#x25B2;'
                    obj.style.display = ''
                }
                else
                {
                    document.getElementById('helpArr_' + id).innerHTML = '&#x25BC;'
                    obj.style.display = 'none'
                }
            }
        }
    }
