//验证用户
function submitThis() {
    var doc = document.thisForm;
	if(doc.username.value=="")
	  {
	   alert('用户名不能为空！');
	   doc.username.focus();
	   return false;
	   }
   
	else if(doc.password.value=="")
	  {
	  alert('密码不能为空！');
	  doc.password.focus();
	  return false;
	  }	
	  else if(doc.yzm.value=="")
	 {
		  alert('验证码不能为空!');
		  doc.yzm.focus();
		  return false;
	  }
	else{
		doc.submit();
		return true
	}
}