codice:
 function subm() {
  var tot = 0;	
  for (var i=0, i < 11, i++) {
   if (document.cnew.elements['active'+i].checked == true) {
    tot = tot + 1;
   }
   else {
    tot = tot;
   }
  }
  alert(tot);
 }
perchè sto script mi compromette tutti gli altri script della pagina??