/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="";
body="hello i am from germany.that was the greatest holliday in my life!!!we was on the chira lake i caught a 21.8 pound carp IT WAS VERY GREAT!!!!";
}

if (quotes==1) {
title="Chris";
body="Hi, Keith. Thanks for the great day on the lake chria. Nice carps, nice weather, what else. Greets from Austria.";
}

if (quotes==2) {
title="Dave Lomax";
body="8 runs 5 fish landed great day out for anyone well recommended will go again next year";
}

if (quotes==3) {
title="Dave Winstanley";
body="Hi Keith, really enjoyed our fishing trip in August 2009 have recommended it to all my mates. Hopefully returning back in 2010 see you soon for some more fat carp";
}

if (quotes==4) {
title="Ørjan Eide";
body="Thanks for a great day with carp fishing. We got the carp we wanted! Thank you for a grat day, great fishes and professional guiding and assistance. We probably will be back!";
}

if (quotes==5) {
title="martin & alan";
body="Just back from our 3rd annual trip. Great day with Keith & Steve, 9 runs 5 fish banked (whoops Alan!) See you again next year !!";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write('&quot;' + body + '&quot;');
document.write('</div>');
