// Google maps
function load() 
{
	if (GBrowserIsCompatible()) 
	{  
		var map = new GMap2(document.getElementById("google_map"));  
		map.setCenter(new GLatLng(44.969747, 7.715213), 12);
		map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
		// Google maps Crea un nuovo marker nel punto specificato con una descrizione HTML associata
		function createMarker(point, description) 
		{
			var marker = new GMarker(point);
			GEvent.addListener(marker, "mouseover", function() {marker.openInfoWindowHtml(description);});
			return marker;
		}
		// Google maps Aggiungi il marker alla mappa
		map.addOverlay(createMarker(new GLatLng(44.969747, 7.715213), "Ilte<br>Via Postiglione 14,<br>Moncalieri (TO) 10024"));

	}
}
/*Popup*/
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
/*onclick="NewWindow(this.href,'name','1000','680','no');return false"*/