<!-- hide

function useNote() {

  // creates a popup window with the
  // text which was entered into the text element

  myWin= open("", "useNote", 
    "width=600,height=480");

  // open document for further output
  myWin.document.open();
  
  // create document
  myWin.document.write("<HTML><HEAD><TITLE>Locating missing objects</TITLE></HEAD>");
  myWin.document.write("<body><font size=+2>");
  myWin.document.write("NOTE:<BR><BR>");
  myWin.document.write("If you entered this site at this page, ");
  myWin.document.write("rather than entering through the home page, ");
  myWin.document.write("you should review the info in the <a href='../DISCLAIM.htm' target='Disclaimer_and_Warnings'>@GENERAL DISCLAIMER</a> document ");
  myWin.document.write("or in the <A HREF='../../wsn5EF8.html' target='Files'>main files entry</A> document ");
  myWin.document.write("before downloading and attempting to compile this code. ");
  myWin.document.write("<P>This directory, like many directories at this site, might not contain all objects needed to compile the source code here. ");
  myWin.document.write("The index window available from either of the above pages can be used to locate all referenced objects. ");
  myWin.document.write("<P>This directory <B>only</B> contains objects <B>unique</B> to this README page. ");
  myWin.document.write("Objects used in multiple functions will be found in other directories.<P> ");
  myWin.document.write("<i>Make certain you locate all necessary objects.</i>");
  myWin.document.write("</font>");
  myWin.document.write("</body></html>");

  // close the document - (not the window!)
  myWin.document.close();  
}

// -->

