function hl(o,s) {
	if (s) {
		o.style.backgroundColor = '#f7f7f7';
	} else {
		o.style.backgroundColor = '#FFFFFF';
	}
}

function set_item_id(o) {
	var element_o = document.getElementById(o);
	element_o.style.display = element_o.style.display ? '' : 'none';
}