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="	Cornerways.jpg";
hotelname="Cornerways Guest House: Weston-super-Mare";
bodytext="Offer Starts 4th April 2009<br>Offer Ends 31st May 2009<br>Two nights bed and breakfast en suite accommodation only £90 per room including full choice of breakfast.<br>Three nights bed and breakfast en suite accommodation only £135 per room including full choice of breakfast.";
phone="001934 623708";
fax=" ";
email="cornerwaysgh@aol.com ";
web="http://www.cornerwaysweston.com";
searchtown="red";
searchcounty="even";
AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block




//End of list block
