function controllo(){
	with(document.modulo) {
		if(email.value=="") {
		alert("Errore: compilare il campo Email");
		email.focus();
		return false;
		}
		if(testo.value=="") {
		alert("Errore: compilare il campo Testo");
		testo.focus();
		return false;
		}
		if(!privacy.checked) {
		alert("Errore: Spuntare la casella dell'informativa.");
		privacy.focus();
		return false;
		}
	}
	alert("Controllo effettuato con successo.");
	return true;
}

 function PopupCentrata() {
   var w = 400;
   var h = 250;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open("privacy.html","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
 }
 
 	var demoTabs;
	Event.observe(window, "load", function() {
		//Immagini
		var images = [
			"images/slide/IMGP0313.jpg",
			"images/slide/IMGP0331.jpg",
			"images/slide/IMGP0336.jpg",
			"images/slide/IMGP0338.jpg",
			"images/slide/IMGP0379.jpg",
			"images/slide/IMGP0380.jpg",
			"images/slide/IMGP0390.jpg"
		];

		new Widget.Fader("defaultDemo", images);
		
		});