function sel(item, flg)
{
	if (flg) {
		item.style.backgroundColor = "#888888";
	} else {
		item.style.backgroundColor = "#555555";
	}
}

