<!--
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 cambiaclasse(elemento, classe) {
	//alert("Ciao");
	document.getElementById(elemento).attributes['class'].value = classe;
}
//-->