<!--
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++] = "<font size='2'; color='#942D2D'; face='tahoma'><b>OUTSTANDING SERVICE</b></font><br><br><font size ='2'; color='#151548'; line height='9px'>I began working with Elite when I was with another company about six years ago. Four years ago, I left that organization, but didn't leave Elite Office Solutions. Donna is wonderful to work with, is responsive and has a service that is easy to navigate in every way from setting up accounts, to dictation and accessing reports. I have always received '5-Star' services at very reasonable cost.<br><br><b>- W.B.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='tahoma'><b>FAST TURNAROUND</b></font><br><br><font size ='2'; color='#151548'; line height='9px'>As a small publishing company, we're always looking for vendors that offer not only good prices, but quick turnaround. Elite Office Solutions offers both, and we would highly recommend their transcription services. Elite's transcriptionists also have an excellent grasp of medical terminology and have been able to transcribe even the most difficult of recordings that we've given them.<br><br><b>- E.D.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='tahoma'><b>RELIABLE TRANSCRIPTION SERVICES</b></font><br><br><font size ='2'; color='#151548'; line height='9px'>Elite Office Solutions is the only company I trust with my meeting transcripts.  They are proactive, provide fast turnaround, and have never let me down or missed a deadline.<br><br><b>- C.W.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='tahoma'><b>LETTER-PERFECT TRANSCRIPTIONS</b></font><br><br><font size ='2'; color='#151548'; line height='9px'>Elite Office Solutions has been for several years now an essential part of our monthly trade magazine for physicians. The Elite team provides superb service, delivering letter-perfect and fast transcriptions of clinical interviews. That quick turnaround has made it possible for us to produce editorial content on deadline and is much appreciated.<br><br><b>- P.M.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='tahoma'><b>GOING THE EXTRA MILE</b></font><br><br><font size ='2'; color='#151548'; line height='9px'>We have worked with Donna and her team for a few years, and we are extremely impressed with their services. They are very efficient and reliable, and their flexibility has served us well on many occasions. They go the extra mile to meet our objectives, and to make sure our projects are completed accurately and on time.<br><br><b>- L.F.</b>"
// 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]);
-->
