Hola
myconatani
Ponle un id a tu tabla: <table id="tabla">
y usa este código:
chk=document.getElementById('tabla').getElementsBy TagName('input');
a:chk.length;
para saber los checkbox marcados tendrás que recorrerlos con un bucle:
num=0;
for(i=0;i<chk.length;i++)
if(chk[i].checked) num++
Saludos,