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();
    var icon = new GIcon();
    var markerStyle = 'Pin';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/pin/pacifica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/pin/shadow.png';
    icon.iconSize = new GSize(31,23);
    icon.shadowSize = new GSize(31,23);
    icon.iconAnchor = new GPoint(0,0);
    icon.infoWindowAnchor = new GPoint(0,0);
	 map.addControl(new GSmallMapControl());
   
    
   ;
    icon.printImage = 'http://google.webassist.com/google/markers/pin/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/pin/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/pin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pin/pacifica_transparent.png';

    var address_0 = {
      street: 'a',
      city: 'Athens',
      state: 'Greece',
      zip: '11445',
      country: 'Greece',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Music Village</strong><br />Ag. Laurentios Pelion <a href="http://www.music-village.gr" target ="_blank">Visit WebSite</a> <a href="http://www.p-zaranis.gr/musicvillage/musicvillagemap.html" target ="_blank">Enlarge Map</a></span>',
      full: 'Music Village Ag. Lavrentios Pelion',
      isdefault: true
    };
    
      
         
		 
		 
		 map.setCenter(new GLatLng(39.362174276979765, 23.060302734375),9);
        var point= new GLatLng (39.362174276979765,23.060302734375);
		
		map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
      map.setMapType(G_HYBRID_TYPE);
      }
}


