<!--
function Juge(theForm)
{	
	if(theForm.username.value=="")
    {
        alert("请输入用户名！");
        theForm.username.focus();
        return false;
    }else{
        var re=/^[0-9a-zA-Z]+$/; //只输入汉字的正则
        if(theForm.username.value.search(re)==-1)
        {
            alert("输入用户名必须为数字或字母！");
            theForm.username.focus();
            return false;
        }
    }
	if (theForm.password.value=="") 
    {
    alert("请输入密码！");
    theForm.password.focus();
    return (false);
	}	
}
//-->
