function explain(the_text)
{
pw = window.open("", "pw", "toolbar=no,status=yes,scrollbars=yes,location=no,menubar=no,directories=no,resizable=yes");
screenw=screen.width;

pwh = 300;
pww = 400;
if (pwh > window.availHeight) 
  {
  pwh=window.availHeight;
  }
if (pww > window.availWidth)
  {
  pww=window.availWidth;
  }
pw.window.resizeTo(pww,pwh);
pw.window.moveTo(100,50);


pw.document.writeln("<html><head><style>");
pw.document.writeln("<!--");
pw.document.writeln("body { font-family: Arial; font-size: 10pt;");
pw.document.writeln("       color: #000000; background-color: #FFFFFF;");
pw.document.writeln("-->");
pw.document.writeln("</style>");
pw.document.writeln("<title>Wadleynet Search Help</title></head>");
pw.document.writeln("<body link=\"#FFFFFF\" vlink=\"#C0C0C0\">");
pw.document.writeln("<form name=\"POPFORM\">");
pw.document.writeln(the_text + "<br />");
pw.document.writeln("<input type=Button name=\"focusbutton\" onClick=\"window.close()\" value=\"close\">");
pw.document.writeln("</form>");


pw.document.writeln("</body>");
pw.document.writeln("</html>");
pw.document.focus();
pw.document.close();
}
