document.write('<font face="arial" size="3" color="black">');
document.write('<center>');


var howMany = 5
var quote = new Array(howMany+1)

quote[0]="<font color=008000><strong>You can think it, you can do it.<br>(Walt Disney)</strong></font>"
quote[1]="<font color=blue><strong>Imagination is most important than knowledge.<br>(Einstain)</strong></font>"
quote[2]="<font color=ff00ff><strong>The one more know, more doubt.<br>(Pio IX)</strong></font>" 
quote[3]="<font color=ff0000><strong>It is more worthwhile two birds flying than one in the cage.<br>(Ecological Words )</strong.</font>"
quote[4]="<font color=orange><strong>Be always on the safety side. Prevention is best than cure!<br>(Anonimous)</strong></font>"
quote[5]="<font color=#8E2323><strong>It is best a worker trained and conscientized<br>than a mountain of equipaments for protection<br>(Anonimous)</strong></font>"


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)

document.write('</center></font>');






