function checkLogin(theForm) {
    if(theForm.uid.value=='') {
      alert('請輸入會員帳號');
      theForm.uid.focus();
      return false;
    }
    if(theForm.passwd.value=='') {
      alert('請輸入會員密碼');
      theForm.passwd.focus();
      return false;
    }
}
