<!-- Beginfunction getquote()
{
	theDate= new Date();	var ix = (theDate.getSeconds() % 3) + 1;	var numquotes = 3;	quotes = new Array(numquotes+1);	quotes[1] = "Thank you for your help with our windows! The replacements look great and the installers were efficient and left zero mess!";	quotes[2] = "Bob and I want you to know how happy we are with the windows we ordered for our new home. I hardly know where to begin with my compliments. First of all, the quality is outstanding, and living on a windy spot on a lake....don't hear or feel a thing! Secondly, we are so very happy with the way that they are constructed. We love the easy cleaning and also the way that they open... both the casement and other windows provide so much ease in opening. We love the pull down screens that we ordered... these were truly a worthwhile investment and we wish we had probably upgraded to that in more places. All doors and screens slide easily and are so functional... we just want you to know that we would recommend your business to anyone. Thank you again,";	quotes[3] = "I want you to thank you so much for so promptly coming over and handling our service... Thank you again!";	document.write(quotes[ix]);
}
function getauthor()
{
	theDate= new Date();	var ix = (theDate.getSeconds() % 3) + 1;	var numquotes = 3;	authors = new Array(numquotes+1);	authors[1] = "Amy K.";	authors[2] = "Bob and Carole P.";	authors[3] = "Carrie K.";	document.write(authors[ix]);
}//  End -->