
function DataCheck() {
        var strNot='';
        if (document.prof.usr_name.value=='') {
                strNot += 'ニックネーム、';
        }
        if (document.prof.sex.value=='') {
              strNot += '性別、';
        }
        if (document.prof.birth_year.value=='' || document.prof.birth_month.value=='' || document.prof.birth_day.value=='') {
              strNot += '生年月日、';
        }
        if (document.prof.comment.value=='') {
                strNot += '自己紹介';
        }
        if (strNot != '') {
                strNot = strNot.replace(/、$/, '');
                window.alert(strNot + 'の項目が入力されていません');
                return(false);
        }
        return　FileCheck();
}

function delete_kakunin(){
        if (confirm("登録データを削除します。よろしいですか？")){
                return true;
        }else{
                return false;
        }
}
