![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
hum.. es verdad.
Bueno, no problemo, agrega lo que está en negritas a la función
Código:
function entrada()
{
for(m=0;m<document.forms[0].length;m++)
{
if(document.forms[0][m].type=="checkbox")
{
if(document.forms[0][m].checked==true)
{
cont++
document.forms[0].enviar.disabled=false
document.getElementById('aviso').style.visibility='hidden'
}
}
}
}