function $(strID)
{
    return document.getElementById(strID);
}

function init()
{
    if ($('updateOverlay') !== null)
    {
        $('updateOverlay').style.height = $('outerWrapper').getBoundingClientRect().bottom;
    }
}

function hideUpdateInfo()
{
    $('updateOverlay').style.display = 'none';
}
