//漢字
//--漢字
//ＵＴＦ－８(UTF-8)です

//
var gFieldInfoArray = [
					 {'Name':'mail','MsgTxt':'メールアドレス'
							,'bReqText':true,'ReqText_RefFld':'','bReqText_RefFill':false,'ReqText_RefVal':''
							,'bRadioSel':false,'bSelectNZ':false
							,'bReqMaxLen':false,'bReqMinLen':false
							,'bSingleByte':true,'MaxLength':-1,'checkCharType':kReqCharTypeEmailChar,'optionList':[]}
			];
			
//--
function doNextBtnClick()
{
	if (!doFormCheck('form01')){
		return false;
	}

	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		command.value = 'check';
		action = 'reissue.php';
		target = '_self';
		submit();
	}
}

function doCommitBtnClick()
{
	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		command.value = 'commit';
		action = 'reissue.php';
		target = '_self';
		submit();
	}
}

function doBackBtnClick()
{
	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		command.value = 'redraw';
		action = 'reissue.php';
		target = '_self';
		submit();
	}
}

function doCancelBtnClick()
{
	with(document.forms[1])//検索フォームがあるのでダウンロードはforms[1]
	{
		action = 'members.php';
		command.value = 'redraw';
		target = '_self';
		submit();
	}
}
