switch (ebene) {
  case 0:
    i_path="";
    break;
  case 1:
    i_path="../";
    break;
  case 2:
    i_path="../../";
    break;
  case 3:
    i_path="../../../";
    break;
}

var ort = new Array();
ort[0]  = "";
ort[1]  = 0;
function show_karte(w_show, w_ort) {
  if(w_show==1 && ort[1]==0) {
    ort[1]=1;
    document.getElementById("ortenau").style.visibility='visible';
    if(w_ort!=""){
      document.getElementById(w_ort).style.visibility="visible";
      ort[0]=w_ort;
    }
  }else{
    ort[1]=0;
    if(ort[0]!=""){
      document.getElementById(ort[0]).style.visibility="hidden";
    }
    document.getElementById("ortenau").style.visibility='hidden';
  }
return
}

function oeffnefenster (title, image) {
 url = "../location_images/anfahrten.php?title=" + title + "&image=" + image;
 fenster=window.open(url, "_blank", "width=480,height=640,toolbar=no,location=no,directories=no,status=no,menubar=no,status=no,scrollbars=no,resizable=no, screenX=0,screenY=0");
 fenster.focus();
 return
}

function oeffnefenster2 (title, image) {
 url = "../../location_images/anfahrten.php?title=" + title + "&image=" + image;
 fenster=window.open(url, "_blank", "width=480,height=640,toolbar=no,location=no,directories=no,status=no,menubar=no,status=no,scrollbars=no,resizable=no, screenX=0,screenY=0");
 fenster.focus();
 return
}

function show_big(w_src, wo_src) {
  var suche = w_src.lastIndexOf("/");
  suche=w_src.substring(suche+1,1000);
  oeffnefenster3(wo_src, suche);
return
}

function oeffnefenster3 (title, image) {
 url = "../../archiv_pics/show_big.php?title=" + title + "&image=" + image;
 fenster=window.open(url, "_blank", "width=680,height=680,toolbar=no,location=no,directories=no,status=no,menubar=no,status=no,scrollbars=no,resizable=no, screenX=0,screenY=0");
 fenster.focus();
 return
}

function show_big_2(w_src, wo_src) {
  var suche = w_src.lastIndexOf("/");
  suche=w_src.substring(suche+1,1000);
  oeffnefenster4(wo_src, suche);
return
}

function oeffnefenster4 (title, image) {
 url = "../archiv_pics/show_big.php?title=" + title + "&image=" + image;
 fenster=window.open(url, "_blank", "width=680,height=680,toolbar=no,location=no,directories=no,status=no,menubar=no,status=no,scrollbars=no,resizable=no, screenX=0,screenY=0");
 fenster.focus();
 return
}

function oeffnefenster_php (title, url) {
 fenster=window.open(url, "_blank", "width=800,height=680,toolbar=no,location=no,directories=no,status=no,menubar=no,status=no,scrollbars=yes,resizable=yes, screenX=0,screenY=0");
 fenster.focus();
 return
}

function checkFormular(wName) {
    if(wName=="email"){
        if(document.beitrag.email.value=="Ihre Email:..."){
            document.beitrag.email.value="";
            document.beitrag.email.focus();
        }
    }
    if(wName=="myName"){
        if(document.beitrag.myName.value=="Ihre Name:..."){
            document.beitrag.myName.value="";
            document.beitrag.myName.focus();
        }
    }
    if(wName=="mitteilung"){
        if(document.beitrag.mitteilung.value=="Ihren Kommentar hier eintragen:..."){
            document.beitrag.mitteilung.value="";
            document.beitrag.mitteilung.focus();
        }
    }
return
}
