//<!--
function highlight(coll,state){
	if(state==1){
		coll.style.backgroundColor="#ffffcc";
	}else if(state==2){
		coll.style.backgroundColor="#eeeeee";
	}else{
		coll.style.backgroundColor="#ffffff";
	}
}
//-->
