						//<![CDATA[
					    var map;
					    var geoc;
					    
					    function load( ) {
					      if( GBrowserIsCompatible( ) ) {
					      	map = new GMap2( document.getElementById( "map_wrapper" ) );
					      	map.setCenter(new GLatLng(34, 0), 1);
						      
					        geoc = new GClientGeocoder( ); 
					        geoc.setBaseCountryCode( "nl" );
					        geoc.getLocations( "5621 DG,Kuiper 1,Eersel", showOnMap );
					      }
					    }
					    function showOnMap( response ) {
					    	if( !response || response.Status.code != 200 ) {
									alert( "Het adres kan niet worden gevonden" );
			      		} else {
				       		place = response.Placemark[ 0 ];
				       		map.setCenter( new GLatLng( place.Point.coordinates[ 1 ], place.Point.coordinates[ 0 ] ), 16 );
							map.addControl( new GLargeMapControl3D( ) );
							map.addControl( new GMapTypeControl( ) );
							map.setMapType( G_HYBRID_MAP );
							map.openInfoWindowHtml( map.getCenter( ), "<div id=map_window><b>Marc Roelands<br />Grafische Vormgeving</b><br />Kuiper 1<br />5621 DG Eersel<br /><a href=http://www.marcroelands.nl>www.marcroelands.nl</a></div>" );
								}
							}
					  //]]>
					  
// observe window load event, when occurs initialize
Event.observe(window,"load", function () {
	load();
});
