');
function CheckLoginForm(this_form) {
if (this_form.username.value == '') {
alert("用户名不能为空, 请重新输入!");
this_form.username.focus();
return false
}
if (this_form.password.value == '') {
alert("密码不能为空, 请重新输入!");
this_form.password.focus();
return false;
}
return true;
}
document.writeln('
');
document.writeln('
');