﻿function showCheckCode(){
	var codepath=document.getElementById('checkcode_img').src;
	if(codepath.indexOf('blank.gif')!=-1){
      document.getElementById('checkcode_img').src='http://www.5-edu.com/SmallImageCode';
    } 	
}
function checkLogin(obj){
	with(obj){
		if(UserId.value.length > 25 || UserId.value.length < 3){
			alert("用户名3-25位字符");
			UserId.focus();
			UserId.select();
			return false;
		}
		else if(UserPass.value==""){
			alert("密码不能为空");
			UserPass.focus();
			UserPass.select();
			return false;
		}		
		else if(CertCode.value==""){
			alert("验证码不能为空");
			CertCode.focus();
			CertCode.select();
			return false;
		}else{
			
		}
		return true;
	}
}
function checkSearch(obj){
	obj.submit();
}
