/* author: Dominik Cabos */
/* Creation date: 2004-01-15 */

/* Modified: Halina Jasklowska */

// dist - string began with 1 (for 'all' category). 1 indicates hotel should be displayed during listing suitable category, 0 - no display

// city center 110000
// suburbs 101000
// out of city 100100
// airport 100010


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('110000',5,1,0,185,0,'EUR','http://www.hotelsingermany.com/Leipzig/Furstenhof','Hotel Furstenhof Leipzig','Leipzig');
hotels[i++] = new hotel('110000',5,1,1,139,0,'EUR','http://www.hotelsingermany.com/Leipzig/Inter-Continental','Inter-Continental Hotel','Leipzig');
hotels[i++] = new hotel('110000',5,1,0,139,0,'EUR','http://www.hotelsingermany.com/Leipzig/Marriott','Marriott Hotel','Leipzig');
hotels[i++] = new hotel('110000',5,1,1,85,0,'EUR','http://www.hotelsingermany.com/Leipzig/RenaissanceLeipzig','Renaissance Leipzig','Leipzig');
hotels[i++] = new hotel('101000',4,1,1,55,0,'EUR','http://www.hotelsingermany.com/Leipzig/Accento','<font>Accento Hotel</font>','Leipzig');
hotels[i++] = new hotel('110000',4,1,1,58,0,'EUR','http://www.hotelsingermany.com/Leipzig/AstronLeipziganderMesse','Astron Leipzig an der Messe','Leipzig');
hotels[i++] = new hotel('101000',4,0,0,72,0,'EUR','http://www.hotelsingermany.com/Leipzig/CountryParkTop','Country Park Top Hotel','Leipzig');
hotels[i++] = new hotel('110000',4,0,0,88,0,'EUR','http://www.hotelsingermany.com/Leipzig/Dorint','Dorint Hotel','Leipzig');
hotels[i++] = new hotel('101000',4,1,1,79,0,'EUR','http://www.hotelsingermany.com/Leipzig/imSachsenpark','Hotel im Sachsenpark','Leipzig');
hotels[i++] = new hotel('110000',4,1,1,64,0,'EUR','http://www.hotelsingermany.com/Leipzig/Lindner','Lindner Hotel','Leipzig');
hotels[i++] = new hotel('110000',4,1,0,75,0,'EUR','http://www.hotelsingermany.com/Leipzig/RemaVierJahreszeiten','Rema Vier Jahreszeiten','Leipzig');
hotels[i++] = new hotel('110000',4,1,1,75,0,'EUR','http://www.hotelsingermany.com/Leipzig/SeasidePark','Seaside Park Hotel','Leipzig');
hotels[i++] = new hotel('101000',4,1,1,70,0,'EUR','http://www.hotelsingermany.com/Leipzig/SoratMesse-','Sorat Messe-Hotel','Leipzig');
hotels[i++] = new hotel('101000',4,1,0,85,0,'EUR','http://www.hotelsingermany.com/Leipzig/Treff','Treff Hotel','Leipzig');
hotels[i++] = new hotel('101000',3,0,0,57,0,'EUR','http://www.hotelsingermany.com/Leipzig/Alba','Alba Hotel','Leipzig');
hotels[i++] = new hotel('101000',3,0,0,54,0,'EUR','http://www.hotelsingermany.com/Leipzig/BestWesternWindorf','Best Western Hotel Windorf','Leipzig');
hotels[i++] = new hotel('101001',3,0,1,61,0,'EUR','http://www.hotelsingermany.com/Leipzig/BreitenfelderHofTop','Breitenfelder Hof Top','Leipzig');
hotels[i++] = new hotel('110000',3,0,0,58,1,'EUR','http://www.hotelsingermany.com/Leipzig/ArtisSuite','<font>City Partner Suite Hotel Leipzig</font>','Leipzig');
hotels[i++] = new hotel('110000',3,1,0,91,0,'EUR','http://www.hotelsingermany.com/Leipzig/HolidayInnGardenCourt','Holiday Inn Garden Court','Leipzig');
hotels[i++] = new hotel('101000',3,0,0,63,0,'EUR','http://www.hotelsingermany.com/Leipzig/RemaAmbassador','Rema Ambassador Hotel','Leipzig');
hotels[i++] = new hotel('110000',3,0,0,44,0,'EUR','http://www.hotelsingermany.com/Leipzig/RemaExcelsior','Rema Excelsior Hotel','Leipzig');
hotels[i++] = new hotel('101001',3,0,0,48,0,'EUR','http://www.hotelsingermany.com/Leipzig/TopGlobanaAirport','Top Globana Airport Hotel','Leipzig');
hotels[i++] = new hotel('101000',3,1,1,70,0,'EUR','http://www.hotelsingermany.com/Leipzig/VCH-Michaelis','VCH-Hotel Michaelis','Leipzig');
hotels[i++] = new hotel('110000',3,0,0,57,0,'EUR','http://www.hotelsingermany.com/Leipzig/Vivaldi','Vivaldi Hotel','Leipzig');
hotels[i++] = new hotel('110000',2,0,0,48,0,'EUR','http://www.hotelsingermany.com/Leipzig/Achat','<font>Achat Hotel</font>','Leipzig');
																
																	

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>Leipzig 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=leipzig_hotels/leipzig_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><img src=b.gif width=740 height=10> <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=\"Leipzig Hotels\"><span style="position: relative; left: -119px; top: -2px; font-size: 22px;"><nobr>Leipzig 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 Leipzig, Germany!</b>\r\n');
	document.write(" We present one of the most comprehensive selections of hotels in Leipzig 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 Leipzig, our Leipzig 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.hotelsingermany.com>hotelsingermany.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 Leipzig 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=http://www.polhotels.com/cities_gfx/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=http://www.polhotels.com/cities_gfx/arrow.gif width=4 height=7>&nbsp;&nbsp;&nbsp;Location&nbsp;\r\n');
	document.write('<select style="width:80px;" 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></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=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+'></td><td width=50%><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+'>&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><img src=b.gif width=10></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 Leipzig 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 Leipzig 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');
}


