// mostra/nascondi canali
var fine_indice = 25;

function mostra(id){
	document.getElementById('gruppo_ricerca').style.display = 'none';	
	controllo = document.getElementById('link_'+id).className;
	if (controllo=="canale_attivo"){
		document.getElementById('s_'+id).style.display ='none';
		document.getElementById('link_'+id).className ='canale';
	}
	else{
	for (indice=1;indice<fine_indice;indice++) {

		if (indice==id) {
			document.getElementById('s_'+indice).style.display ='';
			document.getElementById('link_'+indice).className ='canale_attivo';
		} else {
			document.getElementById('s_'+indice).style.display ='none';
			document.getElementById('link_'+indice).className ='canale';
		}
	}
}
}



