<!--
function subWin(file){
	window.open(file,"window1","width=350,height=450,scrollbars=1");
}
function subWins(file){
	window.open(file,"window2","width=820,height=550,scrollbars=1,resizable=1");
}
function subWin3(file){
	window.open(file,"window4","width=640,height=350,scrollbars=1");
}
function subop(file){
	window.open(file,"window3","width=380,height=300,scrollbars=1");
}
function subWin5(file){
	window.open(file,"window5","width=620,height=465,scrollbars=1");
}

function InputCheck() {
	var flg = 0;
	//▼ ---ラジオボタン選択チェック
	for(i=0; i<=(form01.head_id.length - 1); i++){
		if(form01.head_id[i].checked == 1){	flg = 1;}
	}
	if(flg != 1){
		alert("どれか一つお選びください");
		return false;
	}
	//▼ ---コメント入力チェック（個別に設定）
	if(form01.head_id[4].checked == 1){
		if(form01.comment_5.value == ""){	flg = 0;}
	}
	if(flg != 1){
		alert("コメントをご記入ください");
		return false;
	}
	
	return true;
}

//-->