
    var map = null;
    var geocoder = null;
	var mapp = null;
var directionsPanel;
var directions;


function showAddress() {
	

	
	
	address1='Volksuniversiteit, Leutherweg 8, Venlo, Limburg, NL'
	map = new GMap2(document.getElementById("map_canvas"));
       geocoder = new GClientGeocoder();
      if (geocoder) {
        geocoder.getLatLng(
          address1,
          function(point) {
            if (!point) {
              alert(address1 + " niet gevonden");
            } else {
              map.setCenter(point, 11);
              var marker1 = new GMarker(point);
			 map.addOverlay(marker1);
			 GEvent.addListener(marker1, 'click', function() { 
// marker1.openInfoWindowHtml(address1);
 marker1.showMapBlowup();  
}); 


            }
          }
        );
	  }

  
	address2='De Schakel, Broeklaan 2, Reuver, Limburg, NL'
       geocoder2 = new GClientGeocoder();
      if (geocoder2) {
        geocoder2.getLatLng(
          address2,
          function(point) {
            if (!point) {
              alert(address2 + " niet gevonden");
            } else {
              var marker2 = new GMarker(point);
			 map.addOverlay(marker2);
			 			 GEvent.addListener(marker2, 'click', function() {
//marker2.openInfoWindowHtml(address2);
marker2.showMapBlowup();  
}); 
//             marker2.openInfoWindowHtml(address2);

            }
          }
        );
	  }
			 map.setUIToDefault();
          map.enableGoogleBar();
	  
	  
	  
    }

function showRoute() {

  mapp = new GMap2(document.getElementById("map_canvas_route"));
  directionsPanel = document.getElementById("route");
  directions = new GDirections(mapp, directionsPanel);
  directions.load("from:  Ede, NL to:Soukenická 158, Chrudim, CZ");
          mapp.setUIToDefault();
          mapp.enableGoogleBar();
}