//---------------------------------------------------------------------------
// 最新地域ニュース用
//---------------------------------------------------------------------------

function check_func(s_min, s_max) {

	if (document.regist_check_form.title.value == "") {
		alert("ニュースタイトルを入力してください。");
		document.regist_check_form.title.focus();
		return false;
	}
	if (document.regist_check_form.main_copy.value == "") {
		alert("ニュース本文を入力してください。");
		document.regist_check_form.main_copy.focus();
		return false;
	}
	var cate_wk;
	if(!document.regist_check_form.cate_id.length) {
		if (document.regist_check_form.cate_id.checked) {
			cate_wk = 1;
		}
	} else {
		for (i = 0; i < document.regist_check_form.cate_id.length; i++) {
			if (document.regist_check_form.cate_id[i].checked) {
				cate_wk = 1;
			}
		}
	}
	if(!cate_wk) {
		alert("カテゴリーを選択してください。");
		return false;
	}
	if (document.regist_check_form.add_name.value == "") {
		alert("登録者名を入力してください。");
		document.regist_check_form.add_name.focus();
		return false;
	}
	if (document.regist_check_form.mail_address.value == "") {
		alert("メールアドレスを入力してください。");
		document.regist_check_form.mail_address.focus();
		return false;
	} else if (!document.regist_check_form.mail_address.value.match(/^[A-Za-z0-9]+[\w\.-]+@[\w\.-]+\.\w{2,}$/)) {
		alert("メールアドレスの書式に誤りがあります。\nを正しく入力してください。");
		document.regist_check_form.mail_address.focus();
		return false;
	}

}


