  var howMany = 14
  var quote = new Array(howMany+1)
  quote[0]="Add volume to your media players."
  quote[1]="We do not trust casual listeners."
  quote[2]="We do not develop investment - we invest." 
  quote[3]="Radio where the last becomes the first."
  quote[4]="Listen to music."
  quote[5]="Listen to music in its originality."
  quote[6]="Sleeping reason creates monsters. No time to sleep." 
  quote[7]="In order that blood comes from the nose in the world of show business! (“Cheerful guys”)"
  quote[8]="A special person is very easy to discover. He listens to special radio."
  quote[9]="Love goes along wires."
  quote[10]="Radio where everyone is the first among equal."
  quote[11]="All good is given at a very high price, all the best is given simply so."
  quote[12]="Radio where what was is remembered, and what will be is known."
  quote[13]="Not all that is verse rhymes."
  quote[14]="Do not listen to this radio. Do not upset the relatives."
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.write(quox)
