<!--
function sendForm() {
  with(document.fm) {
	//if (checkdata(munit.value, 0, "申請單位") == false) return;
	if (checkdata(mdeptid.value, 0, "修繕地點") == false) return;
	if (checkdata(marea.value, 0, "修繕位置") == false) return;
	if (checkdata(mitemid.value, 0, "維修項目") == false) return;
	//if (checkdata(mmatain_desc.value, 0, "修繕內容") == false) return;
	if (checkdata(mapply_class.value, 0, "您的班級或單位") == false) return;
	if (checkdata(mapply_name.value, 0, "您的姓名") == false) return;
	if (checkdata(mapply_tel.value, 0, "您的聯絡電話") == false) return;
	/*
	if (checkdata(mapply_email.value, 0, "您的聯絡Email") == false) return;
	if (checkmail(mapply_email.value) == false) {
		alert("E-mail格式不正確！");
		return;		
	}
	*/
//	if (isNaN(parseInt(mord.value)) == true) {
//		alert("顯示順序必須為數字格式！");
//		return;		
//	}
	submit();
  } 
}
-->