// Controllo di validità del form mail
function controlf_contatti()
{
	var errore='';
	if (document.frmMail.fname.value == "") {
		errore +='\n' + 'nome';
	} 
	if ((document.frmMail.email.value == "") || (document.frmMail.email.value.indexOf("@")==-1) || (document.frmMail.email.value.indexOf("@")==document.frmMail.email.value.length-1)) {
		errore +='\n' + 'e-mail';
	}
	if (document.frmMail.message.value == "") {
    errore +='\n' + 'messaggio';
	}
	if (errore!='') {
		alert("Non hai inserito:" + errore);
	} else {
		document.frmMail.target='_top';
		document.frmMail.submit();
	}
}
// finestra pop-up
function apriPopupCentrata(nome, titolo, lar, alt, feat)
{
	var wdt = screen.width; 
	var hgt = screen.height; 
	var x = Math.round( (wdt / 2) - (lar / 2) ); 
	var y = Math.round( (hgt / 2) - (alt / 2) ); 
	window.open(nome, titolo, 'width=' + lar + ',height=' + alt + ',left=' + x + ',screenX=' + x + ',top=' + 150 + ',screenY=' + 150 + ',' + feat);
}
// cambia colore dello sfondo al passaggio del mouse
function cOn(td)
{
	if(document.getElementById||(document.all && !(document.getElementById))) {
		td.style.backgroundColor="#F7F7F8";
	}
}

function cOut(td)
{
	if(document.getElementById||(document.all && !(document.getElementById))) {
		td.style.backgroundColor="#E1EFDB";
	}
}
