var map = null;
var geocoder = null;
var address = 'Nieuwbrug 3,1000 BRUSSELS, Belgium';
function initialize() {
  if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map_canvas"));    
		geocoder = new GClientGeocoder();
		var mapControl = new GSmallZoomControl3D();
		map.addControl(mapControl);
		
		var new_icon = new GIcon(G_DEFAULT_ICON);
		new_icon.image = 'http://josworld.webdoos.biz/img/marker.png';
		new_icon.iconSize = new GSize(32,32);
		markerOptions = { icon:new_icon };

		
		if (geocoder) {
		geocoder.getLatLng(
		  address,
		  function(point) {
			if (point){
			  map.setCenter(point, 15);
			  var marker = new GMarker(point,markerOptions);
			  map.addOverlay(marker);
			}
		  }
		);
		}
  }//if
}