﻿function ShowLabelInfoBox(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 - 1);
}

function HideLabelInfoBox(prefixID) {
    var infoBox = $get(prefixID + 'DivInfoBox');
    Sys.UI.DomElement.setLocation(infoBox, infoBox.offsetLeft, infoBox.offsetTop + infoBox.clientHeight + 1);
    infoBox.style.display = 'none';
}
