function goDim(x)
{
   x.style.color = "#EEFFFF";
   x.style.backgroundColor = "#4a4344";
}

function goLite(x)
{
   x.style.color = "#EEFFFF";
   x.style.backgroundColor = "#0088DD";
}

function hide(id,lbl)
{
	var t=document.getElementById(id)
	if (t.style.display=='none') {
		t.style.display='block';
		lbl.innerHTML='HIDE FILTER';
		}
	else {
		t.style.display='none';
		lbl.innerHTML='SHOW FILTER';
		}
}
