<!-- This page contains all javascript code use in the application.  It is "Included" in "top.html"

//For "skipping" from a combo box to a page
function goNav(fE) {
				urlStr = fE.options[fE.selectedIndex].value;
				window.parent.location = urlStr;
			}
			
//---->

//For Hover Colors

function setCellColor(foo,foo2)
{
  foo.bgColor=foo2;
}

//---->

