    Keyword = new Object();
    Descrip = new Object();
    Address = new Object();

// Keyword[0] = n  (where n is the number of keywords which can be searched
Keyword[0] = 16

// Each entry is split into
// Keyword[n] = text (where text is the keyword of which the entry is to
// be searched by  (type Keywords in lowercase)
// Descrip[n] = text (where text is the description associated to this entry
// Address[n] = text (where text is the URL associated to the entry
//  n is the entry number.

Keyword[1] = "Mission"
Descrip[1] = "Download Mission!"
Address[1] = "Mission.php"

Keyword[2] = "ISC"
Descrip[2] = "Investor Service Center!"
Address[2] = "ISC.php"

Keyword[3] = "PWR"
Descrip[3] = "Public Works!"
Address[3] = "PWR.php"

Keyword[3] = "OSS"
Descrip[3] = "One Stop Shop!"
Address[3] = "About%20OSS.php"

Keyword[3] = "LA"
Descrip[3] = "Land Authority!"
Address[3] = "Land.php"

    function checkDatabase() {

      var Found = false
      var Item = document.forms[0].searchfor.value.toUpperCase();

stats='toolbar=no,location=no,directories=no,status=no,menubar=no,height=300,width=300,'
stats += 'scrollbars=yes,resizable=yes' 
MsgBox = window.open ("","msgWindow",stats) 
MsgBox.opener = window;
MsgBox.opener.name = "opener";
MsgBox.document.write("<head><title>Search Results</title></head>");
MsgBox.document.write ("<body bgcolor=white  link=blue vlink=darkblue alink=blue><H2><CENTER><font color=#0022aa face=arial>Search Aden Website</font></CENTER></H2>") 
MsgBox.document.write ("<font  color=#0022aa size=3><b><center>For the keyword:  <font color=red size=3>"+Item+"</font></center><hr width=50%></b></font>");
        for (var i=1; i <= Keyword[0]; i++) {
        if(Item == Keyword[i]) {
          Found = true;
         MsgBox.document.write ("<li><font face=arial><font size=2><b>"+Descrip[i]+"<BR><A HREF="+Address[i]+" target='opener' onClick = 'self.close()'>Click Here To Go There</A></font></font>") 

        }
      }
      if(!Found)
MsgBox.document.write ("<H4>Nothing Found</H4>")
// Leave the line below intact if you want to legally use this script
MsgBox.document.write ("<FORM><CENTER>") 
MsgBox.document.write ("<font size=2><font color=arial><INPUT type='button' value='Close' onClick = 'self.close()'></font></font>") 
MsgBox.document.write ("</CENTER></FORM>")
MsgBox.document.write ("<H6><small><small><small><b></b><font color=white><font face=arial><font size=1><font color=black></font></font></small></small></small>")
// There must be my notice above if you are to use this script legally.
// It took many hours work, fairs is fair, I just want that little line in
// and you get a fully working Search ENGINE, for FREE, on your site
// In Java Scripts as well, and not crap JAVA!
// Also a copyright notice MUST appear with the form.
     }
    //    --> 
    
    
