function anfahrtkarte() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(48.29472916,11.89808123), 16);
  	//Navigation festlegen
	map.addControl(new GLargeMapControl());
	//map.addControl(new GMapTypeControl());
	var point = new GLatLng(48.29470047,11.89612806);
	var firmaMarker = new GMarker(point);
	map.addOverlay(firmaMarker);
  } 
}