// ==============================================// Copyright 2004 by CodeLifter.com// Free for all; but please leave in this header.// ==============================================var Quotation=new Array() // do not change this!// Set up the quotations to be shown, below.// To add more quotations, continue with the// pattern, adding to the array.  Remember// to increment the Quotation[x] index!Quotation[0] = "\<i>&#8220;Thank you Ben. You have given us great service and we'll certainly come to you again if we have a property to let. All the best\&#8221;. <strong> <br /> Phil Smith. Landlord.</strong><i/>";Quotation[1] = "\<i>&#8220;Dear Jenny. I wanted to write and thank you and your team for doing such an excellent job of finding a tenant for the Laura Place apartment. I was impressed by the speed and efficiency you worked, and will be using Reside for other properties I own in the area\&#8221;.<strong> Roy Willcock. Landlord.</strong><i/>";Quotation[2] = "\<i>&#8220;It is lovely to know that we do not have to worry about our property and that it is in reliable and safe hands. Everyone on the team in the office is incredibly helpful and nothing is too much bother. Thanks for all your work so far\&#8221;. <br /><strong> Alex Matthews. Landlord.</strong><i/>";Quotation[3] = "\<i>&#8220;Just wanted to say that we are very impressed with Reside and are so pleased that we changed agents and went with you. The service we get is incredibly professional and you are very efficient at dealing with requests, sorting out maintenance work and administration\&#8221;.<strong> James Matthews. Landlord.</strong><i/>";Quotation[4] = "\<i>&#8220;Hi Ben, Just a note to thank you and your team for both finding a new replacement tenant and effecting such a speedy change. Much appreciated\&#8221;.<strong> Regards. <br />Richard Hartley. Landlord.</strong><i/>";// ======================================// Do not change anything below this line// ======================================var Q = Quotation.length;var whichQuotation=Math.round(Math.random()*(Q-1));function showQuotation(){document.write(Quotation[whichQuotation]);}showQuotation();