﻿// 全てのチェックボックスをオン
function checkAll()
{
    for ( i=0; i<document.form01.length-1; i++ ){
        if ( document.form01.elements[i].type == "checkbox" ) {
            document.form01.elements[i].checked = true;
        }
    }
}
// 全てのチェックボックスをオフ
function checkClear()
{
    for ( i=0; i<document.form01.length-1; i++ ){
        if ( document.form01.elements[i].type == "checkbox" ) {
            document.form01.elements[i].checked = false;
        }
    }
}