<!--
  function quote() {
 //Random Quotes - 1st word
 } ; q = new quote() ; n = 0
  function quote2() {
 //Random Quotes - 2nd word
 } ; r = new quote2()
  function quote3() {
 //Random Quotes - 2nd word
 } ; s = new quote3()

 // Quote database -------------------------------------
 q[n++]= "artless"
 q[n++]= "bawdy"
 q[n++]= "beslubbering"
 q[n++]= "bootless"
 q[n++]= "churlish"
 n= 0
 r[n++]= "base-court"
 r[n++]= "bat-fowling"
 r[n++]= "beef-witted"
 r[n++]= "beetle-headed"
 r[n++]= "boil-brained"
 n= 0
 s[n++]= "apple-john"
 s[n++]= "baggage"
 s[n++]= "barnacle"
 s[n++]= "bladder"
 s[n++]= "boar-pig"

 i=Math.floor(Math.random() * n) ;
 j=Math.floor(Math.random() * n) ;
 k=Math.floor(Math.random() * n) ;

document.write( q[i] );
document.write("<BR>");
document.write( r[j] );
document.write("<BR>");
document.write( s[k] );
document.write( "!" );
 //-->