<!--
  var quoteStr;
  var quoteNum;
  var quoteDis;
  var quoteLen;
  var quoteLoc;
  var quotePic;
  var quoteMax;
  var numQuote;
  var charDelay;
  var quoteDelay;
  var delayCntr;

  // Copyright 2001 by mediaplus.it
  // info@mediaplus.it

 function funcQuote() {
   this[0] = "MediaPlus - Servizi WEB e Applicazioni Multimediali";
   this[1] = "Realizzazione di Siti WEB interattivi.";
   this[2] = "Hosting dedicato.";
   this[3] = "Registrazione domini .it .com .net .info .biz e altro.";
   this[4] = "Realizzazione cataloghi on-line.";
   this[5] = "Realizzazione siti di e-commerce.";
   this[6] = "Realizzazione CD Multimediali.";
   this[7] = "Realizzazione Cataloghi su CD.";
   this[8] = "Visita il nostro sito per maggiori informazioni.";
   this[9] = "Posizionamento su motori di ricerca.";
   this[10] = "Internet advertising.";
   this[11] = "Realizzazione portali tematici.";
   this[12] = "Supporto WAP.";
   this[13] = "Supporto WEBMAIL.";
   this[14] = "Pagamenti sicuri on-line.";
   this[15] = "Vuoi degli esempi?";
   this[16] = "Visita i siti:";
   this[17] = "www.ceramicadicaltagirone.it";
   this[18] = "www.ceramicart.it";
   this[19] = "www.ceramichecear.it";
   this[20] = "www.fratelliscalzo.it.";
   this[21] = "www.villatasca.it";
   this[22] = "www.dellaquila.ct.it";
   this[23] = "www.mediaplus.it";
   this[24] = "www.ceramichegiraffa.it";
   this[25] = "Scambio banner";
   this[26] = "Streaming audio/video.";
   this[27] = "Applicazioni avanzate";
   this[28] = "Realizziamo le tue idee";
  }
  function getQuote() {
   delayCntr = delayCntr + 1;
   quoteLoc = quoteLoc - 1;
   if (delayCntr > quoteDelay) {
      delayCntr = 100;
      quoteLen = 0;
      quoteLoc = 0;
      quoteNum = Math.floor(Math.random() * numQuote);
      quoteStr = makeQuote[quoteNum];
      quoteLen = quoteStr.length;
      quoteMax= quoteStr.length;
      padQuote();
   }
  }

  function disQuote() {
   quoteLoc = quoteLoc + 1;
   if (quoteLoc > quoteMax) {
    if (delayCntr > 50) {
      delayCntr = 0;
    }
    getQuote();
   }
   quoteDis = quoteStr.substring(0, quoteLoc);
   for (var i = quoteLoc; i < quoteMax; i++){
    var charone;
    charone = quoteStr.substring(i, i + 1);
    var rdnum;
    rdnum = Math.floor(Math.random() * 57)
    quoteDis = "" + quoteDis + quotePic.substring(rdnum, rdnum + 1);
   }
  }
  function padQuote () {
   var spacePad = quoteMax - quoteStr.length;
   var frontPad = Math.floor(spacePad / 2);
   for (var i = 0; i < frontPad; i++) {
    quoteStr = " " + quoteStr;
   }
   for (var i = quoteStr.length; i < quoteMax; i++) {
    quoteStr= "" + quoteStr + " ";
   }
  }
  function loopQuote() {
   document.all.txt1.innerHTML="<span class=tao10blu>"+quoteDis+"</span>";
   disQuote();
   setTimeout ("loopQuote();", charDelay);
  }
  function startQuote() {
   quoteStr = "";
   quoteNum = 0;
   quoteDis = "";
   quoteLen = 0;
   quoteLoc = 0;
   quotePic = "abcdefghjkmnopqrstuvwxyzABCEDEFGHJKLMNOPQRSTUVXYZ234567890";
   quoteMax = 70;
   numQuote = 29;
   delayCntr=100;
   charDelay = 50;
   quoteDelay = 50;
   makeQuote = new funcQuote();
   getQuote();
   disQuote();
   loopQuote();
  }

startQuote()
//-->
