// JavaScript Document
<!--會員登入檢查：登入頁-->
function mem_login_formchk(){
	if (document.mem_login.mid.value=="") {
		alert("帳號未填寫！");
		document.mem_login.mid.focus();
		return false;
	}
	if (document.mem_login.pwd.value=="") {
		alert("密碼未填寫！");
		document.mem_login.pwd.focus();
		return false;
	}
}
<!--會員登入檢查：首頁-->
function index_login_formchk(){
	if (document.index_login.mid.value=="") {
		alert("帳號未填寫！");
		document.index_login.mid.focus();
		return false;
	}
	if (document.index_login.pwd.value=="") {
		alert("密碼未填寫！");
		document.index_login.pwd.focus();
		return false;
	}
}
<!--商品搜尋檢查-->
function shop_search_formchk(){
	if (document.shop_search.sertext.value == "") {
		alert("請輸入商品名稱或關鍵字！");
		document.shop_search.sertext.focus();
		return false;
	}
}
function inpsk(){
	document.shop_search.sertext.value="";
	document.shop_search.sertext.focus();
	}
<!--聯絡我們檢查-->
function ser_mail_formchk(){
	if (document.ser_mail.mname.value=="") {
		alert("姓名未填寫！");
		document.ser_mail.mname.focus();
		return false;
	}
	if (document.ser_mail.msubject.value=="") {
		alert("主旨未填寫！");
		document.ser_mail.msubject.focus();
		return false;
	}
	if (document.ser_mail.mcontent.value=="") {
		alert("內容未填寫！");
		document.ser_mail.mcontent.focus();
		return false;
	}
	if (document.ser_mail.mmail.value=="") {
		alert("E-mail未填寫！");
		document.ser_mail.mmail.focus();
		return false;
	}
}
<!--會員資料檢查-->
function shop_paycheck_formchk()
{
	if (document.shop_paycheck.pay_name.value=="") {
		alert("請填入收件者姓名");
		document.shop_paycheck.pay_name.focus();
		return false;
		}
	if (document.shop_paycheck.pay_addr.value=="") {
		alert("請填入收件者住址");
		document.shop_paycheck.pay_addr.focus();
		return false;
		}
	if (document.shop_paycheck.pay_tel.value==0) {
		alert("請填入您的電話");
		document.shop_paycheck.pay_tel.focus();
		return false;
		}
	if (document.shop_paycheck.pay_email.value=="") {
		alert("請填入您的E-mail");
		document.shop_paycheck.pay_email.focus();
		return false;
		}
}