﻿function showPopupLayer(id)
{
    var content = document.getElementById(id);
    var popupLayer = document.getElementById('popupLayer');
    var rightCol = document.getElementById('rightcol');

    content.style.display = 'block';
    if (rightCol != null)
    {
        // DBA
        popupLayer.style.height = String(parseInt(rightCol.offsetHeight) + 80) + "px";
    }
    else {
        popupLayer.style.height = String(parseInt(content.offsetHeight) + 80) + "px";
    }
    content.style.top = String(DOM.scrollTop() + 80) + "px";
    popupLayer.style.display = 'block';

    try
    {
        var pageTracker = _gat._getTracker("UA-4441219-2");
        pageTracker._trackPageview("/privacypopup");
    }
    catch (e) { }
}

function hidePopupLayer(id)
{
    document.getElementById(id).style.display = 'none';
    document.getElementById('popupLayer').style.display = 'none';
}

