function illumina(cosa, sino) {
if(sino == 1) {
	cosa.style.backgroundColor="green";
}else{
	cosa.style.backgroundColor="white";
}
}

function evidenzia(cosa, sino) {
	if(sino == 1) {
		cosa.style.backgroundColor="rgb(240,240,240)";
	}else{
		cosa.style.backgroundColor="rgb(190,220,220)";
	}
}

function mostraScript(quale) {
	if(document.getElementById(quale).style.display=='none') {
		document.getElementById(quale).style.display='';
	}else{
		document.getElementById(quale).style.display='none';
	}
}