function aumenta() {
	cont=document.getElementById('testo');
	if (cont) {
		switch (cont.style.fontSize)
		{
		case '': cont.style.fontSize=11+'px';
		case '11px': cont.style.fontSize=12+'px';
		break;
		case '12px': cont.style.fontSize=14+'px';
		break;
		case '14px': cont.style.fontSize=16+'px';
		break;
		case '16px':;
		break;
		default: cont.style.fontSize=11+'px';
		}
	}
}
function diminuisci() {
		cont=document.getElementById('testo');
		if (cont) {
		switch (cont.style.fontSize)
		{
		case '12px': cont.style.fontSize=11+'px';
		break;
		case '14px': cont.style.fontSize=12+'px';
		break;
		case '16px': cont.style.fontSize=14+'px';
		break;
		case '11px':;
		break;
		default: cont.style.fontSize=11+'px';
		}
	}
}
