function wagt_map_6() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_6')) return false;
    var map = new GMap2(document.getElementById('wagt_map_6'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Star';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon.iconSize = new GSize(29,39);
    icon.shadowSize = new GSize(29,39);
    icon.iconAnchor = new GPoint(15,15);
    icon.infoWindowAnchor = new GPoint(19,7);
    icon.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/star/pacifica_transparent.png';

    var address_0 = {
      street: '750 B Street, Suite 2600',
      city: 'San Diego',
      state: 'CA',
      zip: '92101',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Gilbert, Kelly, Crowley & Jennett LLP:</strong><br />750 B Street, Suite 2600<br />San Diego, CA 92101</span>',
      full: '750 B Street, Suite 2600, San Diego, CA, 92101',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}