function rollover(nome1,nome2,url1,url2) {
	if (nome1 != "") {
	document.images[nome1].src=url1;
	}
	if (nome2 != "") {
	document.images[nome2].src=url2;
	}
}

function restore(nome1,nome2,url1,url2)  {
	if (nome1 != "") {
	document.images[nome1].src=url1;
	}
	if (nome2 != "") {
	document.images[nome2].src=url2;
	}
}

function preload(nome,url) {
nome= new Image();
nome.src = url;
}


function FormValidator(theForm)
{ 

	   if (theForm.email.value=="")
	  { 
	  alert("Si prega di inserire un indirizzo mail per la risposta");
	  theForm.email.focus();
	  return(false);
	  }
	  
	 if (theForm.testo.value=="")
	  { 
	  alert("La mail risulta vuota. Si prega di controllare.");
	  theForm.testo.focus();
	  return(false);
	  }

  }




