/* <![CDATA[ */ 
function cambiaLayer(lay) {
	var data = new Date();
	for(var y=data.getFullYear();y >= 2000;y--) {
		var el = "aa" + y;
		document.getElementById(el).style.display='none';
		if(lay==el) document.getElementById(el).style.display='block';
	}
}
function target(pagina){
	window.open(pagina);
}
function stampa($tutto) 
{
  if (window.print) {
    if($tutto) {
		window.print();
	} else {
		document.getElementById('Testo').print();
	}
  } else {
    alert('Funzione non supportata dal browser.');
  }
}

function Vota(valore){
	switch (valore){
		case "1":
				document.getElementById('stella1').src="img/voti/stella.gif";
				document.getElementById('stella2').src="img/voti/stellaOFF.gif";
				document.getElementById('stella3').src="img/voti/stellaOFF.gif";
				document.getElementById('stella4').src="img/voti/stellaOFF.gif";
				document.getElementById('stella5').src="img/voti/stellaOFF.gif";
		break;
		case "2":
				document.getElementById('stella1').src="img/voti/stella.gif";
				document.getElementById('stella2').src="img/voti/stella.gif";
				document.getElementById('stella3').src="img/voti/stellaOFF.gif";
				document.getElementById('stella4').src="img/voti/stellaOFF.gif";
				document.getElementById('stella5').src="img/voti/stellaOFF.gif";
		break;
		case "3":
				document.getElementById('stella1').src="img/voti/stella.gif";
				document.getElementById('stella2').src="img/voti/stella.gif";
				document.getElementById('stella3').src="img/voti/stella.gif";
				document.getElementById('stella4').src="img/voti/stellaOFF.gif";
				document.getElementById('stella5').src="img/voti/stellaOFF.gif";
		break;
		case "4":
				document.getElementById('stella1').src="img/voti/stella.gif";
				document.getElementById('stella2').src="img/voti/stella.gif";
				document.getElementById('stella3').src="img/voti/stella.gif";
				document.getElementById('stella4').src="img/voti/stella.gif";
				document.getElementById('stella5').src="img/voti/stellaOFF.gif";
		break;
		case "5":
				document.getElementById('stella1').src="img/voti/stella.gif";
				document.getElementById('stella2').src="img/voti/stella.gif";
				document.getElementById('stella3').src="img/voti/stella.gif";
				document.getElementById('stella4').src="img/voti/stella.gif";
				document.getElementById('stella5').src="img/voti/stella.gif";
		break;

	}
	document.vota.voto.value=valore;
}
/* ]]> */ 