function checkAll(){
	//alert("checkAll called");
	//alert("document.form1 = "+document.form1);
  var count;
  var n;
  for( n=0; n<=document.form1.length-1;n++){
    if(document.form1.elements[n].type == "checkbox"){
      document.form1.elements[n].checked = true;
    }
  }
//  for(count = 0; count < 8; count++){
//
//    document.form1.cat[count][0].checked = true;	//チェックボックスをON/OFFにする
//  }

}