function VerifyData(theForm){
	var email = theForm.txtEmail;
	if (checkTextEmpty(email,"\"電郵地址\" 錯誤或未填寫，請再試。")){return false;}

	return true;
}

