    Keyword1= new Object();
    Descrip = new Object();
    Address = new Object();

// Keyword[0] = n  (where n is the number of keywords which can be searched
Keyword1[0] = 100

// 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.

Keyword1[1] = "travel"
Descrip[1] = ""
Address[1] = "../html/travel.htm"

Keyword1[2] = "legends"
Descrip[2] = ""
Address[2] = "../html/legends.htm"

Keyword1[3] = "kolkata tour"
Descrip[3] = ""
Address[3] = "../html/kolkata tour.htm"

Keyword1[4] = "history"
Descrip[4] = ""
Address[4] = "../html/history.htm"

Keyword1[5] = "nurshing home"
Descrip[5] = ""
Address[5] = "../html/medicare.htm"

Keyword1[6] = "blood bank"
Descrip[6] = ""
Address[6] = "../html/medihelp.htm"

Keyword1[7] = "railways"
Descrip[7] = ""
Address[7] = "../html/railways.htm"

Keyword1[8] = "north dinajpur"
Descrip[8] = ""
Address[8] = "../html/north_dinajpur.htm"
   function checkDatabase() {

      var Found = false
      var Item = document.forms[0].srchtxtbx.value.toLowerCase();
	  
stats='toolbar=no,location=no,directories=no,status=no,menubar=no,width=300,height=300' 
stats += 'scrollbars=yes,resizable=yes' 
MsgBox = window.open ("","msgWindow",stats) 
MsgBox.document.write("<head><title>Close this window to return to Adam's HomePage</title></head>");
MsgBox.document.write ("<BODY BACKGROUND=back.jpg BGCOLOR=#C0C0C0 TEXT=#000000 LINK=#000080 VLINK=#800040 ALINK=#FF0000><H2><CENTER>Search Results</CENTER></H2>") 
MsgBox.document.write ("<H3>For the keyword:  "+Item+"<HR>");
        for (var i=1; i <= Keyword1[0]; i++) {
  	if(Item == Keyword1[i]) {
	  Found = true;
	 MsgBox.document.write ("<H4>"+Descrip[i]+"<BR><A HREF="+Address[i]+">Click Here To View</A></H4>") 

        }
      }
      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 ("<INPUT type='button' value='Close' onClick = 'self.close()'>") 
MsgBox.document.write ("</CENTER></FORM>")     }
    //    -->
	function rfresh()
	{
	document.forms[0].srchtxtbx.value="";
	}