// JavaScript Document

function ReturnTest(a)
{
var myArr=new Array(4);
myArr[0]="We subscribe to various papers and have copies delivered to our offices. Over the year it makes a substantial saving.<br /><strong>J. Alexander, Inverness</strong>";
myArr[1]="My Scotsman discount far outweighs my existing paperboy delivery charge, making it easier to continue with a daily paper.<br /><strong>G. Alexander, North Berwick</strong>";
myArr[2]="No brainer really, happy to recommend it. <br /><strong>F. Campbell, Edinburgh</strong>";
myArr[3]="I'm on the web during the week but love a weekend with the papers, so I went for the weekend subscription.<br /><strong>M Pruess, Ayr</strong>";

return myArr[a];
}

function showMe(a)
{
	return ReturnTest(a);
}