var oldNav = "";

function popup(s) {

    h = window.open("about:blank", "Zoom", "width=600,height=480,location=no,menubar=no,resizable=no,scrollbars=no,status=no");
    h.document.writeln("<html><head><title>Zoom-Fenster</title></head><body>");
    h.document.writeln("<script type='text/javascript'>img = new Image(); img.src = s;</script>");
    h.document.writeln("<a href='#' onclick='self.close(); return false;'><img src='" + s + "' style='border: none' /></a>");
    h.document.writeln("<script type='text/javascript'>function resizeMe() { self.resizeTo(document.images[0].width+25, document.images[0].height+70); }; window.setTimeout('resizeMe()', 200); </script>");
    h.document.writeln("</body></html>");
    h.document.close();
    return false;
}

function swapNavi(id, active, depth) {

    if (depth > 1 || id == 4) {
       return;
    }
    id = "subnav" + id;
    if (oldNav != "") {
       document.getElementById(oldNav).style.display = 'none';
    }
    document.getElementById(id).style.display = 'block';
    oldNav = id;
}

function fixFile(s) {

    s = s.replace(/ /g, "_");
    return s;
}
