function wagt_map_1(mstreet,mcity,mstate,mzip,mcountry,mdescripcion,id_div) {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('map_'+id_div)) return false;
    var map = new GMap2(document.getElementById('map_'+id_div));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Deep Jungle';
    /*icon.image = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle.png';*/
	icon.image ='http://www.aesar.es/imagenes/icos/ico.png';
    /*icon.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';*/
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_transparent.png';

	info=mdescripcion + "<br>" + mstreet + "<br>" + mzip + " " + mcity + " ( " +  mstate + " )";
    var address_0 = {
      street: mstreet,
      city: mcity,
      state: mstate,
      zip: mzip,
      country: 'espa&#241;a',
      infowindow: 'hola esta es mi casa',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;">' + info + '</span>',
      full: mstreet + "," + mcity + "," + mstate + "," + mzip + "," + mcountry + '',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 12);
          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(200.4419, -122.1419), 13);
        }
      }
    );

  }
}
