function caricaFrameCentrale(id){
if (window.parent.frames["centrale"]){
	window.parent.frames["centrale"].document.location.href = id +'.html';
	return true;
	}
	return false;
}

//var bgdefcolor = 'rgb(255, 246, 188)'
var bgdefcolor = '#FFCC00'
function pulsanteOn(id){
if (document.getElementById(id)){
		document.getElementById(id).style.backgroundColor = 'yellow';
		return true;
		}
	return false;
}

function pulsanteOff(id){
	if (document.getElementById(id)){
		document.getElementById(id).style.backgroundColor = bgdefcolor;
		return true;
		}
	return false;
}

function checkResolution(){
	if ((screen.width < 1024) && (screen.height < 768)){
		alert('Per una corretta visione del sito si consiglia una risoluzione video di 1024x768 o superiore.');
		return true;
		}
	return true;
}