<!--
  var howMany = 1
  var quote = new Array(howMany+1)
  
  quote[0]="&nbsp;"
  quote[1]="&nbsp;"


function rndnumber(){
        var randscript = -1
        while (randscript < 0 || randscript > howMany || isNaN(randscript)){
                randscript = parseInt(Math.random()*(howMany+1))
        }
        return randscript
}
     quo = rndnumber()
     quox = quote[quo]

document.writeln('<font face="copperplate gothic bold" color="#00366c">' +quox+ '</font>')


//-->
