function ResetForm() {
	document.contattaci.nome.value = '';
	document.contattaci.telefono.value = '';
	document.contattaci.email.value = '';
	document.contattaci.messaggio.value = '';
	return(false);
}

function Cambia(value, tipologia, nome) {

	img = document.getElementById('img_'+value);

	if (tipologia == 1)
	{
		img.src = 'img/gif/'+nome+'_UP.gif';
	} else 
	{
		img.src = 'img/gif/'+nome+'_DOWN.gif';
	}
}

function DivImg() {
	div = document.getElementById('div_img_1');
	div.style.display = 'none';

	div = document.getElementById('div_img_2');
	div.style.display = 'block';
}

function Contattaci() {
	if (document.contattaci.nome.value == "")
	{
		alert('Attenzione, inserire il nome');
		return(false);
	}
	if (document.contattaci.email.value == "")
	{
		alert('Attenzione, inserire un indirizzo e-mail');
		return(false);
	}
}

function Show(id, path) {
	div = document.getElementById('sottomenu_'+id);
	img = document.getElementById('img_'+id);

	if (div.style.display == 'none') {
		div.style.display = 'block';
		img.src = path+'/img/freccetta_nera_giu.gif';
	} else {
		div.style.display = 'none';
		img.src = path+'/img/freccetta_nera.gif';
	}


}
