var map = null;
var geocoder = null;

function load()
{
	if (GBrowserIsCompatible())
		{
			map = new GMap2(document.getElementById("map"));
			map.setCenter(new GLatLng('45.493984','10.606763'), 15);
			geocoder = new GClientGeocoder();
		}
}

function showAddress(address,latitudine,longitudine)
{
	if (latitudine!='' && longitudine!='')
	{
		var point = new GLatLng(latitudine , longitudine);
		map.setCenter(point, 15);
		var marker = new GMarker(point);
		map.addOverlay(marker);
		marker.openInfoWindowHtml(address);
	} else {
		if (geocoder) 
		{
			geocoder.getLatLng(
				address,
				function(point) {
					if (!point) 
					{ alert(address + " not found"); } 
					else 
					{
						map.setCenter(point, 15);
						var marker = new GMarker(point);
						map.addOverlay(marker);
						marker.openInfoWindowHtml(address);
					}
				}
			);
		}
	}
}