function writemess() { 
var msg = new Array(11);

msg[0] = "An easy walk to a variety of great Pubs and Restaurants";
msg[1] = "Local and Fairtrade Produce used where possible";
msg[2] = "The perfect Location for your relaxing break";
msg[3] = "Ideal location";
msg[4] = "Early Booking recommended, especially for the main season";
msg[5] = "A comfortable environment where we care about the environment ";
msg[6] = "Book early to avoid disappointment";
msg[7] = "The English Riviera......Lots to see and do";
msg[8] = "Enjoy our milder climate, all year round";
msg[9] = "Ideal for a car free break";
msg[10] = "Superb walks and stunning coastal scenery";

var num = Math.random()*10
var num = Math.round(num)

document.write(msg[num]);

}