//漢字
//--漢字
//ＵＴＦ－８(UTF-8)です

//
var gFieldInfoArray = [
					 {'Name':'memberid','MsgTxt':'コード番号'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':true,'bReqMinLen':false
							,'bSpecialReqMinLen':true,'MinLength':6
							,'bSingleByte':true,'MaxLength':6,'checkCharType':kReqCharTypeHanNum,'optionList':[]}
					,{'Name':'organization','MsgTxt':'団体名'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
					,{'Name':'department','MsgTxt':'所属部課室名'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
					,{'Name':'address','MsgTxt':'所在地'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
					,{'Name':'phone','MsgTxt':'電話番号'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
					,{'Name':'mail','MsgTxt':'E-mail'
							,'bReqText':false,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':kReqCharTypeEmailChar,'optionList':[]}
					,{'Name':'post','MsgTxt':'担当者職名'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
					,{'Name':'personkana','MsgTxt':'担当者 氏名ふりがな'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
					,{'Name':'person','MsgTxt':'担当者 氏名'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':'','optionList':[]}
			];
			
//--
function doNextBtnClick()
{
	if (!doFormCheck('form01')){
		return false;
	}

	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		command.value = 'check';
		action = 'regist.php';
		target = '_self';
		submit();
	}
}

function doCommitBtnClick()
{
	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		command.value = 'commit';
		action = 'regist.php';
		target = '_self';
		submit();
	}
}

function doBackBtnClick()
{
	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		command.value = 'redraw';
		action = 'regist.php';
		target = '_self';
		submit();
	}
}

function doCancelBtnClick()
{
	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		action = 'members.php';
		command.value = 'redraw';
		target = '_self';
		submit();
	}
}

