function randomquotes() {
var how_many_quotes = 14;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_quotes;
ad +=1;

if (ad==1) {txt="&quot;The service technician did an excellent job of communicating with me and trying to save me time and money.&quot;";}
if (ad==2) {txt="&quot;…nothing but praises for the quality of work and professionalism above and beyond what was expected.&quot;";}
if (ad==3) {txt="&quot;Awesome communication!  Thanks for the speedy service!!&quot;";}
if (ad==4) {txt="&quot;Excellent service!&quot;";}
if (ad==5) {txt="&quot;Very pleased with the professional and personable manner of employees.&quot;";}
if (ad==6) {txt="&quot;We’re always pleased with SSI!&quot;";}
if (ad==7) {txt="&quot;…very friendly and courteous and explains everything very well.&quot;";}
if (ad==8) {txt="&quot;We are convinced that retaining your company was one of the best decisions we made…&quot;";}
if (ad==9) {txt="&quot;Excellent service and efficiency.&quot;";}
if (ad==10) {txt="&quot;Great work, wonderful people.&quot;";}
if (ad==11) {txt="&quot;Thank you for the prompt service and the comprehensive diagnosis regarding my printer.&quot;";}
if (ad==12) {txt="&quot;Outstanding service, excellent customer relations.&quot;";}
if (ad==13) {txt="&quot;Because of their proactive support, we actually saved thousands of dollars. We have found them to be a creative, responsive and a very trustworthy partner. I look forward to working with SSI on further technology projects.&quot; <p>&nbsp;<font color=#FFFFFF>-Ken Burmeister, Business Administrator for Midland Free Church.</font></p>";}
if (ad==14) {txt="&quot;Thanks guys, you are appreciated here.&quot;";}

document.write('<left>');
document.write(txt);
document.write('</left>');
}
