function do_init(){
	
	var form = document.getElementById("contattiform");
	form.nome.controlla=true;
	form.nome.sName="Nome";
	form.cognome.controlla=true;
	form.cognome.sName="Cognome";
	form.email.controlla=true;
	form.email.sName="email";
	form.email.mail=true;
	form.richiesta.controlla=true;
	form.richiesta.sName="richiesta";
	form.privacy.controlla=true;
	form.privacy.sName="Devi accettare la privacy.";
	form.onsubmit=function(){
		
		return verify(this);		
	
	}
	
	/*
	if (document.getElementById("map")){
		
		if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map"));
			map.setCenter(new GLatLng(44.71129,10.59494), 15);
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
	     	map.setMapType(G_HYBRID_MAP);
			
			var point = new GLatLng(44.71129,10.59494);
			var marker = new GMarker(point);
		
			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml("<p><b>olivi Ildebrando</b><br />Via C. Cafiero, 13<br />42100 Reggio Emilia</p>");
			});
			map.addOverlay(marker);
		}

		 window.onunload=function(){
			GUnload();
		 }
		 	 
	}
	*/
}
