function actcng(i){
document.f1.action=i;
}

function actcng_new(i){
document.f1.action=i;
document.f1.target="_blank";
}


function allcheck(targetForm,flag){
if (targetForm.all.checked != false) {
　for(n=0;n<=targetForm.length-1;n++){
　　if(targetForm.elements[n].type == "checkbox"){
　　　targetForm.elements[n].checked = flag;
　　}
　}
}
}


