var counter = 0;
var comCount = 12
var Name = new Array(comCount)
var Organisation = new Array(comCount)
var Comments = new Array(comCount)

Name[0] = "Elaine Priestley, Marketing Manager"
Organisation[0] = "The Matchett Group"
Comments[0] = "The PSX is a highly responsive and valuable service for The Matchett Group."

Name[1] = "Binh Ha"
Organisation[1] = "Institue of Public Finance (IPF)"
Comments[1] = "PSX have always been at hand when we have needed databases at short notice and if they don't hold any particular database they will go out of their way to obtain this for us. Their service both online as well as over the telephone is excellent. 'Highly recommended!"

Name[2] = "Annemarie Taylor, Marketing Manager"
Organisation[2] = "Shaw Trust"
Comments[2] = "I've just requested data and it works. The dynamic request was particularly useful - very easy and the data came back quickly in a format I can open and use in Excel."

Name[3] = "Adam Youd"
Organisation[3] = "McMillan Scott plc"
Comments[3] = "The best service we have ever subscribed to, in terms of data quality, simplicity of use and value."

Name[4] = "Glynis Baldwin"
Organisation[4] = "Gower Publishing Ltd"
Comments[4] = "I have just used the system for the first time and I was most impressed with how easy it is to use. In the past it has been so time consuming getting the individual files that I feel has though Christmas came early."

Name[5] = ""
Organisation[5] = "Greenpeace UK"
Comments[5] = "We think the PSX database offers a great service."

Name[6] = "Caroline Harvey"
Organisation[6] = "Harvey Training Consultancy"
Comments[6] = "Thank you so much for doing all the hard work. The system is really easy to use and it automatically deletes duplications as well.  That is just such a bonus."

Name[7] = "Mark Bouzida"
Organisation[7] = "Direct Visual"
Comments[7] = "We have only been using the PSX for a few days yet already it has proved to be a valuable resource and has provided us with information that would have taken hundreds of man hours to compile. The information has been accurate and most importantly incredibly easy to request and download. I can see this database becoming an essential part of our telemarketing strategy."

Name[8] = "Susan Cranfield, Marketing Co-ordinator"
Organisation[8] = "Bureau Veritas UK &amp; Ireland"
Comments[8] = "Firstly, just to let you know the troops here have been very impressed with (the) PSX . Wished we have discovered it earlier."

Name[9] = "Paul Elsegood"
Organisation[9] = "Principal Partner, FIDM"
Comments[9] = "It is refreshing to receive such good service.&nbsp; We will certainly be continuing with our subscription to the service and would like to take this opportunity to thank you for your prompt response to our queries and needs. [cont...] "

Name[10] = "Paul Elsegood"
Organisation[10] = "Principal Partner, FIDM"
Comments[10] = "We are pleased to say that subscribing to this service had no only given us a very economic access to the vast range of data available but has also enabled us to respond to our customers requests for information immediately and with some authority.&nbsp; In the past we struggled to keep up with the ever changing organisational structures  [cont...]"

Name[11] = "Paul Elsegood"
Organisation[11] = "Principal Partner, FIDM"
Comments[11] = "of the Public Sector but through access to The PSX database and with your guidance we are now confident that we can assist anybody targeting this potentially bewildering sector. This makes a significant contribution to the credibility and integrity of our business."


function displayCommendation() {
	{
  if(counter > parseFloat(comCount-1))
   counter = 0;
		document.getElementById('Commendation').innerHTML="<p style=\"color: #FFFFFF; font-size: 10px\"><strong style=\"color: #FFCC00\">What clients say:</strong><br><em>\""+Comments[counter]+"\"</em> - "+
		"<strong>"+Name[counter]+", "+Organisation[counter]+"</strong>&nbsp; ["+parseInt(counter+1)+"/"+comCount+"]</p>"
  counter++;
}

}