function login_submit(){
	// idが入力されていて、20文字以内でなければ
	if($F('id').length < 1 || $F('id').length > 20 || is_notmb($F('id'))){
		alert("IDは半角英数字のみ、最長20文字までで入力してください。");
		$('id').focus();

	// パスワードが4~20以内でなければ
	}else if($F("pw").length < 4 || $F("pw").length > 20 || is_notmb($F("pw"))){
		alert("パスワードは半角英数字のみ、4～20文字までで入力してください。");
		$("pw").focus();

	}else{
		form.submit();
	}
}

