<!--
//store the quotations in arrays
quotes = new Array(2);
authors = new Array(2);
quotes[0] = "As much of a fan I am of the Extreme Cream, this is about the wonders of Calendula & Tea Tree Oil...What a miracle!";
authors[0] = "M.H., Hesperia, CA";
quotes[1] = "...I had to write you and thank you for putting me on to the Calendula, Comfrey & Tea Tree Oil. You witnessed the mean looking injury I had on my hand; I wish you could see my hand now. It would be a real testament to your products.";
authors[1] = "M.N., Encinitas, California";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done
  
//-->
