function check_form(obj){
	// 入力チェック
	// お名前
	if(CheckDataByte(obj.name.value, 3, 50) == false){
		// エラー
		alert('Please input your full name.');
		return false;
	}
	// メールアドレス
	if(CheckMailAdd(obj.mailadd.value) == false){
		// エラー
		alert('Please input your e-mail address.');
		return false;
	}
	// 備考
	if(CheckDataByte(obj.bikou.value, 10, 2000) == false){
		// エラー
		alert('Please input the requested information in "Others" field.');
		return false;
	}

	// ここからは必須ではない項目の入力チェック
	if(obj.telno.value != "" && CheckTelNo2(obj.telno.value) == false){
		// エラー
		alert('Please input a vaild telephone number.');
		return false;
	}
	if(obj.dob.value != "" && CheckDofB(obj.dob.value) == false){
		// エラー
		alert('Please input your 8 digit birth of date.');
		return false;
	}

	return true;
}

