/**
 * @author BL-araki
 */
function check_form(reqList){
	for(var i in reqList){
		if(document.getElementById(reqList[i]).value == ''){
			alert(document.getElementById(reqList[i]).name + 'を入力してください');
			return false;
		}
	}
}
