Muchas Gracias Bro!!!!!, genial era justo lo que necesitaba. Les muestro como quedo:
   
Código javascript
:
Ver original- <script language="javascript" type="text/javascript"> 
- function capturar(numero){ 
- var table = document.getElementById("prototipos");    
- var enlaces = table.getElementsByTagName("a");   
- for (var i = 0, total = enlaces.length; i < total; i ++) 
-     if (i == numero)             
-         var enlace =document.getElementById('linka'+i); 
- var titulo = enlace.title; 
- $.post("nueva_rule.php", { variable: titulo }, function(data){ 
- $("#recargado").html(data); 
- });  
- } 
- </script> 
Código php:
Ver original- <?php 
- echo '<table id="prototipos" class="tabla">'; 
- for ($i=0;$i<$filas1;$i++){ 
- echo '<tr class="modo1">'; 
-  for($j=0;$j<$columnas1;$j++){  
-     if($j==0){ 
-       $_SESSION['protos']=$matriz1[$i][$j];  
-     } 
-     if($j==1){ 
-       $aux1=$matriz1[$i][$j];  
-       echo '<td width="100px" align="left"><a href="#" id="linka'.$i.'" title="'.$matriz1[$i][$j].'" onclick="javascript:capturar('.$i.')">'.$matriz1[$i][$j].'</a></td><tr>'; 
-     }  
-  }  
- } 
- echo '</table>'; 
- ?>