	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="86" height="20" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Preis vorher:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Jetzt nur noch:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/Sonnenblume348x300.JPG",
		348, 300,
		"1", "Mister &amp; Misses Hessen Wahl &amp; Bikini-Deluxe",
		"SZENE - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"", "5",
		"", "pd1032259319.htm",
		"", 0,
		"033", "0",
		 1)
	
		Entry[1] = new Element(
		1, "assets/thumb/Missen Frankfurt Main.jpg",
		349, 277,
		"002", "SZENE - Miss Frankfurt &amp;",
		" BIKINI-DELUXE - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"", "5",
		"", "pd1177033555.htm",
		"", 0,
		"033", "0",
		 1)
	
		Entry[2] = new Element(
		2, "",
		0, 0,
		"_", "",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "3",
		"", "",
		"", 0,
		"004", "0",
		 1)
	
		Entry[3] = new Element(
		3, "assets/thumb/Bild400x653.jpg",
		653, 400,
		"9", "BILD ZEITUNG Frankfurt - KLICK FÜR DETAILS!",
		"15 juli 2002", "",
		"0", "0",
		"1", 1,
		"", "4",
		"", "pd1035668093.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[4] = new Element(
		4, "assets/thumb/Frank.Rundschau2.jpg",
		223, 450,
		"10", "FRANKFURTER RUNDSCHAU - KLICK FÜR DETAILS!",
		"Frankfurt, 15.07.2002", "",
		"0", "0",
		"1", 1,
		"", "4",
		"", "pd1035672044.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[5] = new Element(
		5, "assets/thumb/Misses Hessen Bild 2.jpg",
		260, 300,
		"32", "BILD ZEITUNG Frankfurt - KLICK FÜR DETAILS!",
		"3 Juni 2002", "",
		"0", "0",
		"1", 1,
		"", "4",
		"", "pd1036015266.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[6] = new Element(
		6, "assets/thumb/Miss Hessen 2002,Frank.Rundschau18.11.jpg",
		186, 450,
		"2323", "FRANKFURTER RUNDSCHAU - Klick für Details!",
		"Frankfurt, 18.11.02", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1053984709.htm",
		"", 0,
		"007", "0",
		 1)
	
		Entry[7] = new Element(
		7, "assets/thumb/Miss Hessen 2002,Bildzeitung18.11.jpg",
		300, 217,
		"454", "BILD ZEITUNG Frankfurt - KLICK FÜR DETAILS!",
		"18.11.02", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1053985316.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[8] = new Element(
		8, "assets/thumb/spb66[1].jpeg",
		360, 234,
		"232", "RHEIN MAIN NET - Sportsball - Klick für Details!",
		"Miss World 2002, Franz Beckenbauer, Miss Frankfurt und Miss Hessen 02 - 08.11.02                 ", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1164177386.htm",
		"", 0,
		"007", "0",
		 1)
	
		Entry[9] = new Element(
		9, "assets/thumb/2  Models Start.jpg",
		390, 300,
		"336", "Queen of the World &amp; Bikini-Deluxe",
		"BERLIN - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-632473652.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[10] = new Element(
		10, "assets/thumb/Playboy dez.02.jpg",
		223, 300,
		"3995", "PLAYBOY Playmate 12/02 - KLICK FÜR DETAILS!",
		"Bikini-Deluxe, Silvana Bayer &amp; Tap Dogs", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1058950998.htm",
		"", 0,
		"007", "0",
		 1)
	
		Entry[11] = new Element(
		11, "assets/thumb/LISA 288x377.jpg",
		288, 377,
		"54454", "LISA Zeitschrift - KLICK FÜR DETAILS!",
		"13/2004 Ausgabe", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1083229927.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[12] = new Element(
		12, "assets/thumb/Queen of the World Berlin1- Jan.jpg",
		288, 400,
		"23258", "NET NEWS - Berlin - KLICK FÜR DETAILS!",
		"Queen of the World Berlin - 25.01.2004", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd353420141.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[13] = new Element(
		13, "assets/thumb/EveScheer Maxim 348x300final.jpg",
		348, 300,
		"3562", "&rsquo;MAXIM&rsquo; Zeitschrift Fotoaufnahme mit Bikini-Deluxe, KAPSTADT, feb. 2004",
		"Eve Scheer, feb. 2004 - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1086989877.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[14] = new Element(
		14, "assets/thumb/Silvana Bayer390x300.jpg",
		390, 300,
		"6541", "&rsquo;MAXIM&rsquo; Zeitschrift Fotoaufnahme mit Bikini-Deluxe, KAPSTADT, feb. 2004",
		"Silvana Bayer - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1086992329.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[15] = new Element(
		15, "assets/thumb/Rosaj..jpg",
		350, 300,
		"59865", "Miss Baden Württemberg 2004",
		"Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1089810270.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[16] = new Element(
		16, "assets/thumb/Blond 390x300.jpg",
		390, 300,
		"142", "Bikini-Deluxe &amp; Miss Braunschweig 2004",
		"Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-448639516.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[17] = new Element(
		17, "assets/thumb/BKcap200.jpg",
		200, 200,
		"34531", "Clip Cap Bikini-Deluxe",
		"schwarz oder weiss", "Bikini-Deluxe",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[18] = new Element(
		18, "assets/thumb/guerteltasche300.jpg",
		300, 300,
		"534", "Gürteltasche (Clip)",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[19] = new Element(
		19, "assets/thumb/clipbluse3001.jpg",
		300, 300,
		"4564", "Gürtel und Bluse (Clip)",
		"Bikini-Deluxe", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[20] = new Element(
		20, "assets/thumb/21.jpg",
		300, 493,
		"5341", "Oberteil mit Hose",
		"weiss/grau meliert/gelb", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[21] = new Element(
		21, "assets/thumb/whiteblue300.jpg",
		300, 300,
		"a", "Multicolour",
		"Bikini-Deluxe", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "#DROP#",
		"", 1,
		"4564", "0",
		 1)
	
		Entry[22] = new Element(
		22, "assets/thumb/galaxia300.jpg",
		300, 300,
		"2322", "Galaxia",
		"Bikini-Deluxe", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "#DROP#",
		"", 1,
		"4564", "0",
		 1)
	
		Entry[23] = new Element(
		23, "assets/thumb/ruecksack300-.jpg",
		300, 300,
		"6", "Rücktasche (Clip)",
		"Bikini-Deluxe", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[24] = new Element(
		24, "assets/thumb/Cat Eyes200.jpg",
		200, 200,
		"165-1", "Cat Eyes ",
		"Bikini Set", "Bikini-Deluxe",
		"79.9", "0",
		"1", 1,
		"", "1",
		"Farbe;Schwarz@Grösse;Höschen 34/75 A@", "#DROP#",
		"", 1,
		"4564", "0",
		 1)
	
		Entry[25] = new Element(
		25, "assets/thumb/silverstar300.jpg",
		300, 300,
		"23423", "Galaxy &amp; Stars",
		"Bikini-Deluxe", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "#DROP#",
		"", 1,
		"4564", "0",
		 1)
	
		Entry[26] = new Element(
		26, "assets/thumb/Presse madeinBrazil517x400.jpg",
		517, 400,
		"345677", "FRANKFURTER RUNDSCHAU - KLICK FÜR DETAILS!",
		"Karben, 6. JUNI 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1118926542.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[27] = new Element(
		27, "assets/thumb/Bikini-Deluxe Modenschau.jpg",
		331, 700,
		"46567", "NEUE PRESSE - KLICK FÜR DETAILS!",
		"Karben, 6. Juni 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-634669960.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[28] = new Element(
		28, "assets/thumb/Taunus Zeitung 21.06.05.jpg",
		633, 1654,
		"7665675", "TAUNUS ZEITUNG - KLICK FÜR DETAILS!",
		"Taunus, 21. Juni 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1759910605.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[29] = new Element(
		29, "assets/thumb/Accessoires Messe 04-2.jpg",
		747, 634,
		"9879", "FRANKFURTER ALLGEMEINE ZEITUNG - KLICK FÜR DETAILS!",
		"Internationale Lederwaren Messe, Offenbach, März 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1943356775.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[30] = new Element(
		30, "assets/thumb/presse2_517[1].jpg",
		517, 260,
		"13985", "LEDERWAREN REPORT - KLICK FÜR DETAILS!",
		"Offenbach, Zeitschrift/April 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd703489647.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[31] = new Element(
		31, "assets/thumb/ACD5A.jpg",
		378, 298,
		"9875", "Bikini-Deluxe &amp; Miss Universe 2005 ",
		"Fitness/Aerobic - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1122044446.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[32] = new Element(
		32, "assets/thumb/media380x300.jpg",
		380, 300,
		"07968", "Made in Brazil Fashion Show",
		"Karben - Klick für Details!", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1122765060.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"6758344", "Deutsche Spitzenblätter - KLICK FÜR DETAILS!",
		"Oberursel, August 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1123274285.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[34] = new Element(
		34, "assets/thumb/Int.West Deutsche390x300.jpg",
		390, 300,
		"234", "Inter. Deut. Meisterschaft/Miss Fitness 2005 - KLICK FÜR DETAILS!",
		"Bikini-Deluxe &amp; Daniela Thon  Figur/Body 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-898190932.htm",
		"", 1,
		"033", "0",
		 1)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"987871", "FRANKFURTER ALLGEMEINE ZEITUNG - KLICK FÜR DETAILS!",
		"Königstein, Februar 2006", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1139586714.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[36] = new Element(
		36, "",
		0, 0,
		"9861", "RTL TV, deutsche BEACHVOLLEYBALL Mannschaft und Bikini-Deluxe",
		"Fuerte Ventura, Mai 2004 - KLICK FÜR DETAILS!", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1141477625.htm",
		"", 0,
		"007", "0",
		 1)
	
		Entry[37] = new Element(
		37, "",
		0, 0,
		"0981", "HESSISCHE RUNDFUNK TV - Klick für Details!",
		"März 2005", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1141481920.htm",
		"", 0,
		"007", "0",
		 1)
	
		Entry[38] = new Element(
		38, "assets/thumb/Clipcarlamain.jpg",
		390, 300,
		"1223", "Modenschau - SPORTPARK",
		"12 Februar 2006 - Klick für Details!", "",
		"0", "0",
		"1", 0,
		"Stück", "5",
		"", "pd1143037307.htm",
		"", 0,
		"033", "0",
		 1)
	
		Entry[39] = new Element(
		39, "",
		0, 0,
		"6978", "FRANKFURTER RUNDSCHAU - KLICK FÜR DETAILS!",
		"18 April 2006", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1149094509.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[40] = new Element(
		40, "",
		0, 0,
		"656565", "Frankfurter Neue Presse - Klick für Details!",
		"Eppstein, 20 Mai 2006 ", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1130313117.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[41] = new Element(
		41, "",
		0, 0,
		"09867", "Main-Taunus-Kurier - Klick für Details!",
		"Eppstein, 13.  Mai 2006", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1159011511.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[42] = new Element(
		42, "",
		0, 0,
		"786", "Bad Sodener Zeitung - Klick für Details! ",
		"Bad Soden, 8 Juni 2006", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1152092570.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[43] = new Element(
		43, "",
		0, 0,
		"8643", "CORREIO BRAZILIENSE - KLICK FÜR DETAILS!",
		"Brasilia, 15 Juni 2006", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1152645246.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[44] = new Element(
		44, "",
		0, 0,
		"09812", "Estadao/Zeitung - Klick für Details!",
		"Sao Paulo, Brasilien", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1152877128.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[45] = new Element(
		45, "",
		0, 0,
		"499988", "Hochtaunus.de - Klick für Details!",
		"Hochtaunus, Februar 2006", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1153746335.htm",
		"", 0,
		"007", "0",
		 1)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"09877", "TAUNUS ZEITUNG - KLICK FÜR DETAILS!",
		"29 MAI 2007", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1180951754.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[47] = new Element(
		47, "",
		0, 0,
		"87651", "HESSISCHE RUNDFUNK TV - KLICK FÜR DETAILS!",
		"Hessenschau, 6 Juli 2007", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1096113735.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[48] = new Element(
		48, "",
		0, 0,
		"7665", "HESSISCHE RUNDFUNK TV - Klick für Details!",
		"&rsquo;Mit Koriander und Cumin&rsquo; - 15 Juli 2007", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1187259891.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[49] = new Element(
		49, "",
		0, 0,
		"777", "Zeitschrift JOURNAL FRANKFURT",
		"24 Aug.-6.Sept. 2007", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1191446039.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[50] = new Element(
		50, "",
		0, 0,
		"888", "HESSISCHE RUNDFUNK TV - KLICK FÜR DETAILS!",
		"MAIN TOWER LIFESTYSLE", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1455216157.htm",
		"", 1,
		"007", "0",
		 1)
	
		Entry[51] = new Element(
		51, "assets/thumb/12.jpg",
		300, 426,
		"1123", "TOP &amp; SHORT",
		"schwarz/oliven", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[52] = new Element(
		52, "assets/thumb/8.jpg",
		300, 388,
		"322", "TOP &amp; HOSE",
		"weiss u.olive", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[53] = new Element(
		53, "assets/thumb/11.jpg",
		300, 519,
		"1233", "JACKE &amp; HOSE",
		"schwarz/grau", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[54] = new Element(
		54, "assets/thumb/4.jpg",
		300, 283,
		"2344", "JACKE/BLUSE/SHORT",
		"silber/weiss/blau", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[55] = new Element(
		55, "assets/thumb/3.jpg",
		300, 394,
		"3242", "WESTE,HOSE,TOP",
		"gold/versilbert", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[56] = new Element(
		56, "assets/thumb/22.jpg",
		300, 429,
		"3243", "JOGGING SET",
		"rot", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[57] = new Element(
		57, "assets/thumb/14.jpg",
		300, 300,
		"34231", "TOP &amp; HOSE",
		"schwarz/rot", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[58] = new Element(
		58, "assets/thumb/9.jpg",
		300, 442,
		"344", "Oberteil",
		"lila", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[59] = new Element(
		59, "assets/thumb/20.jpg",
		300, 467,
		"3451", "TOP &amp; HOSE",
		"grau/schwarz", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[60] = new Element(
		60, "assets/thumb/32.jpg",
		300, 377,
		"4324", "Oberteil",
		"schwarz oder weiss mit silber", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[61] = new Element(
		61, "assets/thumb/17.jpg",
		300, 455,
		"4334", "OBERTEIL ",
		"lila", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[62] = new Element(
		62, "assets/thumb/2.jpg",
		300, 445,
		"434", "JACKE",
		"silber", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[63] = new Element(
		63, "assets/thumb/Kapuzenjacke.jpg",
		300, 300,
		"44334", "KAPUZENJACKE",
		"Fitness Wear", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[64] = new Element(
		64, "assets/thumb/15.jpg",
		300, 224,
		"5641", "TOP &amp; HOSE",
		"weiss/lila", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[65] = new Element(
		65, "assets/thumb/10.jpg",
		300, 396,
		"5651", "Oberteil mit Hose",
		"schwarz/weis/grau", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[66] = new Element(
		66, "assets/thumb/Kapuzenweste.jpg",
		300, 300,
		"6555", "KAPUZENWESTE",
		"Fitnesswear", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[67] = new Element(
		67, "assets/thumb/Overall.jpg",
		300, 300,
		"6565", "OVERALL",
		"Fitness Outfit", "",
		"62", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[68] = new Element(
		68, "assets/thumb/23.jpg",
		300, 369,
		"767", "TOP &amp; HOSE",
		"rot/schwarz/weiss", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[69] = new Element(
		69, "assets/thumb/24.jpg",
		300, 257,
		"7686", "TOP &amp; HOSE",
		"grau meliert/weiss", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[70] = new Element(
		70, "assets/thumb/Shirt Hose.jpg",
		300, 300,
		"77889", "SHIRT &amp; HOSE",
		"Fitness Wear", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[71] = new Element(
		71, "assets/thumb/Top Hose.jpg",
		300, 300,
		"7789", "TOP &amp; HOSE",
		"Fitness Top &amp; Hose", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[72] = new Element(
		72, "assets/thumb/31.jpg",
		300, 413,
		"8771", "TOP &amp; HOSE mit BUND",
		"schwarz/rot", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[73] = new Element(
		73, "assets/thumb/MP3Streifen.jpg",
		300, 300,
		"8777", "MP3 STREIFEN",
		"Fitness Top &amp; Hose", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[74] = new Element(
		74, "assets/thumb/MP3Top.jpg",
		300, 300,
		"9887", "MP3 TOP",
		"Fitness Top", "",
		"39", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[75] = new Element(
		75, "assets/thumb/Top schwarz.jpg",
		300, 300,
		"98881", "TOP schwarz",
		"Fitness Wear", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[76] = new Element(
		76, "assets/thumb/29.jpg",
		300, 393,
		"4353", "JACKE &amp; HOSE",
		"schwarz/weiss", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[77] = new Element(
		77, "assets/thumb/16.jpg",
		300, 369,
		"4355", "TOP &amp; HOSE",
		"schwarz/weiss", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[78] = new Element(
		78, "assets/thumb/7.jpg",
		300, 396,
		"4441", "JOGGING SET",
		"silber", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
		Entry[79] = new Element(
		79, "assets/thumb/ClipHut200.jpg",
		200, 200,
		"4343", "Clip Cap ",
		"silber, rosa, gold/silber", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[80] = new Element(
		80, "assets/thumb/ClippyCorsette200.jpg",
		200, 200,
		"098", "Clip Korsett",
		"Aus Dosenclips Korsett", "Bikini-Deluxe",
		"169.9", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[81] = new Element(
		81, "assets/thumb/Car.BluseLong200.jpg",
		200, 200,
		"32221-1", "Alubluse ",
		"", "Bikini-Deluxe",
		"99.9", "0",
		"1", 1,
		"Stück", "2",
		"Grösse;32/34@Farbe;Pink@", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[82] = new Element(
		82, "assets/thumb/Red Set300.jpg",
		300, 300,
		"233", "Red Set (Clip)",
		"Bikini-Deluxe", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "#DROP#",
		"", 1,
		"9898", "0",
		 1)
	
		Entry[83] = new Element(
		83, "assets/thumb/5.jpg",
		300, 405,
		"3241", "Oberteil mit Details u. RV",
		"schwarz/weiss, lila/weiss, weiss/schwarz", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "#DROP#",
		"", 1,
		"343", "0",
		 1)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};