MikiBroki
el script
<script language="javascript">
function hab_des(cual)
{
document.getElementById('cual').style.visibility=" visible";
}
</script>
lo del boton nada mas es por aspecto
<th><input type="button" onclick="hab_des(tabla<%=lk%>);" value="<%=lk%>" /></th>
Inicializo las tablas para que no se miren
<table id="tabla<%=kl+1%>" style="visibility:hidden">
pero al llamar la funcion
![Negando](http://static.forosdelweb.com/fdwtheme/images/smilies/negar.gif)
no trabaja
este es el codigo resultante al mirar la pagina
El menu para llamar la pagina:
<table><tr>
<th><input type="button" onclick="hab_des(tabla1);" value="1" /></th>
</tr><table>
y la tabla:
<div class="story1" id="Layer1">
<table id="tabla1" style="visibility:hidden">
<tr><th>#</th><th>Matriculas</th><th>Indez</th><th>Periodos</th><th>Monto a Pagar</th></tr>
<tr><th>1</th><td>6819744</td><td>1</td><td>01</td><td>2000</td></tr>
<tr><th>2</th><td>6819708</td><td>6</td><td>01</td><td>2000</td></tr>
<tr><th>3</th><td>5823294</td><td>7</td><td>03</td><td>6000</td></tr>
</table></div>
alguna observacion?