
      function load(koordx,koordy) {
        Elem = document.getElementById("gmapwin");
	Elem.style.visibility = "visible";
	Elem.style.width="650px"; 
	Elem.style.height="500px";
	Elem.style.position="fixed";
        Elem = document.getElementById("gmap");
	Elem.style.width="640px"; 
	Elem.style.height="480px";
        if (GBrowserIsCompatible()) {
          var map = new GMap2(document.getElementById("gmap"));
	  map.setCenter(new GLatLng(koordx,koordy), 15);
          map.addControl(new GSmallMapControl());
          map.addControl(new GMapTypeControl());
          map.addOverlay(new GMarker(new GLatLng(koordx,koordy), "Exil Trier"));
	}else
	{
	  Elem = document.getElementById("gmapwin");
	  Elem.style.visibility = "invisible";
	  Elem.style.width="0px"; 
	  Elem.style.height="0px";
          Elem = document.getElementById("gmap");
	  Elem.style.width="0px"; 
	  Elem.style.height="0px";
        }

      }
	function closeMap()
	{
	  Elem = document.getElementById("gmapwin");
          Elem.style.visibility = "hidden";
          Elem.style.width="0px";
          Elem.style.height="0px";
          Elem = document.getElementById("gmap");
	  Elem.style.width="0px"; 
	  Elem.style.height="0px";
	}