チェックされたチェックボックスをカウントする      
Sample
1  2  3  4  5
ソ−ス
<HTML>
<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!--
function count_chk(form) {
  var total = 0;
  var max = form.chk_box.length;
  for (var index = 0; index < max; index++) {
    if (eval("document.area_chk.chk_box[" + index + "].checked") == true) {
      total += 1;
    }
  }
  alert("あなたは、 " + total + " 個 チェックしました。");
}
//-->
</SCRIPT>

</HEAD>
<BODY>
<CENTER>
<form method="post" name=area_chk>
1<input type=checkbox name=chk_box> 
2<input type=checkbox name=chk_box> 
3<input type=checkbox name=chk_box> 
4<input type=checkbox name=chk_box> 
5<input type=checkbox name=chk_box><br>
<input type=button value="カウントする" onClick="count_chk(this.form)">
</form>
</CENTER>
</BODY>
</HTML>
ワンポイント解説
if (eval("document.area_chk.chk_box[" + index + "].checked") == true) {
 で、チェックされた数をカウントしています。