grande "dottore" abbiamo risolto

posto tutto il codice del breve esempio, magari può servire a qualcuno:

Codice PHP:
<html>
<
head>
<
style>
</
style>
<
script src="mootools-1.2-core-nc.js"></script>
<script>
  
  function hiddenCol(col){
    var coll = document.getElements('td[name='+col+']');
    for(i=0; i < coll.length; i++){
      coll[i].style.display = "none";
    }
  }

</script>
</head>
<body>
<table border="1">
 <tr>
  <td name="nome"><a href="#stop" onClick="hiddenCol('nome')">Nome</td>
  <td name="cognome" id="i1">[url="#stop"]Cognome[/url]</td>
  <td name="eta">[url="#stop"]Eta[/url]</td>
 </tr>
 <tr>
  <td name="nome">Pippo</td>
  <td name="cognome" id="i2">Caio</td>
  <td name="eta">12</td>
 </tr>
 <tr>
  <td name="nome">Max</td>
  <td name="cognome" id="i3">Biaggione</td>
  <td name="eta">34</td>
 </tr>
 <tr>
  <td name="nome">Pippo</td>
  <td name="cognome" id="i4">Anastasio</td>
  <td name="eta">57</td>
 </tr>
</table>
</body>
</html> 
ovviamente bisogna scaricare "mootools-1.2-core-nc.js"

grazie ancora "dottwatson" mi sembra un'ottima soluzione, ciao e buona giornata