function Cartella(cID) 
{
	if (document.getElementById('contenuti_materiale_file' + cID).style.display=='block')
	{
		document.getElementById('contenuti_materiale_file' + cID).style.display='none';
		document.getElementById('comando' + cID).src='./immagini/cartella.gif';
	}
	else
	{
		document.getElementById('contenuti_materiale_file' + cID).style.display='block';
		document.getElementById('comando' + cID).src='./immagini/cartella_aperta.gif';
	}
}

function Sedi(sID) 
{
	if (document.getElementById('contenuti_sedi_riga' + sID).style.display=='block')
	{
		document.getElementById('contenuti_sedi_riga' + sID).style.display='none';
		document.getElementById('comando' + sID).src='./immagini/ipiu.png';
	}
	else
	{
		document.getElementById('contenuti_sedi_riga' + sID).style.display='block';
		document.getElementById('comando' + sID).src='./immagini/imeno.png';
	}
}

function ControllaSede() 
{	
	if (document.operatore.ruolo_operatore.value==1)
	{
		document.getElementById('sede_operatore').style.display='block';
	}
	else
	{
		document.getElementById('sede_operatore').style.display='none';
	}
}

function SalvaOperatore()
{
	var TuttoOK = false
	
	if (document.operatore.username_operatore.value == '')
	{
		alert('Inserire l\'Username dell\'Operatore.');
		document.operatore.username_operatore.focus();
	}
	else if (document.operatore.password_operatore.value == '' && document.operatore.azione.value == 'nuovo')
	{
		alert('Inserire la Password dell\'Operatore.');
		document.operatore.password_operatore.focus();
	}
	else if (document.operatore.password_operatore.value != document.operatore.conferma_password_operatore.value)
	{
		alert('La Password e la Conferma non coincidono.');
		document.operatore.password_operatore.focus();
	}
	else
	{
		TuttoOK=true;
	}
	
	if (TuttoOK == true)
	{
		document.operatore.submit();
	}
}

function SalvaSede()
{
	var TuttoOK = false
	var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/; 
	
	if (document.sede.descrizione_sede.value == '')
	{
		alert('Inserire la Descrizione della Sede.');
		document.sede.descrizione_sede.focus();
	}
	else if (document.sede.contatto_sede.value == '')
	{
		alert('Inserire il Contatto della Sede.');
		document.sede.contatto_sede.focus();
	}
	else if (document.sede.email_sede.value == '' || !email_reg_exp.test(document.sede.email_sede.value))
	{
		alert('Inserire l\'Indirizzo Email della Sede.');
		document.sede.email_sede.focus();
	}
	else
	{
		TuttoOK=true;
	}
	
	if (TuttoOK == true)
	{
		document.sede.submit();
	}
}

function SalvaNews()
{
	var TuttoOK = false
	
	if (document.news.testo_news.value == '')
	{
		alert('Inserire il Testo della News.');
		document.news.testo_news.focus();
	}
	else
	{
		TuttoOK=true;
	}
	
	if (TuttoOK == true)
	{
		document.news.submit();
	}
}

function SalvaPassword()
{
	var TuttoOK = false
	
	if (document.password.password_operatore.value == '')
	{
		alert('Inserire la Password.');
		document.password.password_operatore.focus();
	}
	else if (document.password.password_operatore.value != document.password.conferma_password_operatore.value)
	{
		alert('La Password e la Conferma non coincidono.');
		document.password.password_operatore.focus();
	}
	else
	{
		TuttoOK=true;
	}
	
	if (TuttoOK == true)
	{
		document.password.submit();
	}
}

