globalOpenMap = "";

function toggleMap(theMap) {
	
	if(globalOpenMap != "") {
		if(theMap != globalOpenMap) {
			Effect.Fade(globalOpenMap);
		}
	}
	
	if(globalOpenMap == theMap) {
		Effect.Fade(theMap);
		globalOpenMap = "";
	} else {
		Effect.Appear(theMap);
		theMapShort = theMap.replace("anfahrt","");
		self.location.href="#"+theMapShort;
		globalOpenMap = theMap;
	}
	
	
}



function openPrintWindow(theWindow) {
	neu = open(theWindow,"mapWindow","status=0,favorites=0,addressbar=0,width=650,height=650");
}
