function goLite(obj)
{
   obj.style.backgroundColor = "#BBBBBB";
}
			
function goDim(obj)
{
   obj.style.backgroundColor = "#FFFFFF";
}
		
function setSelectedItem(list,toMatch) {
	for (var intI = 0; intI < list.length ; intI++) {
				if (list.options[intI].value == toMatch) {
	  		list.options[intI].selected = true;
		}
	}
}	

