function Contatti() {
	if (document.registrazione.Ragione_sociale.value == '')
	{
		alert('Attenzione, inserisci la ragione sociale');
		return(false);
	}

	if (document.registrazione.Persona_di_riferimento.value == '')
	{
		alert('Attenzione, inserisci il nome della persona di riferimento');
		return(false);
	}

	if (document.registrazione.tel.value == '')
	{
		alert('Attenzione, inserisci il tuo numero di telefono');
		return(false);
	}

	if (document.registrazione.mail.value == '')
	{
		alert('Attenzione, inserisci il tuo indirizzo e-mail');
		return(false);
	}

	if (document.registrazione.username.value == '')
	{
		alert('Attenzione, inserisci il tuo username');
		return(false);
	}

	if (document.registrazione.password.value == '')
	{
		alert('Attenzione, inserisci la tua password');
		return(false);
	}
}

function ShowPictures(value) {
	for (i=1; i<=6; i++)
	{
		if (document.getElementById('img_'+i))
		{
			if (i == value)
			{
				document.getElementById('img_'+i).style.display = 'block';
				document.getElementById('testo_'+i).style.display = 'block';
			} else {
				document.getElementById('img_'+i).style.display = 'none';
				document.getElementById('testo_'+i).style.display = 'none';
			}
		}
	}
}

function ShowFlash(value) {
	for (i=1; i<=4; i++)
	{
		if (document.getElementById('flash_'+i))
		{
			if (i == value)
			{
				document.getElementById('flash_'+i).style.display = 'block';
			} else {
				document.getElementById('flash_'+i).style.display = 'none';
			}
		}
	}
}
