function controllo_form(form_annuncio) {
	if (form_annuncio.identificativo.value!='') {
		if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(form_annuncio.indirizzo.value)){
		return (true)
		} else {
		alert("Indirizzo e-mail non valido! Ritenta.")
		return (false)
		}
	} else {
		alert("E' necessario campilare i campi nome e e-mail!")
		return (false)
	}
}

function aprifinestra(URL) {

	var indiceFinestra=window.open(URL, 'zoom_immagini', 'width=600px,height=600px,resizable=yes');

	indiceFinestra.focus();

}
