var quotearray = new Array(3);
quotearray[1] = "&#8220I printed out the full 33 page report to review, its pretty impressive standing on its own and looks very professionally done - nice job.&#8221<br><br><b><I>Ed Cline<br>FilterSense</I></b>";
quotearray[2] = "&#8220Just wanted to let you know I appreciate the great job you did putting this system together. You seem to be a great mind-reader, looking at the ease and scope of the installation done with little to no interaction required, at least on our part.  The operators & engineers all seemed quite at ease with your designs during our acceptance & orientation.&#8221<br><br><b><I>Ron Williams<br>Process Control Engineer<br>Hollingsworth & Vose</I></b>";
quotearray[3] = "&#8220Thanks for the great work.&#8221<br><br><b><I>Alex Xenopoulos<br>Millipore Corporation</I></b>";
var quotenumber = 0;
var timerID = null;
var delay = 30000;
var secs = 0;
function dynamicquotes() {
	timerID = self.setTimeout("dynamicquotes()", delay);
	secs = secs + 5;
	if (secs = 10) {
		quotenumber = quotenumber + 1;
		if (quotenumber > 3) {
			quotenumber = 1;
		}
		document.all.quotes.innerHTML = quotearray[quotenumber];
		secs = 0;
	}
}
function calldynamicquotes() {
	timerID = self.setTimeout("dynamicquotes()", 10);
}
window.onload = function (evt) { 
	dynamicquotes(); 
} 
 
