function formContatti() {

	oNome=document.getElementById('nome');
	oCognome=document.getElementById('cognome');
	oCell=document.getElementById('cell');
	oTel=document.getElementById('tel');
	oEmail=document.getElementById('email');
	oMex=document.getElementById('messaggio');

	if (oNome.value=='') {
		alert ("Scrivi il nome");
		oNome.focus();
		return false;
	}

	if (oCognome.value=='') {
		alert ("Scrivi il cognome");
		oCognome.focus();
		return false;
	}

	if (oCell.value=='' && oTel.value=='') {
		alert ("Inserisci un numero di telefono cellulare o fisso");
		oCell.focus();
		return false;
	}

	if ((oEmail.value.length<5) || oEmail.value.indexOf("@")==-1) {
		alert ("Formato email non valido");
		oEmail.focus();
		return false;
	}

	if (oMex.value=='') {
		alert ("Scrivi il testo del messaggio");
		oMex.focus();
		return false;
	}

}

function aprifinestra(URL, nome, opzioni) {

	var indiceFinestra=window.open(URL, nome, opzioni);

	indiceFinestra.focus();

}
