function FormLogin() { if (document.login.LoginName.value =="") { alert("请选择登陆名!"); document.login.LoginName.focus(); return false; } if (document.login.LoginPassword.value =="") { alert("请选择登陆密码!"); document.login.LoginPassword.focus(); return false; } document.login.submit(); } document.writeln("
"); document.writeln(" 学员名"); document.writeln(" "); document.writeln(" 密码"); document.writeln(" "); document.writeln(" "); document.writeln(" "); document.writeln(" "); document.writeln(" <\/form>");