﻿
function ShowQuick(currentObj,outDiv)
{
    if (document.getElementById(currentObj))
    {
        var thisElementBounds = Sys.UI.DomElement.getBounds($get(outDiv));
        document.getElementById(currentObj).style.display = "block";
        $get(outDiv).style.top = (thisElementBounds.y + 25) + "px";
        $get(outDiv).style.left = thisElementBounds.x + "px";
    }
}
function HiddenQuick(currentObj,outDiv)
{
    if (document.getElementById(currentObj))
    {
        document.getElementById(currentObj).style.display = "none";
    }
}


