function KartenAnzeige(Row, Column, direction,seite_teilgebiet){

//neuen KartenIndex berechnen
//if (direction == "north") Row = Row-1;
if (direction.indexOf ("north") > -1) Row = Row-1;
if (direction.indexOf ("south") > -1) Row = Row+1;
if (direction.indexOf ("east") > -1) Column = Column+1;
if (direction.indexOf ("west") > -1) Column = Column-1;

// Pfad der aktuellen Seite ermitteln und Seite neu laden
GesamtPfad = location.href;
PfadAnhang = location.search;
SeitenPfad = GesamtPfad.substr(0, GesamtPfad.length - PfadAnhang.length);
theURL = SeitenPfad + "?id=" + seite_teilgebiet + "&Index=" + Row + Column + "&x=0&y=0";
window.location.href=theURL;
window.document.images[2].focus();
}

function open_window(url){
win2 = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=750,height=520');
}

