function writeApproval() {
	var text=new Array();
	//Insert options like this:
	text[0]="'Excellent surroundings' - J.White, Oxford";
	text[1]="'Good service and friendly atmosphere' - T.Maxwell, Dumfries";
	text[2]="'Many thanks for your service' - F.Smith, Liverpool";
	text[3]="'Very peaceful atmosphere, stunning scenery' - John Gould, Devon";
	text[4]="'Delicious food' - Phillip Adams, Glasgow";
	text[5]="'Spacious rooms - thank you' - Heather Scott";
	text[6]="'We enjoyed our stay tremendously!' - Clive and Les Anderson";
	text[7]="'It was an experience not to be missed!' - Hale Villalo";
	text[8]="'Excellent food and most pleasent service' - Rosalind A. Sim";
	text[9]="'Thanks for making our 1st Christmas time of 2003 so special' - Frank & Jacky";
	text[5]="'Thank you for all the kindness and consideration shown during my stay' - Rita Allen";
	text[5]="'Thank you to the management and all staff' - Sarah Hawkins";
	document.write(text[Math.round(Math.random()*text.length-0.5)]);
}