Ah, ecco: forse l'errore sta da tutt'altra parte: in questa funzione dovrebbe mancare un ";" ..
Più o meno verso la fine ma non riesco ad individuarlo.. Idee?codice:function search_city() { var place = $("#city").val(); geocoder = new GClientGeocoder(); geocoder.getLatLng(place, function(point) { if (!point) { if(place == "") { } else { alert(place + " not found. Retry!"); document.register.city.value = ""; $('#city').focus(); } } else { //alert(point); //var info = place+"</h3>Latitude: "+point.y+" Longitude:"+point.x; var lat = point.y; var long = point.x; // var marker = new GMarker(point); // map.addOverlay(marker); // marker.openInfoWindowHtml(info); } };