function checkmoney(){
	var money_j = document.mainForm.money_f.value;
	if(isNaN(money_j)){
		alert("恐れ入りますが、限度額は半角数字で入力してください。");
		document.mainForm.money_f.value = "";
		document.mainForm.money_f.focus();
	}
}
