// JavaScript Document
function checkInfo(obj) {
	var msg = 0;
	var oggetto;
	var colore_ok = "#FFFFFF";
	var colore_no = "#C1001F";


	oggetto = obj.nome;
	if(oggetto.value == "")
	{
		oggetto.style.backgroundColor = colore_no;
		msg = 1;
	}
	else
	{
		oggetto.style.backgroundColor = colore_ok;
	}
	
	oggetto = obj.cognome;
	if (oggetto.value == "")	{
			msg = 1;
			oggetto.style.backgroundColor = colore_no;
		}
	else	{
			oggetto.style.backgroundColor = colore_ok;
	}
	
	if(check_email(obj.email.value))
	{
		obj.email.style.backgroundColor = "#C1001F";
		msg = 1;
	}
	else
	{
		obj.email.style.backgroundColor = "#FFFFFF";
	}
	
	oggetto = obj.cellulare;
	if(oggetto.value == "")
	{
		oggetto.style.backgroundColor = colore_no;
		msg = 1;
	}
	else
	{
		oggetto.style.backgroundColor = colore_ok;
	}
	
	oggetto = obj.prodotto;
	if(oggetto.value == "")
	{
		oggetto.style.backgroundColor = colore_no;
		msg = 1;
	}
	else
	{
		oggetto.style.backgroundColor = colore_ok;
	}
	
	oggetto = obj.privacy;
	if(oggetto.value == "")
	{
		oggetto.style.backgroundColor = colore_no;
		msg = 1;
	}
	else
	{
		oggetto.style.backgroundColor = colore_ok;
	}
	
	if (!msg) return(true);
	else
	{
		return(false);
	}
}
