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="adcote.jpg";
//hotelname="Adcote House: Llandudno";
//bodytext="Early Booking<br>Offer Starts 16th March 2009<br>Offer Ends 1st May 2009<br>Short Break //Monday to Friday<br>3nts for the price of 2nts<br> Excluding Bank Holidays and Weekends<br>Superior //Double, Double Rm 2, Double Rm 7 only.";
//phone="01492 871100";
//fax=" ";
//email="anne@adcotehouse.co.uk";
//web="http://www.adcotehouse.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="oldstables.jpg";
hotelname="The Old Stables: Aberdovey";
bodytext="Special winter short stay rate of £75 per night for 4 persons, including heating, electric and membership of The Plas Talgarth leisure resort, minimum 3 night stay.";
phone="0151 342 1061";
fax=" ";
email="info@steeplehouse.co.uk";
web="http://www.steeplehouse.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="TremYMor.jpg";
//hotelname="Trem Y Mor Holidays & Retreats: Caernarfon, Gwynedd ";
//bodytext="Early Booking<br>Offer Starts 29th June 2009<br>Offer Ends 3rd July 2009<br>4 Nights Self //catering - £200<br>Great Late deal offer. Self catering for a maximum of 4 people. Travel cot in//cluded if required. You can also bring up to a maximum of 3 dogs.<br>Quiet location in Northern //Snowdonia with views towards Anglesey and stunning sunsets";
//phone="01286 872299";
//fax=" ";
//email="tremymorholidays@hotmail.co.uk";
//web="http://www.tremymor.co.uk";
//searchtown="red";
//searchcounty="even";
//AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block


//End of list block
