function expandText(expand) {
	var dogsDiv = document.getElementById("dogsPeople");
	if (dogsDiv) // Is the DIV defined
		if (expand) {
			dogsDiv.innerHTML = "<blockquote><p>&#8220;Hamish visited for a short break at the end of March / beginning of April 2009. He stayed in one of two conversions with fully enclosed gardens (there are two more attached to the main house with a courtyard). The weather was rather chilly – we had two days of almost continuous fog - but the cottage was warm with an effective central heating system. We also lit the pot bellied stove when we stayed up later one evening. The cottage was well equipped and very comfortable. It, and the garden, was perfect for Hamish (who loved the different countryside scents and was happy to lie in the garden in wait for any wildlife that might venture by). Our welcome from Keith and Jeannie (and one of their daughters who we met on arrival) was warm and helpful. Welcome ‘goodies’ included own free range eggs, a local beer, wine and a cake made on site by the daughter we met. Hamish had his own bowl of treats too! The Old Rectory owns two adjacent fields where guests and their dogs are welcome. These are a good example of Keith and Jeannie’s care for the environment – one has just had a pond dug and is planted with trees, the other has been planted as an orchard. We really enjoyed the area and the experience as a whole – truly Top Dog (nearest beach is about 30 minutes drive away)&#8221;.</p><p>&copy; Copyright Dogpeople Limited 2009. By Kind Permission.</p><p>For full review, <a href=\"http://www.dogpeople.co.uk/ad_adlist.php?areaid=18&amp;regionid=4&amp;adtype=6\">visit Dogspeople</a> (external link).</p></blockquote>";
			dogsDiv.style.display = "block"; // Make the DIV visible
		}
		else { // Collapse
			dogsDiv.style.display = "none"; // Hide the DIV
		}
	var dogsP = document.getElementById("launchDogsPeople");
	if (dogsP) // Is the Paragraph defined
		if (expand)
			dogsP.innerHTML = '<a href="javascript: expandText(false);">This is what Dogpeople said about The Old Rectory&#8230;</a> (collapse text)';
		else
			dogsP.innerHTML = '<a href="javascript: expandText(true);">This is what Dogpeople said about The Old Rectory&#8230;</a> (expand text)';
}
