function resetea (nombre){
    var i;
    var capa;
    capa=document.getElementById("clasificacion-generica");
    enlaces=capa.getElementsByTagName("a");   
 
    
    for (i=0; i < enlaces.length; i++){
	  if ( enlaces[i].title == nombre ){
	       enlaces[i].style.color="#BC0000";
	  }
	  else{
	       enlaces[i].style.color="#929292";	
	  }
    }
}


function Seleccion(elemento){

    elemento.style.color="#BC0000";
    document.pubsSearch.ClasGenerica.value=elemento.title;
    resetea(elemento.title);
    document.pubsSearch.word.focus();

}

