function showfile(valor){
 if(document.getElementById){
 var vista = document.getElementById(valor).style;
 if (vista.display == "block"){
    vista.display = "none";
  }else{
  vista.display = "block";
  }
  return false;
 }else{
 return true;
 }
}
