function CheckPrice(theForm) {

	txt = theForm.price.value;
	if ( (txt.match(/[^,|^0-9]/g)) ){
	
		alert('価格は半角数字で入力してください。');
		theForm.price.focus();
		return false;
	}
	else {
		return true;
	}
}

