
var OldFontSize = 0;
var OldColor = 0;

function HiLiteText (theField) {

//   OldFontSize = theField.style.fontSize;
   OldColor = theField.style.color;
//   theField.style.fontSize = 24;
   theField.style.color = "#FF0000";
}

function UnHiLiteText (theField) {

//   theField.style.fontSize = OldFontSize;
   theField.style.color = OldColor;

}

