/**
 * @author christophe
 */
function afficheJusteChaine(id_chaine) {
	var noeud = document.getElementsByTagName('tr');
	var nbFils = noeud.length;
	for(var i = 0; i < nbFils; i++){
	  	if(noeud[i].id == id_chaine || id_chaine == ""){
			if(document.getElementById(noeud[i].id))
				document.getElementById(noeud[i].id).style.display = "table-row";
		} else if(noeud[i].id != ""){
			document.getElementById(noeud[i].id).style.display = "none";
		}
	} 
}

function changerFai(elmt){
	window.location = '/comparatif/television-adsl/fai/'+elmt.value+'.html';
}

function changerFai2(elmt){
	window.location = '/comparatif/telephone/fai/'+elmt.value+'.html';
}