<!-- Begin
var howMany = 3
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``There is no difference between time and any of the three dimensions of space <br> except that our consciousness moves along it.`` <br> - H. G. Wells</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``...there never seems to be enough time, <br> To do the things you want to do, once you find them.`` <br> - Jim Croce</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time stays long enough for anyone who will use it.`` <br> - Leonardo Da Vinci</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">```Time is money.`&nbsp;&nbsp;Is that the truth?&nbsp;&nbsp;You save and make both, it`s said, but... <br> ...RUN OUT of money, you can go get more, <br> RUN OUT of time, you`re dead!``&nbsp;&nbsp;&nbsp;&nbsp; <br> - Hugh Shaw</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 -->