<!--
function popup(url, w, h, scrollbars) {
	day = new Date();
	id = day.getTime();
	windowX = (window.screen.width - w)/2;
	windowY = (window.screen.height - h)/2;
	eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=' + scrollbars + ',location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left=" + windowX + ",top=" + windowY + "');");
}

function change(valore, posizione, nome)
{
	/*
	if(document.all){ //IE
		document.nome.style.background = "#526F91";
		document.valore.style.color = "#FFFFFF";
	}
	else if(document.layers){//NN
		document.nome.background = "#526F91";
		document.valore.style.color = "#FFFFFF";
	}
	else if(document.getElementById){//NN6
		document.getElementById("menu").style.background = "#526F91";
		valore.style.color = "#FFFFFF";
	}
	*/
	if(posizione == "over")
	{
		document.getElementById(nome).style.background = "#68A3C2";
		valore.style.color = "#FFFFFF";
	}
	else
	{
		document.getElementById(nome).style.background = "#C7D7EE";
		valore.style.color = "#526F91";
	}
}
//-->
