/*********************************\
|* 阿假笨笨表单注册认证JS           *|
|* www.webhulian.com             *|
|* @author songs@webhulian.com   *|
|* QQ:79648914                   *|
|* Email:ss423@163.com           *|
\*********************************/
var loginForm = new Form();

loginForm.checkForm = function(theform) {
	var _parent = this;
	_parent.form = theform;
	
	if (!_parent.isUsername(_parent.getText('username'))) {
		alert(Language.Login.err_username);
		theform['username'].focus();
		return false;
	}
	
	if (!_parent.isPassword(_parent.getText('password'))) {
		alert(Language.Login.err_password);
		theform['password'].focus();
		return false;
	}
	
	if (!_parent.isCheckcode(_parent.getText('checkcode'))) {
		alert(Language.Login.err_checkcode);
		theform['checkcode'].focus();
		return false;
	}
	
	return true;
};