// Javascript window.document.write(''); function CreaMapa(x, y) { var mapa001 = new GMap2(document.getElementById("mapa001")); mapa001.addControl(new GSmallMapControl()); //mapa001.setCenter(new GLatLng(40.416698,-3.70309), 17); mapa001.setCenter(new GLatLng(y,x), 17); //mapa001.setMapType(G_SATELLITE_MAP); } function showAddress(address) { var geocoder = new GClientGeocoder(); geocoder.getLatLng(address,function(point) { if (!point) { alert(address + " not found"); } else { CreaMapa(point.x, point.y); } } ); }