<!--
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='arial'><b>OUTSTANDING SERVICE</b></font><br><br><font size ='2'; color='#151548'; face='arial' 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.&#8221;<br><br><b>- W.B.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='arial'><b>FAST TURNAROUND</b></font><br><br><font size ='2'; color='#151548'; face='arial' 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.&#8221;<br><br><b>- E.D.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='arial'><b>RELIABLE TRANSCRIPTION SERVICES</b></font><br><br><font size ='2'; color='#151548'; face='arial' 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.&#8221;<br><br><b>- C.W.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='arial'><b>LETTER-PERFECT TRANSCRIPTIONS</b></font><br><br><font size ='2'; color='#151548'; face='arial' 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.&#8221;<br><br><b>- P.M.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='arial'><b>GOING THE EXTRA MILE</b></font><br><br><font size ='2'; color='#151548'; face='arial' 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.&#8221;<br><br><b>- L.F.</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='arial'><b>Fast, Effective Service</b></font><br><br><font size ='2'; color='#151548'; face='arial' line height='9px'>Thank you so much for taking care of this for me. The transcription is perfect.  You have taken care of this quickly and effectively.&#8221;<br><br><b>- A.C., Senior Claims Specialist</b>"
random_text[number++] = "<font size='2'; color='#942D2D'; face='arial'><b>Got It To The Meeting On Time</b></font><br><br><font size ='2'; color='#151548'; face='arial' line height='9px'>Wow, This is great! We actually have our monthly Board Meeting tonight and I didn’t think there was a chance I’d be able to present it at the meeting. But thanks to you and your staff, we’ll be able to present this a month earlier than planned!<BR><BR>I’ve been checking it out in more detail and I really want to compliment your services. Very impressive. I hope we get the chance to work together again!<BR><BR>Thanks for all of your help. You’ve been a pleasure to work with.<br><br>J.C.</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]);
-->