    //<![CDATA[

function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
// map.addControl(new GMapTypeControl());
map.addControl(new GOverviewMapControl());
// map.addControl(new GScaleControl());


// map.addOverlay(new GMarker(map, icon));

var geocoder = new GClientGeocoder();
var newcoords="";
function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 15);
        var marker = new GMarker(point);
        map.addOverlay(marker);
        // marker.openInfoWindowHtml(address);
      }
    }
  );
}

function showAddress2(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
	  var marker2 = new GMarker(point);
	  map.addOverlay(marker2);
      marker2.openInfoWindowHtml(address);
	  map.panTo(point);
      }
    }
  );
}

showAddress("Hauptstrasse 6, Bisamberg, Austria");
//showAddress2("Mollardgasse 85, Vienna, Austria");
//temp=getLatLng("Mollardgasse 85, Vienna, Austria")
//alert(temp);
//window.setTimeout("", 1000);
   }
    }

    //]]>
