

      function DisplayQuote() {
       // Build an array of quotes
       var quote = new Array(10)

	   quote[0] = "\"Welcome to the unbelievable! Discover the compelling beauty of soap film.\""

	   quote[1] = "\"Welcome to the unbelievable! Discover the compelling beauty of soap film.\""

	   quote[2] = "\"What better thing to do that to blast off into space and find aliens?\""

       quote[3] =  "\"Geometric patterns abound. Witness blue vapors and stop-action combinations.\""

       quote[4] =  "\"Be assured that you will be rewarded by brilliant, ever-changing color forms.\""

       quote[5] =  "\"Gentle swirling bands of color brimming with allure!\""

       quote[6] = "\"Egg Eyes! Dots and blobs and vanishing tails!\""

       quote[7] = "\"Soap does more than clean; it dazzles the eyes, nurtures the mind, and quiets the soul.\""

       quote[8] = "\"You've never seen anything like my soap films.\""

       quote[9] = "\"Expanded flowing color in every direction... A beauty beyond description.\""
	   
	   
	   // Generate a random quote
	var ry=Math.floor(Math.random()*quote.length)
	if (ry==0)
	ry=1
       return("<p class=quote>" + quote[ry])
      }
