<!-- Begin
var howMany = 5
var quote = new Array(howMany+1)

quote[0]="A musician must make music, an artist must paint, a poet must write if he is to be ultimately at peace with himself. What one can be, one must be.<br><br><div align=center>&#151;Abraham Moslow<br></div>"

quote[1]="Consistency is the last refuge of the unimaginative.<br><br><div align=center>&#151;Oscar Wilde<br></div>"

quote[2]="The artist is nothing without the gift, but the gift is nothing without work.<br><br><div align=center>&#151;Emile Zola<br><br></div>"

quote[3]="Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world.<br><br><div align=center>&#151;Albert Einstein<br><br></div>"

quote[4]="Everything has its beauty but not everyone sees it.<br><br><div align=center>&#151;Confucius<br></div>"

quote[5]="Painting is the grandchild of nature. It is related to God.<br><br><div align=center>&#151;Rembrandt<br></div>"



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("</P>");
document.write("<span style='text-align: justify; line-height: 13px; font-family: verdana, arial, helvetica; font-weight: normal; color: #000046; font-size: 11px'>");
document.write(quox);
document.write("</span>");
document.close();


// End -->
