function bbs_checkForm(){
var error_text='';
var isok = true;
if (document.bbs_loginForm.password.value =="" ){
error_text += "请输入您的密码\n";
document.bbs_loginForm.password.focus() ;
isok = false;
}
if (document.bbs_loginForm.username.value =="" ){
error_text += "请输入您的用户名\n";
document.bbs_loginForm.username.focus() ;
isok = false;
}
if (! isok) {
alert(error_text);
return false;
}
return true;
}