function check(theForm) { if(theForm.userName.value=='') { alert("請輸入帳號"); theForm.userName.focus(); return false; } if(theForm.password.value=='') { alert("請輸入密碼"); theForm.password.focus(); return false; } } document.write('