/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
author="Fred Gregory";
company="F&P Financing Corp.";
body="I've never been able to find as reliable and expedient computer expertise as you've provided";
}

if (quotes==1) {
author="Gary Kamerer";
company="Advanced Billing Technology";
body="On two different occasions, you were a tremendous help in getting my computer diagnosed and repaired...I will certainly recommend you highly";
}

if (quotes==2) {
author="Sharon Blawn";
company="Sharon A. Blawn Transcription Service";
body="My business depends on my computers and printers being up and running.  You always go out of your way to help, whether it's a hardware or software problem";
}

if (quotes==3) {
author="Bhavin Barot and Cheryl Leader";
company="Sony Pictures";
body="It is quite apparent that your company is well versed in customer service, as well as being very efficient and effective in technological upgrades and repairs";
}

if (quotes==4) {
author="Jim Rosenfield";
company="Insight Web Marketing";
body="You folks consistently take care of all our computer needs in a timely and cost-effective way. You really give me and my staff the service we need to keep getting our work done";
}

if (quotes==5) {
author="Gladys Castro";
company="Women Entrepreneurs Network";
body="Thank you so much for taking time out to meet with me.  I appreciate your efforts to support Women Entrepreneurs";
}

if (quotes==6) {
author="Melanie Mills";
company="Indianapolis, IN";
body="How very fortunate I was to find you on my trip to LA.  Wonderful service, helpful and professional";
}
document.write('<div align=left>');
document.write('' + body + '<br><br>');
document.write('-'+ author +'<br>');
document.write('' + company + '');
document.write('</div>');
