var hotelslist = new Array();


function AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown){
	var temp=new Item(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
	count=hotelslist.length;
	hotelslist[count]=temp;
}

//Primitive for AddHotel
function Item(i,h,b,p,f,e,w,t,c) {
	this.image = i;
	this.hotelname = h;
	this.bodytext = b;
	this.phone = p;
	this.fax = f;
	this.email = e;
	this.web = w;
	this.searchtown = t;
	this.searchcounty = c
	this.done = "false";
}
	
	
//IMPORTANT If you want to include quotes or apostrophies in the text, 
//they MUST be preceded by a backslash to prevent java executing them.
//e.g.  \" or \' like this - \'E\" to get 'E".
//IMPORTANT DO NOT USE Line Wrap In DreamWeaver

//Build the list - this is the database area. It's a bit long winded, but easy to add or
// remove entries without renumbering everything.

//Hotel details block - repeat entire block as required
image="sennen.jpg";
hotelname="Mariners and Wayfarers: Sennen";
bodytext="Offer Starts 12th June 2010<br>Offer Ends 3rd July 2010<br>Lovely comfortable bungalow ideal for the beach, coastal walks or just relaxing. Quiet location with garden and parking. Pets welcome. Special price of £350.00 per week";
phone="01736 871265";
fax=" ";
email="mlets@btconnect.com";
web="http://www.sennenselfcatering.co.uk";
searchtown="red";
searchcounty="even";
AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block

//Hotel details block - repeat entire block as required
//image="seagull.jpg";
//hotelname="Sea Gull Lodge: Callington";
//bodytext="Offer Starts 1st February 2009<br>Offer Ends 31st May 2009<br>Any holidays at Sea Gull //Lodge booked prior to 31st May 2009 for a holiday in peak season this year, will be entitled to 10% //deducted from the price of the holiday accommodation .";
//phone="01295 788848";
//fax=" ";
//email="seagulllodge@googlemail.com";
//web="http://www.seagull-lodge.com";
//searchtown="red";
//searchcounty="even";
//AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block

//Hotel details block - repeat entire block as required
//image="Carvynick.jpg";
//hotelname="Carvynick Cottages: Newquay";
//bodytext="Offer Starts 1st May 2009<br>Offer Ends 31st December 2009<br>Short Breaks Available //Please call for price and availability .";
//phone="01872 510716";
//fax=" ";
//email="info@carvynick.co.uk";
//web="http://www.carvynick.co.uk";
//searchtown="red";
//searchcounty="even";
//AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block

//Hotel details block - repeat entire block as required
//image="Chapel.jpg";
//hotelname="Chapel Cottages: St. Tudy";
//bodytext="Offer Starts 23rd May 2009<br>Offer Ends 30th May 2009<br>Whitsun vacancy £280 for the //week. £180 for 3 Nights.";
//phone="01208 850146";
//fax=" ";
//email="pestell3@aol.com";
//web="http://www.hockadays.co.uk";
//searchtown="red";
//searchcounty="even";
//AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block

//Hotel details block - repeat entire block as required
//image="Hockadays.jpg";
//hotelname="Hockadays Cottages: Blisland";
//bodytext="Offer Starts 14th June 2009<br>Offer Ends 28th June 2009<br>Vacancy one bedroom cottage //14th & 21st June £236/£262.";
//phone="01208 850146";
//fax=" ";
//email="tregennacottages@aol.com";
//web="http://www.hockadays.co.uk";
//searchtown="red";
//searchcounty="even";
//AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block

//End of list block
