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="Rowanville.jpg";
hotelname="Rowanville Lodge: Grange, County Sligo";
bodytext="Offer Starts 18th May 2009<br>Offer Ends 30th June 2009<br>Stay for longer than 2 nights and avail of a special rate of 32 Euros per person including full breakfast.";
phone=" 00353 (0) 7191 63958 ";
fax=" ";
email="rowanville@hotmail.com";
web="http://www.rowanville.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="wynns.jpg";
hotelname="Wynn's Hotel: Dublin";
bodytext="MIDWEEK SPECIAL OFFER 2 Nights Bed & Breakfast and 1 Evening Meal in our newly restored Ristorante Tomasso 135 Euro PER PERSON SHARING. Offer valid Monday - Thursday only. Subject to availability.";
phone="+ 353 1 874 5131";
fax=" ";
email="julie@wynnshotel.ie";
web="http://www.wynnshotel.ie";
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="pilgrims.jpg";
hotelname="The Pilgrims Rest Hotel: Cappoquin, Near Lismore, Waterford";
bodytext="Offer Starts 12th February 2009<br>Offer Ends 22nd December 2009<br>SAVE AN EXTRA 20euro PER PERSON ON YOUR IRISH HOTEL BREAK.<br>Stay 3 nights or more and book Direct with The Pilgrims Rest Hotel by Telephone on 003535852917 and receive a DISCOUNT of TWENTY EURO per person.<br>Just print this page and hand it to reception when paying account.";
phone="003535852917";
fax=" ";
email="info@thepilgrimsrest.com";
web="http://www.thepilgrimsrest.ie";
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="grand.jpg";
hotelname="The Grand Hotel: Tramore: Co. Waterford";
bodytext="Offer Starts 1st March 2009<br>Offer Ends 31st October 2009<br>2 Nights Bed and Breakfast with one evening meal and bottle of wine for only 89.00 Euros per person sharing.";
phone="00353 (0)51 381414";
fax=" ";
email="irene@grand-hotel.ie";
web="http://www.grand-hotel.ie";
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="ivy.jpg";
hotelname="Ivy Cottage NI Bed and Breakfast: Ballynahinch, County Down";
bodytext="Offer Starts 6th March 2009<br>Offer Ends 30th April 2009<br>Stay three nights and receive your fourth night free!  Please contact Ivy Cottage NI directly to check avaialbility.  Please quote Welcome 2 to receive your discounted rate.";
phone="028 92639869";
fax=" ";
email="info@ivycottageni.com";
web="http://www.ivycottageni.com";
searchtown="red";
searchcounty="even";
AddHotel(image,hotelname,bodytext,phone,fax,email,web,searchtown,searchcounty);
//End details block


//End of list block
