function ControllaCampi(Form)
	{
	Numero = Form.length;
	Verifica = 0;
	for(i = 1; i < Numero; i++)
		{
		Form.elements[i - 1].parentNode.style.color = "black";
		if(Form.elements[i - 1].value == "")
			{
			Form.elements[i - 1].parentNode.style.color = "red";
			Verifica ++;
			}
		//alert(Form.elements[i - 1].value);
		}
	if(Verifica > 0)
		{
		alert("Devi compilare tutti i campi.");
		return false;
		}
	else
		{
		return true;
		}
	}
	
function Focus(Elemento)
	{
	Elemento.className = "Focus"; 
	}
	
function Blur(Elemento)
	{
	Elemento.className = "Input"; 
	}
