  function initialize_bgmap() {
    var myLatlng = new google.maps.LatLng(51.710079, 5.340128);
    var myOptions = {
      zoom: 13,
      center: myLatlng,
      disableDefaultUI:true,
      mapTypeId: google.maps.MapTypeId.HYBRID
    }
    var map = new google.maps.Map(document.getElementById("bgmapblock"), myOptions);
    
    var homeMarker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title:"CongressCare",
        icon: "http://www.congresscare.com/images/icon_google_maps.png"
    });
  }
  
  
  function congress_map(location,name) {
	  var geocoder;

	  geocoder = new google.maps.Geocoder();
	 
	  geocoder.geocode( { 'address': location}, function(results, status) {
	      if (status == google.maps.GeocoderStatus.OK) {
	    	  //alert(results[0].formatted_address);
	    	  //console.log(results[0].geometry.location);
	    	  var myLatlng = results[0].geometry.location;
	    	  
	    	  var myOptions = {
	    		      zoom: 13,
	    		      center: myLatlng,
	    		      scrollwheel:false,
	    		     // disableDefaultUI:true,
	    		      mapTypeId: google.maps.MapTypeId.HYBRID
	    		    }
	    		    var map = new google.maps.Map(document.getElementById("congress_map"), myOptions);
	    	  
	    	  var contentString = '<span class="iwstyle">'+
	    	  	'<strong>Locatie / Location</strong>'+
	    	  	'<br />'+
	    	    name+
	    	    '</span>';

	    	var infowindow = new google.maps.InfoWindow({
	    	    content: contentString
	    	});
	    	  
	    		    
	    		    var homeMarker = new google.maps.Marker({
	    		        position: myLatlng,
	    		        map: map,
	    		        title:name,
	    		        icon: "http://www.congresscare.com/images/icon_google_maps.png"
	    		    });
	    		    
	    		    google.maps.event.addListener(homeMarker, 'click', function() {
	    		    	  infowindow.open(map,homeMarker);
	    		    	});
	    		    
	    		    infowindow.open(map,homeMarker);
	    	  
	    	  
	      } else {
	       // alert("Could not retrieve address: " + status);
	      }
	    });	  
	 
	    
	  
  }

