<!--
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "The folks at Dec-Tam were very patient as we dealt with different historic preservationists – the end results speak for themselves – spectacular. We will work with them again and recommend them to anyone who asks."
random_text[number++] = "I knew I was in excellent hands which made my job easier as I did not have to visit the site as often as I might have.  Your team's care for our patients, visitors and staff is evident in their work.  Thank you."
random_text[number++] = "Your project manager was great to work with.  I know nothing about abatement and Craig was very informative."
random_text[number++] = "I like Dec-Tam because they are easy to work with and very responsive."
random_text[number++] = "Thank you.  You have a quick response, are easily reached and willing to go the extra mile when needed."
random_text[number++] = "Thanks again for your technical expertise and the great job.  It is a pleasure to work with quality contractors who work and coordinate with us."
random_text[number++] = "We had excellent communications with the entire team!  You kept finishing every phase a day or 2 ahead of schedule which gave the other contractors a little breathing room on their end."
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->
