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="Mains.jpg ";
hotelname="Mains of Taymouth Country Estate: Kenmore, Perthshire ";
bodytext="Offer Starts 16th June 2009<br>Offer Ends 31st July 2009<br>Fantastic summer and late availability special offer at Mains of Taymouth Cottages - Scotlands premier holiday cottages.<br>please visit our website for details. ";
phone="01887 830226";
fax=" ";
email="info@taymouth.co.uk";
web="http://www.taymouth.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="cornerhouse.jpg ";
hotelname="The Corner Town House: Wick, Caithness, Highlands";
bodytext="Offer Starts 1st March 2009<br>Offer Ends 30th June 2009<br>Four Star Family Holiday Home in Wick, Highlands of Scotland. Excellent Value Short Breaks available and fully inclusive Weekly Holidays. Current offer is Book Four Nights and pay for only Three Nights. See our web site for costs and details of property or contact me bytext/phone/email with name and address and I will send out my Information Pack. Thanks, Donald. ";
phone="0845 3705704";
fax=" ";
email="enquiry@visit-wick.co.uk";
web="http://www.visit-wick.co.uk";
searchtown="red";
searchcounty="even";
AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block


//End of list block
