﻿function ShowInfoBox(prefixID) {
    var infoBox = $get(prefixID + 'DivInfoBox');
    infoBox.style.display = '';
    var infoLabel = $get(prefixID + 'DivInfoBoxTitle');
    var left = GetElementAbsoluteLeft(infoLabel);
    var top = GetElementAbsoluteTop(infoLabel);
    Sys.UI.DomElement.setLocation(infoBox, infoBox.offsetLeft, infoBox.offsetTop - infoBox.clientHeight - 16);
}

function HideInfoBox(prefixID) {
    var infoBox = $get(prefixID + 'DivInfoBox');
    Sys.UI.DomElement.setLocation(infoBox, infoBox.offsetLeft, infoBox.offsetTop + infoBox.clientHeight + 16);
    infoBox.style.display = 'none';
}
