function chUpdate(){
var count = top.DATA.chAry.length;
for(var i=0; i < count; i++){
		Update(top.DATA.chAry[i]);
	
}
}//

function Update(chElement){
if(!document.getElementById)return;
var element = document.getElementById(chElement.name).getElementsByTagName('span')[0];
var onColor = '#33FF00';
var offColor = '#FF0000';

if(chElement.status){
element.style.backgroundColor = onColor;
element.innerHTML = chElement.user;
}else{
element.style.backgroundColor = offColor;
}
}//



