var map = null;
          var geocoder = null;
      
          function initialize() {
            if (GBrowserIsCompatible()) {
              map = new GMap2(document.getElementById("map_canvas"));
              map.setCenter(new GLatLng(52.268157,19.687500), 6);
              map.addControl(new GLargeMapControl);
              geocoder = new GClientGeocoder();
            }
            
            //$('.mapImage_bg').css( 'display','none' );
          }
      
          function showAddress(title,address) {
            initialize();
            if (geocoder) {
              
              geocoder.getLatLng(
                address,
                function(point) {
                  if (!point) {
                    alert(address + " Niestety adres nie znaleziony!");
                  } else {
                    map.setCenter(point, 15);
                    var marker = new GMarker(point);
                    map.addOverlay(marker);
                    // As this is user-generated content, we display it as
                    // text rather than HTML to reduce XSS vulnerabilities.


                    marker.openInfoWindow('<b>'+title+'</b><br>'+address);
                  }
                }
              );
            }
            
            
            
          }
  
          
          
          

