	    //<![CDATA[
    
    window.onload=load;
    var map = null;
    var geocoder = null;
    
    function load() { if (GBrowserIsCompatible()) {
        map=new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(41.90, -87.63), 15);
        map.addControl(new GSmallZoomControl());
        geocoder = new GClientGeocoder(); 
		showAddress('674 North Dearborn / Chicago IL 60610');
      }}   
      
	var map = new GMap2(document.getElementById("map"));
	var geocoder = new GClientGeocoder();
	
	function showAddress(address) {
	  geocoder.getLatLng(
		address,
		function(point) {
		  if (!point) {
			alert(address + " not found");
		  } else {
			map.setCenter(point, 15);
			var marker = new GMarker(point);
			map.addOverlay(marker);
		  }
		}
	  );
	}      
       //]]>