<!-- Begin
var howMany = 4
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time and I against any two.`` <br> - Spanish Proverb</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Here or henceforward it is all the same to me, I accept Time absolutely.`` <br> - Walt Whitman</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``We are weighed down, every moment, by the conception and the sensation of Time.`` <br> - Charles Baudelaire</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time, you old gypsy man, will you not stay, <br> Put up your caravan, just for one day?`` <br> - Ralph Hodgeson</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time?  What time do you think we have?`` <br> - Saruman The White</font>'
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
num = rndnumber()
rndquot = quote[num]
document.write(rndquot)
// End -->