<!-- Begin
var howMany = 4
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``I wasted time, and now doth time waste me.`` <br> - William Shakespeare</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time is too slow for those who wait, too swift for those who fear, <br> too long for those who grieve, too short for those who rejoice... <br> ...but for those who love, time is eternity.`` <br> - Henry Van Dyke</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Someone once told me that time is a predator that stalks us all our lives. <br> But I rather believe that time is a companion who goes with us on the journey, <br> that reminds us to cherish every moment because they`ll never come again.`` <br> - Captain Jean Luc Picard</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Dost thou love life? Then do not squander time; <br>for that`s the stuff life is made of.`` <br> - Benjamin Franklin</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``By the time we`ve made it, we`ve had it.`` <br> - Malcolm Forbes</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 -->