/* fan city */

// bilder wechseln
function bw(bild,nb) {
    //alert(bild);
    document.getElementsByName(bild)[0].src = nb.src;
}


// Bilder Farbwahl
n1 = new Image();
n1.src = "bilder/fc_gb_logo.gif";     /* erste Standard-Grafik */
hl1 = new Image();
hl1.src = "bilder/fc_gf_logo.gif"; /* erste Highlight-Grafik */

function o() {
    h = window.open("fc.html", "fc_flash", 
"width=1000,height=650,location=no,toolbar=no,status=no,menubar=no,resizeable=no,scrollbars=no");
}

// sprache ändern
function ansp(sp) {
    //die seite auf der man ist wird als variable zur verfügung gestellt
    var pfad_arr = window.location.pathname.split("/");
    pfad_arr.reverse();
    var sn = pfad_arr[0].split("_");
    var np = sn[0]+"_"+sp+".html";
    document.location.href = np;
}
