/* 

        Optimized by Daniel Bergman [http://botw.cjb.net].

        Java Search Engine
        (c)1997 Adam ALLEN.
        Version 2.0
                You may use this search engine on your page, but keep this 
                notice intact, and at the bottom of leave the Copyright notice at
                the bottom of this page.
                This scripts is my property, so please honnour my requests,
                If you do so, you may freely copy, distribute, give this scripts
                But it will FOREVER REMAIN MY PROPERTY.
        This is the first Java Script that I have wrote, and am proud of it,
        I feel pleased that I can contribute back to the bank of JavaScripts
        that I have used on my page from other people, AN EYE FOR AN EYE!
*/

    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] = 50

// 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] = "project"
Descrip[1] = "Microsoft Project, Dot Project, Project Builder, EPM Microsoft Project"
Address[1] = "parceiros.html"

Keyword[2] = "Dot"
Descrip[2] = "Microsoft Project, Dot Project, Project Builder, EPM Microsoft Project"
Address[2] = "parceiros.html"

Keyword[3] = "Builder"
Descrip[3] = "Microsoft Project, Dot Project, Project Builder, EPM Microsoft Project"
Address[3] = "parceiros.html"

Keyword[4] = "EPM"
Descrip[4] = "Microsoft Project, Dot Project, Project Builder, EPM Microsoft Project"
Address[4] = "parceiros.html"

Keyword[5] = "methodware"
Descrip[5] = "Saiba mais sobre a Methodware"
Address[5] = "methodware.html"

Keyword[6] = "Beware"
Descrip[6] = "Saiba mais sobre a Beware"
Address[6] = "empresa.html"

Keyword[6] = "Beware"
Descrip[6] = "Saiba mais sobre a Beware"
Address[6] = "empresa.html"

Keyword[6] = "Beware"
Descrip[6] = "Saiba mais sobre a Beware"
Address[6] = "empresa.html"

Keyword[6] = "Beware"
Descrip[6] = "Saiba mais sobre a Beware"
Address[6] = "empresa.html"

Keyword[6] = "Beware"
Descrip[6] = "Saiba mais sobre a Beware"
Address[6] = "empresa.html"

    function checkDatabase() {

      var Found = false
      var Item = document.forms[0].searchfor.value.toLowerCase();

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>Resultado da busca</title></head>");
MsgBox.document.write ("<body bgcolor=white text=black link=blue vlink=darkblue alink=blue><H2><CENTER><font face=arial>Resultado da busca</CENTER></H2>") 
MsgBox.document.write ("<font size=3><b><center>Busca por :  "+Item+"</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 color=arial><font size=2><b>"+Descrip[i]+"<BR><A HREF="+Address[i]+" target='iframe01'>Clique aqui para acessar</A></font></font>") 

        }
      }
      if(!Found)
MsgBox.document.write ("<center>Nada encontrado.</center>")
// Leave the line below intact if you want to legally use this script

     }
    
// -->
