function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    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 = 'Google Traditional (flat)';
    var markerColor = 'Pacifica';
    icon.image = 'http://www.p-zaranis.gr/petros_files/ney.png';
    icon.shadow = 'http://www.p-zaranis.gr/petros_files/ney.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(0,0);
    icon.iconAnchor = new GPoint(0,0);
    icon.infoWindowAnchor = new GPoint(30,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';

    var address_0 = {
      street: 'Kyprou 78',
      city: 'Argiroupoli',
      state: 'Attiki',
      zip: ' - ',
      country: 'Greece',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Music House - DoubleClick  to Zoom:</strong><br />Kyprou 78<br />Argiroupoli, Athens 16452 Greece</span>',
      full: 'Kyprou 78, Argiroupoli, Athens, 16452, Greece',
      isdefault: true
    };
    
    //geocoder.getLatLng (
    //  address_0.full,
     // function(point) {
         
        var point= new GLatLng (37.90855168680094,23.751883506774902); 
 map.setCenter(point, 15);
          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.90855168680094, 23.751883506774902), 13);
        //}
     // }
    //);

  }
}