<!-- Begin
var howMany = 4
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``I recommend to you to take care of the minutes; for hours will take care of themselves.`` <br> - Lord Chesterfield</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time goes, you say?&nbsp;&nbsp; Ah, no! &nbsp;&nbsp;Alas, Time stays, we go.`` <br> - Austin Dobson</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``We must use time as a tool, not as a crutch.`` <br> - John F. Kennedy</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``For tribal man space was the uncontrollable mystery. <br>For technological man it is time that occupies the same role.`` <br> - Marshall McLuhan</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Like as the waves make towards the pebbl`d shore, <br>so do our minutes hasten to their end.`` <br> - William Shakespeare</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 -->
