    var map = null;
    var geocoder = null;
    function initialize() {
      if (GBrowserIsCompatible()) {
      	var address = "1301 Avenida Cesar Chavez<br />Monterey Park, CA 91754-6099";
        map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        geocoder = new GClientGeocoder();
        showAddress(address);
        map.setUIToDefault();
      }
    }

    function showAddress(address) {
      if (geocoder) {
      	var html = "<div style='text-align:left;font-size:14px;font-weight:bold;'>East Los Angeles College<br />" + address + "<br />Campus Phone: (323) 265-8650.</div>";
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml(html);
              GEvent.addListener(marker, 'click', function() {
	              marker.openInfoWindowHtml(html);
      	      });
            }
          }
        );
      }
    }