// Diese Funktion wechselt zwei Frames auf einmal aus          dvpae 2000-09-25

function ZweiFrames(URL) {
        parent.frames[0].location.href=URL+"nav.html";
        parent.frames[1].location.href=URL+"main.html";
}

// Diese Funktion stellt Eintraege des Archives in einem
// extra Fenster dar                                           dvpae 2000-09-25


function Archiv(URL, Breite, Hoehe) {
        window.open("../../archiv/"+URL,"Archivebene","\
                        width="+Breite+",innerWidth="+Breite+",\
                        height="+Hoehe+",innerHeight="+Hoehe+",\
                        screenX=0,screenY=0,resizable=yes,\
                        scrollbars=yes");
}

function UnCryptMailto(s) {
        var n=0;
        var r="";
        for(var i=0;i<s.length;i++) {
                n=s.charCodeAt(i);
                if (n>=8364) {n = 128;}
                r += String.fromCharCode(n-(2));
        }
        return r;
}

function linkTo_UnCryptMailto(s)        {
        location.href=UnCryptMailto(s);
}

// --- end of scripts ---