function matchPosY(newDiv, link, height, bShow)
{
    var divPopup = document.getElementById(newDiv);
    if (divPopup)
    {
        divPopup.style.visibility = (bShow) ? 'visible' : 'hidden';
        divPopup.style.top = link.offsetTop + 15 + "px";
        divPopup.style.left = link.offsetLeft + 30 + "px";
        divPopup.style.height = height + "px";
    }
}
