﻿<!--
function sendForm() {
  	with(document.fm) { 
		if (checkdata(mcustname.value, 0, "姓名") == false) return;
		if (checkdata(mtel.value, 0, "聯絡電話") == false) return;
		if (checkNum(mcell.value, 0, "行動電話") == false) return;
		if (cckEmail(memail.value) == false) {
			alert("請輸入正確的電子信箱格式！");
			return;
		}
		if (checkdata(mcity.value, 0, "地址--縣市") == false) return;
		if (checkdata(maddress.value, 0, "地址") == false) return;
		if (mread.checked == false) {
			alert("請確認勾選已經詳細閱讀並且同意個人資料使用條款！");
			return;
		}
		submit();
  	}
}

-->
