/* Creation date: 2005-03-12 */

/* Modified: Halina Jasklowska */

// dist - string began with 1 (for 'all' category). 1 indicates hotel should be displayed during listing suitable category, 0 - no display

function hotel(dist, cat, fit, bus, price, instant, cur, dir, name, town)
{
	this.dist = dist;
	this.cat = cat;
	this.fit = fit;
	this.bus = bus;
	this.price = price;
	this.instant = instant;
	this.cur = cur;
	this.dir = dir;
	this.name = name;
	this.town = town;
}

i=0;
hotels = new Array();
hotels[i++] = new hotel ('100010',5,1,0,134,0,'EUR','http://www.lodgingfrance.com/Montpellier/http://www.lodgingfrance.com/Montpellier/MontePicayo','Monte Picayo Hotel','Puzol');					
hotels[i++] = new hotel ('110000',4,0,0,134,0,'EUR','http://www.lodgingfrance.com/Montpellier/SofitelMontpellierAntigone','Sofitel Montpellier Antigone ','Montpellier');
hotels[i++] = new hotel ('110000',4,0,1,175,0,'EUR','http://www.lodgingfrance.com/Montpellier/HolidayInnMontpellierMetropole','Holiday Inn Montpellier Metropole ','Montpellier');
hotels[i++] = new hotel ('101000',4,0,0,149,0,'EUR','http://www.lodgingfrance.com/Montpellier/LeJardindesSens','Le Jardin des Sens ','Montpellier');
hotels[i++] = new hotel ('101000',4,1,0,130,1,'EUR','http://www.lodgingfrance.com/Montpellier/ChateauResidenceDeBionne','<font>Chateau Residence De Bionne</font> ','Montpellier');
hotels[i++] = new hotel ('101000',3,0,0,39,0,'EUR','http://www.lodgingfrance.com/Montpellier/CitadinesSainteOdile','Hotel Citadines Sainte Odile ','Montpellier');
hotels[i++] = new hotel ('101000',3,0,1,88,0,'EUR','http://www.lodgingfrance.com/Montpellier/MercureMontpellier','Mercure Montpellier Antigone ','Montpellier');
hotels[i++] = new hotel ('100100',3,0,0,43,1,'EUR','http://www.lodgingfrance.com/Montpellier/HOTELSTARSMONTPELLIER','<font>Stars Montpellier</b> ','Lattes');
hotels[i++] = new hotel ('100100',3,0,0,60,0,'EUR','http://www.lodgingfrance.com/Montpellier/LEGRANDHOTEL','Le Grand Hotel Sete ','Sete');
hotels[i++] = new hotel ('110000',3,0,0,43,0,'EUR','http://www.lodgingfrance.com/Montpellier/CitadinesMonpellierApt','Hotel Citadines Monpellier Apt ','Montpellier');
hotels[i++] = new hotel ('110000',3,0,0,121,0,'EUR','http://www.lodgingfrance.com/Montpellier/ASTRON','Hotel Suite ','Montpellier');
hotels[i++] = new hotel ('110000',3,0,0,64,0,'EUR','http://www.lodgingfrance.com/Montpellier/HOTELLAMAISONBLANCHE','HOTEL LA MAISON BLANCHE ','Montpellier');
hotels[i++] = new hotel ('110000',3,0,0,74,0,'EUR','http://www.lodgingfrance.com/Montpellier/Frantour','Frantour Hotel ','Montpellier');
hotels[i++] = new hotel ('110000',3,0,0,77,0,'EUR','http://www.lodgingfrance.com/Montpellier/HotelNeptune','Hôtel Neptune ','Carnon');
hotels[i++] = new hotel ('110000',3,0,0,75,0,'EUR','http://www.lodgingfrance.com/Montpellier/Novotel','Novotel Montpellier ','Montpellier');
hotels[i++] = new hotel ('110000',3,0,0,83,0,'EUR','http://www.lodgingfrance.com/Montpellier/LeGuilhem','Le Guilhem ','Montpellier');
hotels[i++] = new hotel ('110000',3,0,0,97,0,'EUR','http://www.lodgingfrance.com/Montpellier/NEWHOTELDUMIDI','New Hotel du Midi ','Montpellier');
hotels[i++] = new hotel ('110000',3,1,0,67,0,'EUR','http://www.lodgingfrance.com/Montpellier/TheMontpellierMassaneGolfHotel','The Montpellier Massane Golf Hôtel ','Baillargues');
hotels[i++] = new hotel ('110000',3,1,0,79,1,'EUR','http://www.lodgingfrance.com/Montpellier/lesconsulsdelamer','<font>Residence Les Consuls de la Mer</font> ','Montpellier');
hotels[i++] = new hotel ('110000',2,0,0,47,0,'EUR','http://www.lodgingfrance.com/Montpellier/HOTELDANGLETERRE','HOTEL DANGLETERRE ','Montpellier');
hotels[i++] = new hotel ('110000',2,0,0,56,0,'EUR','http://www.lodgingfrance.com/Montpellier/HOTELULYSSE','HOTEL ULYSSE ','Montpellier');
hotels[i++] = new hotel ('100100',2,0,0,23,0,'EUR','http://www.lodgingfrance.com/Montpellier/ComfortInnMontpellier','Comfort Inn Montpellier ','Montpellier');
hotels[i++] = new hotel ('100100',2,0,0,55,0,'EUR','http://www.lodgingfrance.com/Montpellier/HOTELLeMejean','HOTEL Le Mejean ','Lattes-Boirargues');
hotels[i++] = new hotel ('100100',2,0,0,55,0,'EUR','http://www.lodgingfrance.com/Montpellier/IBISMONTPELLIERFABREGUES','Ibis Montpellier Fabregues ','Fabregues');
hotels[i++] = new hotel ('101000',2,0,0,41,0,'EUR','http://www.lodgingfrance.com/Montpellier/HOTELKyriad','HOTEL Kyriad ','Montpellier');


