/*
==============================================================================
方法名        : joinclick()
作用          : 
作者          : 乔磊
Email         : xiaozhu_42@163.com
------------------------------------------------------------------------------
时间          :
==============================================================================
*/
function joinclick() {
	
	window.location.href = "join-us.php";
}
/*
==============================================================================
方法名        : checkAll()
作用          : 判断数据是否合法
作者          : 乔磊
Email         : xiaozhu_42@163.com
------------------------------------------------------------------------------
时间          :
==============================================================================
*/
function checkAll(){
	with(document.indexForm){
		
		//帐号名称
		if(consumerUserName.value == "" || consumerUserName.value == null) {
			
			alert(" User ID  is null ！");
			consumerUserName.focus();
			return false;
		}
		//密码
		if(consumerPassWord.value == "" || consumerPassWord.value == null) {
			
			alert(" User PassWord is null ！");
			consumerPassWord.focus();
			return false;
		}
	}
		return true;
}
