// JavaScript Document

// Set up the text files to be used.

var theText = new Array() // do not change this


theText[0] = '"PomeMailer has been an invaluable resource for us, connecting with clients and even seeing an accurate response rate! We couldn&rsquo;t be happier" <br><br><span class="quote-name">Richard Corrigan, Corrigans Mayfair</span>';

theText[1] = '"It is a joy and a relief to work with a system that is so intuitive. PomeMailer have been highly responsive and so understanding of our needs" <br><br><span class="quote-name">Steve Murray, Continental Research</span>';

theText[2] = '"PomeMailer has never failed to deliver great results for us, the reporting feature has proved a valuable asset." <br><br><span class="quote-name">Clive Wood, Gel Golf</span>';

// do not edit anything below this line


var j = 0

var p = theText.length;

var preBuffer = new Array()

for (i = 0; i < p; i++){

preBuffer[i] = new Array()

preBuffer[i].src = theText[i]

}

var whichText = Math.round(Math.random()*(p-1));

function showText(){

//This a wrapper for the text array it can be changed if need

document.write('<p class="thetext">'+theText[whichText]+'</p>');

}