function sortCategory()
{
	for (p=1; p<hotels.length; p++)
	{
		for(q=0; q<(hotels.length-1); q++)
		{
			if (hotels[q].cat < hotels[q+1].cat) 
			{
				a = new hotel;
				a = hotels[q];
				hotels[q] = hotels[q+1];
				hotels[q+1] = a;
			} 
		}
	}
}

function sortPrice()
{
//	alert("sortPrice()");

	for (p=1; p<hotels.length; p++)
	{
		for (q=0; q<(hotels.length-1); q++)
		{
			if (hotels[q].price > hotels[q+1].price) 
			{
				a = new hotel;
				a = hotels[q];
				hotels[q] = hotels[q+1];
				hotels[q+1] = a;
			} 
		}
	}
}

function listHotels()
{
	category = document.theForm['category'].value;
	locationSearch = document.theForm['location'].value;
	priceRange = document.theForm['priceRange'].value;
	fitness = document.theForm['fitness'].checked;
	business = document.theForm['business'].checked;

// tablice wartosci domyslnych

	selCategory = new Array();
	selLocation = new Array();
	selPrice = new Array();
	var selFitness, selBusiness;

	for (m=1; m<6; m++) if (category==m) selCategory[m]="selected";
	for (m=1; m<5; m++) if (locationSearch==m) selLocation[m] = "selected";
	for (m=0; m<=200; m=m+50) if (priceRange==m) selPrice[m] = "selected";
	if (fitness) selFitness = "checked";
	if (business) selBusiness = "checked";

// koniec wartosci domyslnych =================

	location.reload();

// Headers & main text

	document.write('<html>\r\n<head>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<title>Montpellier Hotels - Search Results</title>\r\n<link rel=stylesheet type=text/css href=http://www.polhotels.com/cities_gfx/citystyles.css>\r\n');
	document.write('<script language=javascript src=montpellier_hotels.js></script>\r\n</head>\r\n\r\n<body>\r\n\r\n<table name=LAYOUT WIDTH=85% BORDER=0 align=center>\r\n');
	document.write('<TR><TD colspan=3> <table cellspacing=0 cellpadding=0 border=0 width=100%>\r\n');
	document.write('<tr><td><img src=http://www.polhotels.com/cities_gfx/hotels.gif alt=\"Montpellier Hotels\"><span style="position: relative; left: -119px; top: -2px; font-size: 22px;"><nobr>Montpellier Hotels</nobr></span></td><td align=right valign=bottom><a href=http://www.res99.com/nexres/cars/search.cgi?src=10004159 target=_blank><img src=http://www.polhotels.com/cities_gfx/car.gif width=125 height=26 border=0></a><img src=b.gif width=5 height=1>\r\n');
	document.write('<a href=http://www.res99.com/nexres/start-pages/frame.cgi?src=10004159&product=AIR target=_blank><img src=http://www.polhotels.com/cities_gfx/air.gif width=125 height=26 border=0></a><img src=b.gif width=5 height=1><a href=mailto:ontravel@pol.pl><img src=http://www.polhotels.com/cities_gfx/contact.gif width=126 height=25 border=0></a></td></tr>\r\n');
	document.write('<tr><td colspan=2><img src=b.gif width=1 height=4></td></tr>\r\n');
	document.write('<tr><td bgcolor=#333366 colspan=2><img src=b.gif width=1 height=1></td></tr></table><img src=b.gif width=1 height=7><br>\r\n');
	document.write('<b>Welcome to Montpellier, Italy!</b>\r\n');
	document.write(" We present one of the most comprehensive selections of hotels in Montpellier available through the web, with detailed information on the hotels&nbsp; facilities, photos, maps, and secure reservation forms.<Br> Whether you\'re on a budget or looking for luxury accommodations in Montpellier, our Montpellier hotels directory offers a wide range of possibilities for your stay, from cheap hotels, inns, motels, to deluxe hotels. Some of the hotels presented in this directory offer <u>prices lower than the hotel rack rates</u>. These kind of offers are exclusive for <a class=hotel href=http://www.hotelsitalyonline.com>hotelsitalyonline.com</a> and are available only when booked through our secure reservation forms.<br><img src=b.gif width=1 height=10><br></TD></TR>\r\n");
	document.write('<TR><TD width=50% valign=top class=light><TABLE name=ALLHOTELS width=100% cellspacing=0 cellpadding=0 border=0>\r\n');
	document.write('<tr><td colspan=4 align=left height=28 valign=top class=title><table cellspacing=0 cellpadding=0 width=100% border=0><tr height=28>\r\n');
	document.write('<td class=title align=left valign=top><img src=http://www.polhotels.com/cities_gfx/r1.gif width=14 height=9></td>\r\n');
	document.write('<td class=title> All Montpellier hotels</td><td align=right class=title><font class=a3>Currently <b>'+hotels.length+' hotels</b> available</font></td>\r\n');
	document.write('<td class=title align=right valign=top><img src=http://www.polhotels.com/cities_gfx/r2.gif width=14 height=9></td></table></td></tr>\r\n');
	document.write('<tr><td colspan=4 bgcolor=#333366><form name=theForm>\r\n');
	document.write('<table name=marginsearchbox cellspacing=0 cellpadding=0 class=title border=0 width=100%><tr><td><img src=b.gif width=1 height=1></td><td><table width=100% cellspacing=0 cellpadding=2 border=0 class=normal style="font-size:8pt">\r\n');
	document.write('<tr class=old><td colspan=4><img src=b.gif width=1 height=1></td></tr>\r\n');
	document.write('<tr class=old><td><img src=b.gif width=3 height=1></td>\r\n');
	document.write('<td><img src=arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Category</td>\r\n');
	document.write('<td align=center><select onchange="listHotels()" style="width:80px;" name=category>\r\n');
	document.write('<option value="all">all</option><option value="5" '+selCategory[5]+'>5 stars</option><option value="4" '+selCategory[4]+'>4 stars</option><option value="3" '+selCategory[3]+'>3 stars</option><option value="2" '+selCategory[2]+'>2 stars</option>\r\n');
	document.write('<option value="1" '+selCategory[1]+'>other</option></select></td><td><img src=b.gif width=10 height=1><img src=arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Location&nbsp;\r\n');
	document.write('<select style="width:180px;" name=location onchange="listHotels()">\r\n');
	document.write('<option value="0">all</option><option value="1" '+selLocation[1]+'>city center</option><option value="2" '+selLocation[2]+'>suburbs</option><option value="3" '+selLocation[3]+'>out of city</option><option value="4" '+selLocation[4]+'>airport</option></select></td>\r\n');
	document.write('</select></td>\r\n');
	document.write('</select></td></tr>\r\n');
	document.write('<tr class=old><td><img src=b.gif width=3 height=1></td>\r\n');
	document.write('<td><img src=http://www.polhotels.com/cities_gfx/arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;<nobr>Prices from</nobr></td>\r\n');
	document.write('<td align=center><select style="width:80px;" name=priceRange onchange="listHotels()">\r\n');
	document.write('<option value="all">all</option><option value="0" '+selPrice[0]+'>< &euro; 50</option><option value="50" '+selPrice[50]+'>&euro; 50 - &euro; 100</option><option value="100" '+selPrice[100]+'>&euro; 100 - &euro; 150</option>\r\n');
	document.write('<option value="150" '+selPrice[150]+'>&euro; 150 - &euro; 200</option><option value="200" '+selPrice[200]+'>> &euro; 200</option></select></td>\r\n');
	document.write('<td><table cellspacing=0 cellpadding=0 border=0 width=100% class=normal style="font-size:8pt">\r\n');
	document.write('<tr class=old><td width=50%><img src=b.gif width=10 height=1><img src=arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Fitness<img src=b.gif width=5 height=1><input type=checkbox name=fitness onclick="listHotels()" '+selFitness+'></td><td width=50%><img src=b.gif width=10 height=1><img src=arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Business<img src=b.gif width=5 height=1><input type=checkbox name=business onclick="listHotels()" '+selBusiness+'>&nbsp;</td></tr>\r\n');
	document.write('</table></td></tr>\r\n');

//	document.write('<option value="all">all</option><option value="1" '+selLocation[1]+'>city center</option><option value="2" '+selLocation[2]+'>suburbs</option><option value="3" '+selLocation[3]+'>out of city</option></select></td>');
//	document.write('<td><img src=b.gif width=10 height=1><img src=http://www.polhotels.com/cities_gfx/arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Fitness<img src=b.gif width=5 height=1><input type=checkbox name=fitness onclick="listHotels()" '+selFitness+'><img src=b.gif width=10 height=1><img src=http://www.polhotels.com/cities_gfx/arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Business<img src=b.gif width=5 height=1><input type=checkbox name=business onclick="listHotels()" '+selBusiness+'> </td></tr>');

	document.write('<tr class=old><td colspan=4><img src=b.gif width=1 height=1></td></tr>\r\n');
	document.write('</form></table name=searchbox></td><td><img src=b.gif width=1 height=1></td></tr><tr><td colspan=3><img src=b.gif width=1 height=1></td></table name=marginsearchbox></td></tr>\r\n');
	document.write('</table name=allhotels></td><td width=5></td>\r\n');
	document.write('<td width=50% valign=top><img src=b.gif width=1 height=7><br><img src=http://www.polhotels.com/cities_gfx/cen2.gif width=13 height=13 align=middle> - city center <br><img src=http://www.polhotels.com/cities_gfx/fit2.gif width=13 height=13 align=middle> - fitness facilities: swimming pool / gym / tennis courts <br><img src=http://www.polhotels.com/cities_gfx/bus2.gif width=13 height=13 align=middle> - business facilities: business center / PC available to guests<br><img src=http://www.polhotels.com/cities_gfx/ins.gif width=13 height=13 align=middle> - instant availability check and reservations<br><font><b>Recommended hotels are marked with this color.</b></font></td></tr>\r\n');
// Koniec elementow statycznych

// test zmiennych:
// document.write('cat: ' + category + ' loc: ' +locationSearch + ' price: ' + priceRange +' fit: ' + fitness + ' bus: ' + business);

// test sortowanie:

	document.write('<tr><td colspan=3 class=light><table name=marginesy cellspacing=0 cellpadding=0 width=100%><tr><td><img src=b.gif width=3 height=0></td><td><table name="wyniki" cellspacing=0 cellpadding=1 border=0 width=100%>\r\n');
	sortPrice();
	sortCategory();
	var lastIndex = 99999;
	var resCount = 0;
	
	for (k=0; k<hotels.length; k++) //glowna petla
	{
// Okreslenie price range

		skok = 50;
		for (r=0; r<5; r++)
		{
			if (hotels[k].price<200)
			{
				if (hotels[k].price>=r*skok&&hotels[k].price<(r*skok+skok)) hotelPriceRange = r*skok;
			}
			else hotelPriceRange = 200;
		}

// warunki

		if ( (hotels[k].dist.charAt(locationSearch)=="1") && 
			 (hotels[k].fit=="1" || !fitness) && 
			 (hotels[k].bus=="1" || !business) && 
			 (hotelPriceRange==priceRange || priceRange=="all") && 
			 (hotels[k].cat==category || category=="all") ) 
			{
				resCount++;

//zmienne obrazkow

				var imgFit, imgBus, imgCen, imgIns
				if (hotels[k].fit==1) imgFit = "<img src=http://www.polhotels.com/cities_gfx/fit2.gif width=13 height=13>"; else imgFit ="";
				if (hotels[k].bus==1) imgBus = "<img src=http://www.polhotels.com/cities_gfx/bus2.gif width=13 height=13>"; else imgBus ="";
				if (hotels[k].dist.charAt(1)=="1") imgCen = "<img src=http://www.polhotels.com/cities_gfx/cen2.gif width=13 height=13>"; else imgCen ="";
				if (hotels[k].instant==1) imgIns = "<img src=http://www.polhotels.com/cities_gfx/ins.gif width=13 height=13>"; else imgIns ="";

// okreslenie czy to pierwszy hotel w swej kat.

			 	if (lastIndex==99999) isFirst="yes";
				else 
					if(hotels[k].cat!=hotels[lastIndex].cat) {isFirst="yes";} 
	 				else isFirst="no";

				lastIndex0 = lastIndex; // kontrola
			 	lastIndex=k;

				if (isFirst=="yes") 
				{
					if (lastIndex0!=99999) document.write('<tr><td colspan=9><hr></td></tr>\r\n');
					else document.write('<tr><td width=27%></td><td></td><td></td><td width=5%><td><img src=b.gif width=10 height=4></td><td width=27%></td><td></td><td></td><td width=5%></td></tr>\r\n');
					document.write('<tr><td colspan=9 align=left ><b class=h3>'+hotels[k].cat+'-star Montpellier hotels</b class=h3></td></tr><tr><td colspan=9><hr></td></tr>\r\n');
				}

// wypis hotelu		

/* AP */		if (isFirst=="yes")	resCount=1;

				if (resCount%2!=0) 
				{

//document.write('<br>Hotel:' + hotels[k].name + ' Cat: ' + hotels[k].cat + ' Price: ' + hotels[k].price +' Dist: ' + hotels[k].dist + ' Fit: ' + hotels[k].fit + ' Bus: ' +hotels[k].bus + ' Town: ' + hotels[k].town + ' PriceRange: ' + hotelPriceRange + ' last index: ' + lastIndex0 + imgFit + imgBus + imgCen + imgIns + '1st column' );

					document.write('<tr><td width=27% valign=middle><a href="'+hotels[k].dir+'" class=hotel>'+hotels[k].name+'</a></td><td valign=middle> '+imgCen+ ' ' +imgFit + ' '+ imgBus + ' '+imgIns+ ' </td><td align=right valign=middle>from</td><td align=right valign=middle width=5%><b>&euro; '+hotels[k].price+'</b></td><td><img src=b.gif width=15 height=1></td>\r\n');
				}
				else 
				{

//document.write('<br>Hotel:' + hotels[k].name + ' Cat: ' + hotels[k].cat + ' Price: ' + hotels[k].price +' Dist: ' + hotels[k].dist + ' Fit: ' + hotels[k].fit + ' Bus: ' +hotels[k].bus + ' Town: ' + hotels[k].town + ' PriceRange: ' + hotelPriceRange + ' last index: ' + lastIndex0 + imgFit + imgBus + imgCen + imgIns + '2 nd column');

					document.write('<td width=27% valign=middle><a href="'+hotels[k].dir+'" class=hotel>'+hotels[k].name+'</a></td><td valign=middle> '+imgCen+ ' ' +imgFit + ' '+ imgBus + ' '+imgIns+ ' </td><td align=right valign=middle>from</td><td align=right valign=middle width=5% ><b>&euro; '+hotels[k].price+'</b></td></tr>\r\n');
				}
			}
		}	// koniec glownej petli

	if (resCount==0) document.write("<img src=b.gif width=1 height=5><br><b><i>No hotels matched your criteria. Please try again.</i></b><br><img src=b.gif width=1 height=5>\r\n");
	document.write('</table name=wyniki><img src=b.gif width=1 height=5></td><td><img src=b.gif width=3 height=1></td></tr></table name=marginesy></td></tr>\r\n');

//legenda

	document.write('</TABLE name=LAYOUT>\r\n');
	document.write('<img src=b.gif width=1 height=5><br><div align=center style="font:8pt;">&copy; 2004 Montpellier hotels</i></div>\r\n');
	document.write('</td></tr></table></td><td><img src=b.gif width=1 height=1></td></tr><tr><td><img src=b.gif width=1 height=1></td></tr></table name=linksmargins></td></tr></table name=LAYOUT>\r\n');
	document.write('</body></html>\r\n');
}


