function Ricerca() {
var stringa = document.modulo.cerca.value.toUpperCase();
if ((stringa == "") || (stringa == "undefined")) {
risultati.innerHTML = "<font class=testo>Inserire un termine per eseguire una ricerca</font>";
return false;
}
id_database.recordset.moveFirst();
var estrai = "";
while (!id_database.recordset.EOF) {
var titolo = id_database.recordset("descrizione").value.toUpperCase();
if (titolo.indexOf(stringa) >= 0) {
estrai += "<div align=left><table width=100% height=0 border=0 cellpadding=1 cellspacing=1><tr><td rowspan=2 width=0><img src=../images/space.gif width=5 height=1></td><td height=0 width=100%><a class='oro' href=" + id_database.recordset("url") + ">"
+ id_database.recordset("titolo")
+ "</a></td></tr><tr><td height=0 width=100%><font class=testo>" + id_database.recordset("testo")
+ "<hr size=1 width=100% style=color:#F1F1F1></td></tr></table></div>";
}
id_database.recordset.moveNext();
}
if ((estrai == "") || (estrai == "undefined")) {
risultati.innerHTML = "<font class=testo>Nessun risultato per la ricerca</font>";
return false;
}
else {
risultati.innerHTML = estrai;
}
}


function finestra(immagine,larghezza,altezza) 
{
        ApriFinestra = window.open(immagine,'da_aprire','scrollbars=no,resizable=no,status=no,location=no,toolbar=no,top=10px,left=10px,width='+larghezza+',height='+altezza);
}



function controlla()
{
var stringa = document.guestbook.Nome.value;
if (stringa.indexOf("<") != (-1))
{
alert("Non è consentito l'inserimento di codice html");
document.guestbook.Nome.value = stringa.substring(0,(stringa.length - 1));
}
}
function controlla2()
{
var stringa = document.guestbook.Titolo.value;
if (stringa.indexOf("<") != (-1))
{
alert("Non è consentito l'inserimento di codice html");
document.guestbook.Titolo.value = stringa.substring(0,(stringa.length - 1));
}
}
function controlla3()
{
var stringa = document.guestbook.Email.value;
if (stringa.indexOf("<") != (-1))
{
alert("Non è consentito l'inserimento di codice html");
document.guestbook.Email.value = stringa.substring(0,(stringa.length - 1));
}
}
function controlla4()
{
var stringa = document.guestbook.Messaggio.value;
if (stringa.indexOf("<") != (-1))
{
alert("Non è consentito l'inserimento di codice html");
document.guestbook.Messaggio.value = stringa.substring(0,(stringa.length - 1));
}
}
function controlla5()
{
var stringa = document.guestbook.Luogo.value;
if (stringa.indexOf("<") != (-1))
{
alert("Non è consentito l'inserimento di codice html");
document.guestbook.Luogo.value = stringa.substring(0,(stringa.length - 1));
}
}







