function CheckEMail(EMail)
{
	if (String(EMail) == "")
	{
		alert("Attenzione!!! Inserire indirizzo EMail");
		return false;
	}
	var re;
  re = /@/i;
  if (String(EMail).search(re) == -1)
  {
		alert("Attenzione!!! Indirizzo EMail non valido.");
		return false;
  }
  return true;
}
function MenuOver(Obj)
{
	if (typeof(Obj) != "undefined" && Obj != null)
	{
		Obj.className = "MenuOver" ; 
	}
}

function MenuOut(Obj)
{
	if (typeof(Obj) != "undefined" && Obj != null)
	{
		Obj.className = "MenuOut" ; 
	}
}
