// JavaScript Document
/***************ALERT ERRORI**************/
var myAlertMsg=["Attenzione! I dati inseriti sono errati", "Per accedere alla pagina di dettaglio news e' necessario essere registrati."];

/*************** LOGIN**************/
function checkForm()
{
	//VERIFICA
	if(document.login.username.value=="" || document.login.password.value=="" )
	{
		alert("Attenzione i campi richiesti sono obbligatori");
	}
	else
	{
		document.login.submit();
	}
}

/*************** GESTIONE IMMAGINI **************/
newValue=4;

function swapImage(nameBox,value)
{
	newValue++;
	//var boxSel=nameBox;
	//var boxSel="bvcbcvb";
	if(document.all && !document.getElementById)
	{
 		document.all[nameBox].style.zIndex = newValue;
	}
	else
	{
		document.getElementById(nameBox).style.zIndex = newValue;
	}		
}

/*************** HIDDEN TABLE **************/


function hiddenTable(nameBox)
{
	
	if(document.getElementById(nameBox).style.display=="none")
	{	
		document.getElementById(nameBox).style.display='block';											
	}
	else
	{
		document.getElementById(nameBox).style.display='none';											
	}
	
}


