/* 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 = 11;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="You are always courteous, helpful and honest in your dealings with us.";
}

if (quotes==1) {
body="Honest, hard working, calm and professional - we trusted you and you didn't let us down.";
}

if (quotes==2) {
body="We have been very pleased with the efficient and prompt service that we have received from Neil Douglas.";
}

if (quotes==3) {
body="We would recommend them to any of our friends who asked.";
}

if (quotes==4) {
body="Neil Douglas offers a wealth of experience.";
}

if (quotes==5) {
body="I have never had a place empty for more than a few days.";
}

if (quotes==6) {
body="They are a cut above the average letting agent.";
}

if (quotes==7) {
body="Any problems have been sorted out quickly and efficiently.";
}

if (quotes==8) {
body="The teams knowledge of the whole market is very good.";
}

if (quotes==9) {
body="My tenants were impressed with the professionalism and courtesy shown to them.";
}

if (quotes==10) {
body="I will certainly be using Neil Douglas again.";
}

document.write('<div align=center>');
document.write(''+ body +'');
document.write('</div>');

