function focusElement( fID, eID )
{
	eval("document."+fID+"."+eID+".focus();");
}

var originalColor;
var originalBGColor;

function hilite( thisElement )
{
originalColor = thisElement.style.color;
originalBGColor = (thisElement.style.background)?thisElement.style.background:"#ffffff";

thisElement.style.color = "#000000";
thisElement.style.background = "#CACACA";
}

function dim( thisElement )
{
thisElement.style.color = originalColor;
thisElement.style.background = originalBGColor;
}

