<!--

	function evidenziaRiga() 			{	this.id = "selezionata";	}
	function evidenziaRigaOff()		{	this.id = "";	}

	function testoCanzone()
	{
		if ( this.cells[ 0 ].title ) 
			window.location.href = "testi-traduzioni-grinderman-dettaglio.php?Testo="+ this.cells[0].title;
	}
	
	var Tabelle= new Array();
	var Tabelle = document.getElementsByTagName( "table" );
	var indice;

	//alert( Tabelle.length );
	
	for( indice = 0; indice < Tabelle.length; indice++ ) {

		var tempName =  Tabelle[indice].getAttribute("name");

		if( tempName == "TabellaCanzoni" ) {
		
			var Tabella = Tabelle[indice];
			Righe = Tabelle[indice].rows;
			
			//alert(tempName);

			for( indiceInterno = 1; indiceInterno < Righe.length; indiceInterno++ ) {
				Riga = Righe[ indiceInterno ];
				Riga.onmouseover = evidenziaRiga;
				Riga.onmouseout = evidenziaRigaOff;
				Riga.onclick = testoCanzone;
			}
		}
	}

//-->
