add directory Ref-docs

This commit is contained in:
gohigh
2024-02-19 00:21:47 -05:00
parent 5a46ddb732
commit ef50495c9d
2492 changed files with 1609142 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<SCRIPT LANGUAGE="JavaScript">
function open_help (text)
{
remote = window.open("","help_window",'toolbar=no,directories=no,menubar=no,status=no,scrollbars=yes,resizable=yes,width=300,height=200');
if (remote.opener == null)
{ remote.opener = this }remote.document.open("text/html");remote.document.write("<html><head><title>Help Window</title>");
remote.document.write('<BODY LINK="#DC460F" VLINK="#8E2323" ALINK="#FF7F00" TEXT=#0000BB BGCOLOR="#FFFFFF">');
remote.document.write(text);
remote.document.write("</body></html>");
remote.document.close();
}
</SCRIPT>
<a href="javascript:open_help('
<p>
<ul>
<li>
Your help text goes here</li>
</ul>');"><img BORDER=0 src="/csq/gifs/smallhelp.gif"></a>