function open_pm(name,url)
 {
  OpenIt = this.open('', "name", "toolbar=yes,location=no,scrollbars=yes,resizable=yes,titlebar=yes,status=no,directiories=no,width=600,height=450,screenX=0,screenY=0");
  OpenIt.focus();
  OpenIt.location.href = url;
 }
 
function openWindow(href, target, features) {
 var F1 = window.open(href, target, 'toolbar=yes,location=no,scrollbars=yes,resizable=yes,titlebar=yes,status=no,directiories=no,width=600,height=450,screenX=0,screenY=0');
 F1.focus();
}

// Funktionen für Chronik
function vorwaertsscrollen() {
    var inhaltbreite=700;
    if (parseInt(laufobj.style.left)>=(inhaltbreite*(-1)+100)) {        
        laufobj.style.left=(parseInt(laufobj.style.left)-speed) + 'px';
    }
    vorwaertsscrollenvar=setTimeout("vorwaertsscrollen()",100);
}
function zurueckscrollen(){
    if (parseInt(laufobj.style.left)<0) {
        laufobj.style.left=(parseInt(laufobj.style.left)+speed) + 'px';
    }
    zurueckscrollenvar=setTimeout("zurueckscrollen()",100);
}
function Wechsel(Jahreszahl) {
    if (Jahreszahl != 1972) {
        document.getElementById("default").style.color = "#000000";
    }
    else {
        document.getElementById("default").style.color = "#00A6E6";
    }
    // Text "1972" wieder ausblenden
    document.getElementById("text1972").style.display = "none";
    // Bild "1972" wieder ausblenden
    document.getElementById("bild1972").style.display = "none";
    var text = "text" + Jahreszahl;
    var bild = "bild" + Jahreszahl;
    document.getElementById(text).style.display = "block";
    document.getElementById(bild).style.display = "block";
}
function Normal(Jahreszahl) {
    var text = "text" + Jahreszahl;
    var bild = "bild" + Jahreszahl;
    document.getElementById(text).style.display = "none";
    document.getElementById(bild).style.display = "none";
}