function chkAll(){
	
	document.getElementById("addconfirm").disabled=true;
	//检测公司名称信息
	if ( Do.these('companyName'
								
								,function(){return isEmpty('companyName','span_companyName')}
								 ) == false )
	{
		return false ;
	}
	
	if ( Do.these('youDomain'
								
								,function(){return isEmpty('youDomain','span_youDomain')}
								 ) == false )
	{
		return false ;
	}
	
	
	
	if ( Do.these('orderYear'
								
								,function(){return isEmpty('orderYear','span_orderYear')}
								,function(){return isNumber('orderYear','span_orderYear','请输入数字')}
								 ) == false )
	{
		return false ;
	}
	
	
	
	if ( Do.these('email'
								
								,function(){return isEmpty('email','span_email')}
								,function(){return checkMail('email','span_email')}
								 ) == false )
	{
		return false ;
	}


	if ( Do.these('tel'
								,function(){return isEmpty('tel','span_tel')}
								,function(){return CheckContentLen('tel','span_tel','6-13')}
								,function(){return isNumber('tel','span_tel','请输入数字')}) == false )
	{
		return false ;
	}
	
	
	
	if ( Do.these('review'
								
								,function(){return isEmpty('review','span_review')}
								 ) == false )
	{
		return false ;
	}
	
	
	
	

	
	//检测用户真实姓名
//	if ( Do.these('RealName'
//								,function(){return isEmpty('RealName','span_RealName')}
//								,function(){return CheckContentLen('RealName','span_RealName','2-30')}) == false )
//	{
//		return false ;
//	}
	
		//检测用户真实姓名
//	if ( Do.these('tel'
//								,function(){return isEmpty('tel','span_tel')}
//								,function(){return CheckContentLen('tel','span_tel','6-10')}
//								,function(){return isNumber('tel','span_tel','请输入数字')}) == false )
//	{
//		return false ;
//	}
	
	//检测password
//	if ( Do.these('UserPassword'
//								,function(){return isEmpty('UserPassword','span_UserPassword')}
//								,function(){return CheckContentLen('UserPassword','span_UserPassword','5-16')}) == false )
//	{
//		return false ;
//	}
	
	
	//检测password
//	if ( Do.these('cUserPassword'
//								
//								,function(){return isReEnter('cUserPassword','span_cUserPassword','UserPassword')}) == false )
//	{
//		return false ;
//	}
	
	document.getElementById("addconfirm").disabled=false;
	return true ;
}