function ShowFieldHelp(CallerName,text)
{

n = (document.layers) ? 1:0
ie = (document.all) ? 1:0


var windowlink ="<A HREF=\"javascript:ShowHelpWindow('help/"+CallerName+"_Hint.htm');\"><Font Size=-2>|Show More| </Font></A>"
var newText = "<TABLE BORDER=0 WIDTH=100% BGCOLOR=#999966 CELLPADDING=0 CELLSPACING=0 CLASS=bdrOut><TR><TD><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=3 width=100%><TR><TD VALIGN=TOP BGCOLOR=#999966 CLASS=bgTop ALIGN=CENTER height=22> Input Help </TD></TR></TABLE><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=3 width=100% CLASS=bgBot><TR><TD VALIGN=TOP BGCOLOR=#cccc99>" + windowlink + text + "</TD></TR></TABLE></TD></TR></TABLE>"
if (n)
  {
  parent.frames.help.document.layers['helpText'].document.write(newText)
  parent.frames.help.document.layers['helpText'].document.close()
  }
else if (ie)
  {
  parent.frames.help.document.all['helpText'].innerHTML = newText;
  }
}
