// Date           June 21, 2001
// Author         Michael Z. Sasaki
// Application    USA Chicago - Cardservice International
// Description    Base Functions
//*********************************************************************
//*********************************************************************
//Style Sheet Class Reference
function textFocusCenter(tcTextField)  {
  var lcClass = 'window.document.formname.' + tcTextField + '.className="textFieldFocus"';
  eval(lcClass);
}
function textBlurCenter(tcTextField) {
  var lcClass = 'window.document.formname.' + tcTextField + '.className="textFieldBlur"';
  eval(lcClass);
}
function textFocusnumber(tcTextField)  {
  var lcClass = 'window.document.formname.' + tcTextField + '.className="textFieldFocusnum"';
  eval(lcClass);
}
function textBlurnumber(tcTextField) {
  var lcClass = 'window.document.formname.' + tcTextField + '.className="textFieldBlurnum"';
  eval(lcClass);
}
