function Fensterweite()
{
    if (navigator.userAgent.indexOf("MSIE") > -1 && navigator.userAgent.indexOf("Opera") == -1
        && navigator.userAgent.indexOf("Safari") == -1 && navigator.userAgent.indexOf("Netscape") == -1) {
         return document.documentElement.offsetWidth;
    } else {
         return window.innerWidth;
    }
}

function Fensterhoehe()
{
    if (navigator.userAgent.indexOf("MSIE") > -1  && navigator.userAgent.indexOf("Opera") == -1
        && navigator.userAgent.indexOf("Safari") == -1 && navigator.userAgent.indexOf("Netscape") == -1) {
         return document.documentElement.offsetHeight;
    } else {
         return window.innerHeight;
    }
}
function neuAufbau()
{
     if (document.getElementById('top_nav').style.width != Fensterweite() || document.getElementById('sub_nav').style.width != Fensterhoehe())
         location.href = location.href;
}
// Funktion zum Öffnen eines neuen Fensters
function neues_Fenster(URL, Breite, Hoehe)
        {
        newWindow = window.open(URL, "Bildfenster", "status=no,menubar=no");
        window.newWindow.resizeTo(Breite, Hoehe);
        window.newWindow.moveTo(0,0);
        window.newWindow.focus();
        return newWindow;
        }

//Funktion um eine DIV anzuzeigen und auszublenden
function einblenden (divid) {
    if (document.getElementById) {
    document.getElementById(divid).style.visibility = "visible";
    }
}
function ausblenden (divid) {
    if (document.getElementById) {
    document.getElementById(divid).style.visibility = "hidden";
    }
}
