var cm=null;
document.onclick = new Function("show(null)")
function getPos(el,sProp) {
    var iPos = 0
    while (el!=null) {
        iPos+=el["offset" + sProp]
        el = el.offsetParent
    }
    return iPos
}

function show(el,m) {

    m = document.getElementById(m);
    if (m)
    {
        m.style.display='';
        m.style.left = getPos(el,"Left") + el.offsetWidth +0;
        m.style.top = getPos(el,"Top")
    }
    if ((m!=cm) && (cm)) cm.style.display='none'
    cm=m
}

function rollback(me)
{
    if(me)
    {
        if(me.style.display == '')
            show(null);
    }
}
// JavaScript Document