/**
	*检查表单输入是否合法

	*/
function checkForm()
{				
	if(document.thisForm.username.value.length<3)
	{
		alert("用户名不可以小于三个字符!");
		thisForm.username.focus();
		return false;
	}
	if(document.thisForm.password.value.length<3)	
	{
		alert("密码不可以小于三个字符!");
		thisForm.password.focus();
		return false;
	}
//	if(document.thisForm.chkCode.value=="")
//	{
//		alert("登录前请输入验证码!");
//		thisForm.chkCode.focus();
//		return false;
//	}
	document.thisForm.submit();
}

function form_onkeydown()
{
	if(window.event.keyCode==13)
	{
		checkForm();
	}
}