...
Código PHP:
<script type="text/javascript">
function contarMarcados(){
var checks=document.getElementsByTagName('input');
var totalChecks=checks.length;
var totalMarcados=0;
for(var pos=0;pos<totalChecks;pos++){
if(checks[pos].type=="checkbox"){
if(checks[pos].checked){
totalMarcados++;
}
}
}
alert(totalMarcados);
}
</script>
<body>
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="button" value="Contar" onclick="contarMarcados()" />
</body>
Espero te sirva...