function changeSfondoMenu(div){
	document.getElementById(div).style.color = 'black';
	document.getElementById(div).parentNode.style.backgroundImage = 'url(immagini/menuHover.jpg)'; 	
}

function changeBgCategorie(obj,azione){
		
		if(azione=='entra')
		param='Hover';
		if(azione=='esce')
		param='';

		if ((obj == "sicurezza") || (obj == "formTecnica"))
		img="btSicurezza"+param+".jpg";
		else
		img="bgMenuLaterale"+param+".jpg";
	
	document.getElementById(obj).style.backgroundImage = 'url(immagini/'+img+')';
}

function stampaKey(keyframe){
		document.getElementById("idKey").value=keyframe;
}

function goPage(pag){
	document.forms[0].action = pag;
	document.forms[0].method = 'post';
	document.forms[0].submit();
}

function avvisoSezione(azione){
			
	if(azione=="apri"){
	document.getElementById("bloccaClick").style.display = 'inline';
	document.getElementById("divCustonConfirm").style.display = 'inline';
	}
	if(azione=="chiudi"){
	document.getElementById("bloccaClick").style.display = 'none';
	document.getElementById("divCustonConfirm").style.display = 'none';
			}
		}

