/* 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 = 8;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Tom Dalby<br>Senior Manager<br>Human Resources<br>Rogers Cable";
body="''The services Dr. Lee provides are a real benefit to our employees and having him come on-site is great.''";
}

if (quotes==1) {
title="Priscilla Travassos<br>Customer Relations Executive<br>Office of the President<br>Rogers Cable Communications Inc";
body="''Having the luxury of this clinic at the workplace is beneficial to our health and well being.  The clinic has a wonderful reputation around Rogers!''";
}

if (quotes==2) {
title="Wendy Thomson<br>Admin. Assistant Operations<br>Rogers Cable<br>Barrie";
body="''Dr. Lee's on-site medical clinic has been invaluable to the staff at Rogers Barrie facility.  The convenience of having a doctor come right to the office means no travel time for us therefore less time missed from work.''";
}

if (quotes==3) {
title="Tony Brown<br>Distribution Manager<br>SYD CBU Rogers Cable";
body="''The time involved is virtually unnoticed within business hours, as there is no traveling time or office waits - about the average coffee break.''";
}

if (quotes==4) {
title="Janet Brunger, Project Manager-Engineering (Rogers Communications)";
body="''Knowing my health should be just as important as coming to work, Dr. Lee's on site clinic ensures that I remember the importance of attending to those needs.''";
}

if (quotes==5) {
title="Lisa McClean Stellick<br>Station Manager<br>Rogers Television, York Region";
body="''Doctor Lee's on-site clinic provides employees with an opportunity to consult with a certified doctor and receive immediate advice and treatment.''";
}

if (quotes==6) {
title="Bryan Peters<br>Supervising Producer<br>Rogers Television";
body="''Through Dr. Lee's education I have developed a better understanding about me and my body, how to manage the causes and how to treat my symptoms through exercise and safe supplements. I am definitely living better! Thanks Dr. Lee!''";
}

if (quotes==7) {
title="Laura Sullivan<br>Kraft Canada<br>HR Specialist, Wellness";
body="''The corporate wellness clinic that Dr. Lee operated at Kraft Canada provided our employees with the superior convenience of onsite access to health care services…Dr. Lee's level of professionalism and willingness to cater his services to meet the needs of the environment has been consistently great.''";
}


document.write('<div align=left>');
document.write(''+ body +'<br>');
document.write('<strong>' + title + '</strong>');
document.write('</div>');
