/**
 * Shows a certain livebox.
 * 
 * @param string n ID of the livebox.
 */
function lightboxShow(n)
{
    document.getElementById(n).style.display = 'block';
    document.getElementById('lightboxShadow').style.display = 'block';
    // ugly
    if (n == 'lightboxLogin') {
        setTimeout("window.iframeLogin.document.Login.USERNAME.focus()", 100);
    }
}

/**
 * Hides a certain livebox.
 * 
 * @param string n ID of the livebox.
 */
function lightboxHide(n)
{
    document.getElementById(n).style.display = 'none';
    document.getElementById('lightboxShadow').style.display = 'none';
}
