// JavaScript Document
//用户登录
function _Index_User_Check_Login(){
	_User_Login =  document.form1
	if (_User_Login.username.value==""||_User_Login.username.value.charAt("0")==" "){
		alert("用户名没有填写！");
		_User_Login.username.focus();
		return false;
	}
	if (_User_Login.password.value==""||_User_Login.password.value.charAt("0")==" "){
		alert("密码没有填写！");
		_User_Login.password.focus();
		return false;
	}
	else
	_User_Login.disabled = true;
	return true;	
}
//职位搜索
