function setH() {
    var maxH = Math.max(document.getElementById('content').offsetHeight,document.getElementById('navigation').offsetHeight);
    document.getElementById('content').style.height=maxH+'px';
    document.getElementById('navigation').style.height=maxH+'px';
  }
function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));

map.addControl(new GSmallMapControl());
geocoder = new GClientGeocoder();
	geocoder.getLatLng(
  address,
  function(point) {
    if (!point) {
		document.getElementById("map_canvas").innerHTML  = '<img src="Imagenes/MapaNodisponible.gif" />'
    } else {
	    //alert(point);
      map.setCenter(point, startZoom);
      var marker = new GMarker(point);
     map.addOverlay(marker);
    }
  }
);
}
}

function initialize2() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));

map.addControl(new GSmallMapControl());
    if (typeof point == "undefined") {
		document.getElementById("map_canvas").innerHTML  = '<img src="Imagenes/MapaNodisponible.gif" />'
    } else {
	    //alert(point);
      map.setCenter(point, startZoom);
      var marker = new GMarker(point);
     map.addOverlay(marker);
    }
  }
}