function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
//map.setCenter(new GLatLng(59.400463, 17.952497),15);
//map.setMapType(G_HYBRID_TYPE);
	var geocoder = new GClientGeocoder();
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Nautica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/nautica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalpillow/nautica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/nautica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/nautica_transparent.png';

    //map.setMapType(G_HYBRID_TYPE);
	// only set after center has been defined. See blowe for combined setup
	//map.addOverlay(new GMarker(new GLatLng(37.4419,-122.1419)));
    var address_0 = {
      infowindow: 'custom',
      infowindowtext: '<span ><strong class="arttitle">Address:</strong><span class="blackbodycopy"><br /><strong>N.V. Medtronic Belgium S.A</strong>.<br>Burgemeester E. Demunterlaan   5 <br>Avenue du Bourgmestre E. Demunter 5 <br><STRONG>Brussel 1090 Bruxelles</strong><br>Belgi&euml;/Belgique</span>',
      full: 'Demunterlaan 5, 1090, Brussel ,belgium',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
			map.setCenter(new GLatLng(50.892382,4.31252),15,G_HYBRID_MAP);
          //map.setCenter(point,15);
		  //map.setMapType(G_HYBRID_TYPE);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
        }
        else {
			 //map.setCenter(new GLatLng(59.401152,17.955083),15);
			//map.setCenter(new GLatLng(59.400463, 17.952497),15);
         map.setCenter(new GLatLng(50.892382,4.31252),15,G_HYBRID_MAP);
		  //map.setMapType(G_HYBRID_TYPE);
		  
        }
      }
    );

  }
}

