function highlight(state,object) {	
	var obj = document.getElementById(object);
	if (state == 'on') {
		obj.style.backgroundColor = "#0000cc";
		obj.style.color = "#ffffff";
	} else {
		obj.style.backgroundColor = "#0066ff";
		obj.style.color = "#ffffff";
	}	
}
