﻿//获取页面指定ID公用函数
function GE(a){return document.getElementById(a);}
function checkform()
{
		if (document.getElementById("username").value == ''){
			alert("请填写您的会员名。");
		    GE("username").focus();
		    return false;
		}
		var psd1=GE("passwd1").value;
		if (psd1=="")
	    {
		    alert("请您填写登录密码。")
		    GE("passwd1").focus();
		    return false;
		}
		/*if (document.getElementById("verycode").value == '' || document.getElementById("verycode").value.length!=4){
			alert("校验码不正确，请重新填写。");
		    GE("verycode").focus();
		    return false;
		}*/
}
function setFocus() {
 if (GE("username").value == null || GE("username").value == "") { 
      GE("username").focus();
    } else {
      GE("passwd1").focus();
    }
}