
   <!-- Hide Script from Old Browsers
    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] = "tuscany"
Descrip[1] = "TUSCANY HOMEPAGE"
Address[1] = "tuscany/home.htm"

Keyword[2] = "tuscany"
Descrip[2] = "Tuscany » SIENA "
Address[2] = "tuscany/siena/home.htm"

Keyword[3] = "tuscany"
Descrip[3] = "Tuscany » FLORENCE "
Address[3] = "tuscany/florence/home.htm"

Keyword[4] = "tuscany"
Descrip[4] = "Tuscany » MONTEPULCIANO"
Address[4] = "tuscany/siena/montepulciano.htm"

Keyword[5] = "tuscany"
Descrip[5] = "Tuscany » SAN GIMIGNANO"
Address[5] = "tuscany/siena/sangimignano.htm"

Keyword[6] = "tuscany"
Descrip[6] = "Tuscany » CHIANTI"
Address[6] = "tuscany/florence/greveinchianti.htm"

Keyword[7] = "siena"
Descrip[7] = "SIENA homepage"
Address[7] = "tuscany/siena/home.htm"

Keyword[8] = "florence"
Descrip[8] = "FLORENCE HOMEPAGE"
Address[8] = "tuscany/florence/home.htm"

Keyword[9] = "san gimignano"
Descrip[9] = "SAN GIMIGNANO HOMEPAGE"
Address[9] = "tuscany/siena/sangimignano.htm"

Keyword[10] = "tuscany"
Descrip[10] = "Tuscany » SAN GIMIGNANO"
Address[10] = "tuscany/siena/sangimignano.htm"

Keyword[11] = "chianti"
Descrip[11] = "CHIANTI » GREVE IN CHIANTI"
Address[11] = "tuscany/florence/greveinchianti.htm"




    function checkDatabase() {

      var Found = false
      var Item = document.forms.ricerca.searchfor.value.toLowerCase();

stats='toolbar=no,location=no,directories=no,status=no,menubar=no,height=300,width=400,'
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=#ffffff text=#FF0000 link=green vlink=blue alink=red><CENTER><H3><font face=Verdana>Search Results:</H3>") 
MsgBox.document.write ("<font size=3><center>For the Keyword:<br><B>  "+Item+"</B></center><hr width=50%></font></CENTER>");
        for (var i=1; i <= Keyword[0]; i++) {
        if(Item == Keyword[i]) {
          Found = true;
         MsgBox.document.write ("<li><font face=arial><font size=2>"+Descrip[i]+"<BR><A HREF="+Address[i]+" target='opener'>Click here to open the web page</A></font></font>") 

        }
      }
      if(!Found)
MsgBox.document.write ("<font color=red><H4> Error 404: Page Not Found, Oops! The page you have requested may have been moved or renamed. Please select from the  main menu options to find the place you're looking for. Thank you for your time. </H4></font>")

// 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=red><INPUT type='button' value='Close' onClick = 'self.close()'></font></font>") 
MsgBox.document.write ("</FORM>")

     }
	 

	 
    //    --> 


