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="scarrscroft.jpg";
hotelname="Scarrscroft B&B : Thornton le Dale, Nr. Pickering";
bodytext="Offer Starts 1st February 2009<br>Offer Ends 31st December 2009<br>Book for any seven night break and pay for only six nights.";
phone=" 01751 476601";
fax=" ";
email="scarrscroft@googlemail.com";
web="http://www.scarrscroft.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="queensland.jpg";
//hotelname="Queensland Bed & Breakfast: Whitby";
//bodytext="Offer Starts 30th December 2008<br>Offer Ends 30th March 2009<br>Midweek special offer<br>Book any superior room for three nights between Sunday and Thursday and save £18 per room per night (£54 total)<br>Offer excludes Christmas, New Year and Bank Holiday's.";
//phone="01947 604262";
//fax=" ";
//email="info@queensland.co.uk";
//web="http://www.queensland.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="whiteowl.jpg";
//hotelname="The White Owl Holiday Apartments: Robin Hood's Bay";
//bodytext="Offer Starts 14th July, 2007<br>Offer Ends 21st July, 2007<br>Cosy studio apartment ideal for two people sharing on ground floor of house.  Completely self-contained with all modern facilities.  Price is fully inclusive of all lighting, heating, bed linen etc.  in other words, nothing else to pay.  Free parking at rear of house.  Pets welcome by arrangement.   £250 per week - if enquiring, please state this advert. Many thanks.";
//phone="01947 880879";
//fax=" ";
//email="Higgins@whiteowlrhb.freeserve.co.uk";
//web="http://www.SmoothHound.co.uk/hotels/whiteowl.html";
//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="endlea.jpg";
//hotelname="END LEA GUEST HOUSE: LEEDS CITY";
//bodytext="Offer Starts 20 07 07<br>Offer Ends 20 07 08<br>4 NIGHTS MONDAY TO FRIDAY INCS AT SPECIAL //RATES";
//phone=" ";
//fax=" ";
//email="pat_mcbride@talktalk.net";
//web="http://www.endleaguesthouse.net";
//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="marshall lodge.jpg ";
//hotelname="Marshall Lodge: Bridlington";
//bodytext="Offer Starts 25th January 08<br>Offer Ends 25th March 08<br> ";
//phone="01262 674120";
//fax=" ";
//email="atthompson@hotmail.co.uk";
//web="http://www.marshalllodge.co.uk";
//searchtown="red";
//searchcounty="even";
//AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block

//End of list block
