 function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " - the map is not available.");
            } else {
              map.setCenter(point, 12);
			  map.enableScrollWheelZoom();

	      map.clearOverlays();
              var marker = new GMarker(point);
			 
	      document.getElementById("message1").innerHTML = ''//GLat = '+ point.y + ', GLng = ' + point.x;	
              map.addOverlay(marker);
              var text=address+'<br><br>'+'<a href="http://www.maps11.com/full.php?q='+address+'" target="_blank"><u><font color="blue">Full Screen</a></u></font>';
              marker.openInfoWindowHtml(text);
            }
          }
        );
      }
    }
	

