var lastColor = '';
var lastBgColor = ''
function activateMenuItem(id) {
    div_el = document.getElementById(id);
    lastBgColor =  div_el.style.backgroundColor;

    link_el = document.getElementById('link-' + id);
    lastColor = link_el.style.color;

    if (div_el.className == 'subitem') {
        div_el.style.backgroundColor = '#b2b2cf';
    } else {
        div_el.style.backgroundColor = '#61619e';
        link_el.style.color = '#ffffff';
    }
}

function deactivateMenuItem(id) {
    el = document.getElementById(id);
    el.style.backgroundColor = lastBgColor;

    el = document.getElementById('link-' + id);
    el.style.color = lastColor;
}

function showSubMenu(id) {
    el = document.getElementById('sub-' + id);
    el.style.visibility = 'visible';
    activateMenuItem(id);
    div_el = document.getElementById(id);
    el.style.top = div_el.offsetTop + 'px';
    el.style.left = div_el.offsetLeft + div_el.offsetWidth + 'px';
}

function hideSubMenu(id) {
    el = document.getElementById('sub-' + id);
    el.style.visibility = 'hidden';
    deactivateMenuItem(id);
}

function showImage(src, width, height, title) {
    win = window.open('', 'popup', 'scrollbars=yes, toolbar=no, status=no, width=' + (width + 40) + ', height=' + (height + 40));
    win.document.writeln('<html><head><title>' 
        + title + '</title></head><body style = "text-align: center"><img src = "' + src
        + '" alt = "' + title
        + '" title = "' + title
        + '" width = "' + width
        + '" height = "' + height + '"/></body></html>');
    win.document.close();
    win.focus();
}

function showLink(thelink) {
    window.open(thelink.href, 'popup');
    return false;
}
