	// 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/btnaddtobag3.gif" width="77" height="32" 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/4009DP.jpg",
		80, 168,
		"4009", "Scalloped Macrame Lace Baby-Doll ",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;L@Farbe;Weiss@", "pd1063357681.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/4145DP.jpg",
		80, 131,
		"4145", "Sheer Baby Doll ",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;M@Farbe;Pink@", "pd1208350633.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/5593PAP.jpg",
		80, 206,
		"5593", "Hängerchen mit Blumenmuster",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;S@Farbe;Weiss@", "pd828996568.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/8175ar.jpg",
		80, 183,
		"8175", "Negligé mit Slip",
		"", "",
		"45", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;L@Farbe;Pink@", "pd-126275594.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/8156pCW.jpg",
		80, 207,
		"8156P", "Negligé mit Spitze",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;M@Farbe;Ivory@", "pd-458485060.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/8203W.jpg",
		80, 179,
		"8203", "Offenes Negligé mit Slip",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;L@Farbe;Babyblau@", "pd503419133.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/866AW.jpg",
		80, 198,
		"866", "Bodystocking",
		"", "",
		"19.9", "1",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@", "pd1287284262.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/body.JPG",
		80, 190,
		"911", "Body ärmellos",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1801418123.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/1111HP.jpg",
		80, 267,
		"1111", "Tolles Nachtkleid 2-teilig",
		"", "",
		"52.5", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;M@Farbe;Babyblau@", "pd-1905386048.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/1167P.jpg",
		80, 176,
		"1167", "Schönes langes Kleid - 2-teilig",
		"", "",
		"74.9", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;M@Farbe;Schwarz@", "pd-200715046.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/1205BW.jpg",
		80, 241,
		"1185", "Langes Kleid - 2-teilig",
		"", "",
		"59", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;L@Farbe;Pink@", "pd-773586759.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/tanga.JPG",
		80, 59,
		"01-01-0202", "Tüllstring mit Strasskette",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1158361494.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/dc.JPG",
		80, 62,
		"01-01-0216", "String mit DC-Logo aus Strass",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1336223625.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/GA2404AW.jpg",
		80, 79,
		"F2404", "String mit Stickerei",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;L@Farbe;Weiss@", "pd-152222970.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/GA2408AW.jpg",
		80, 82,
		"F2408", "String mit Stickerei",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;L@Farbe;Babyblau@", "pd-888979000.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/105W.jpg",
		80, 119,
		"PH105R", "Netzstrumpfhose (One Size)",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Rot@", "pd-1057986884.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/ph108W.jpg",
		80, 128,
		"PH108R", "Netzstrumpfhose mit Naht (One Size)",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Rot@", "pd2049776105.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/867W.jpg",
		80, 194,
		"867", "Sexy Bodystocking (One Size)",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1161790228.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/865W.jpg",
		80, 119,
		"865", "Spitzen-Body",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd1868636219.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/4250AW.jpg",
		80, 190,
		"4250", "Top mit Panty",
		"", "",
		"24", "0",
		"1", 1,
		"Stück", "15",
		"Grösse;L@Farbe;Pink@", "pd-1502704197.htm",
		"", 1,
		"TOP", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/C2464Cr.jpg",
		80, 184,
		"C2464", "Top mit Panty ",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "15",
		"Grösse;L@Farbe;Rot@", "pd23709782.htm",
		"", 1,
		"TOP", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/813W.jpg",
		80, 103,
		"813", "Spitzentop mit Slip",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "15",
		"Grösse;One Size@Farbe;Schwarz@", "pd2045606547.htm",
		"", 1,
		"TOP", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/811W.jpg",
		80, 216,
		"811", "Floral Spitzentop mit Slip",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "15",
		"Grösse;One Size@Farbe;Schwarz@", "pd1333073862.htm",
		"", 1,
		"TOP", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/208-1W.jpg",
		80, 100,
		"PH208", "Netzstrümpfe (One Size)",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;One Size@Farbe;Rot@", "pd450161072.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/202legWW.jpg",
		80, 173,
		"PH202", "Sheer Thigh-Hi Strumpf",
		"", "",
		"5", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;One Size@Farbe;Schwarz@", "pd1457099964.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/8381Dr.jpg",
		80, 208,
		"H8381", "Spitzen-Panty",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;L@Farbe;lilac@", "pd1296914470.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/F40556bW.jpg",
		80, 166,
		"40556", "Spitzen-Top mit Slip",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "15",
		"Grösse;L@Farbe;mocca@", "pd1476219409.htm",
		"", 1,
		"TOP", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/4251AJ.jpg",
		80, 116,
		"4251-1", "Baby Doll mit String",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;L@Farbe;Schwarz@", "pd-2068672132.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/C2321Cr.jpg",
		80, 162,
		"C2321", "Top mit String (Blumenmuster)",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "15",
		"Grösse;L@Farbe;taupe@", "pd-1606992315.htm",
		"", 1,
		"TOP", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/4253AP.jpg",
		80, 179,
		"4253", "Pyjama mit Short",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "9",
		"Grösse;L@Farbe;aqua@", "pd-1091270078.htm",
		"", 1,
		"PYA", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/P5799BP.jpg",
		80, 82,
		"P5799", "Shorts",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;L@Farbe;peach@", "pd475308350.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/P1333BP.jpg",
		80, 148,
		"P1333", "Trägerloser Bustier",
		"", "",
		"32.9", "0",
		"1", 1,
		"Stück", "6",
		"Grösse;L@Farbe;Schwarz@", "pd-1937168532.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/10f0240h.jpg",
		80, 120,
		"10f0240h", "Schönes Push-up-Set in hellblau ",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "3",
		"Grösse;65B@", "pd-1725968891.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/01-02bh Kopie.JPG",
		80, 68,
		"01-02-0100", "Bügel BH in rot und schwarz",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "2",
		"Grösse;75B@Farbe;Rot@", "pd-415641366.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/HL-601-pink.jpg",
		80, 113,
		"HL601", "Schönes BH-Set mit Stickerei ",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "3",
		"Grösse;75B@Farbe;hellrosa@", "pd-822719186.htm",
		"", 0,
		"7", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/0554-weiss.JPG",
		80, 78,
		"01-01-0554", "G-String (One Size)",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@", "pd-1317997044.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/0544-spitze rot.JPG",
		80, 63,
		"01-01-0554-2", "Spitzen G-String div. Farben (One Size)",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@Farbe;Blau@", "pd-342194245.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/01-01stringrot.JPG",
		80, 67,
		"01-01-0554-2-1", "Spitzen G-String div. Farben (One Size)",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@Farbe;Rot@", "pd1069868996.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/10k0008b.jpg",
		80, 119,
		"0235", "Spitzen Bügel-BH Set in schwarz",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "3",
		"Grösse;80B@", "pd-916060677.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/260.jpg",
		80, 65,
		"260", "String in schwarz/rot",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@", "pd-441151243.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/262.jpg",
		80, 72,
		"262", "Lackstring mit Kette",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@", "pd999304592.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/3693bP.jpg",
		80, 154,
		"3693", "Baby Doll mit Slip",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "0",
		"Grösse;S@Farbe;Pink@", "pd129551462.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/1397CP.jpg",
		80, 159,
		"1397", "2-teiliges Kleidchen mit Blumenmuster",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;L@", "pd-911299559.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/corage s.JPG",
		80, 158,
		"2034", "Traumhafte Corsage ",
		"", "",
		"49", "0",
		"1", 1,
		"Stück", "6",
		"Grösse;80B@Farbe;Schwarz@", "pd-396942944.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/s1597.jpg",
		80, 153,
		"S1597", "Body Stocking mit Rückenausschnitt",
		"", "",
		"24", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1391491784.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/S1167 Kopie.JPG",
		80, 156,
		"S1167", "Opaque Body Stocking mit Blumendesign",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1872756278.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/S274 kl.JPG",
		80, 331,
		"S2874", "Bodysuit mit Strumpfhalter und Strümpfe",
		"", "",
		"45", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1677684357.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/s1890.jpg",
		80, 220,
		"S1890", "Mesh Body Stocking",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd925931712.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/S8115kl.JPG",
		80, 257,
		"S8115", "Teddy ",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd-810101556.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/90201.jpg",
		80, 119,
		"90201", "Capri Mesh Strumpfhose",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Schwarz@", "pd1529585613.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/S1261.jpg",
		80, 111,
		"S1261", "Lace Bodystocking mit Rüschen",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd-503014840.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/P46M60kl.JPG",
		80, 242,
		"P46M60", "Rückenfreies Zebra Mini",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@", "pd-971486953.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/S1071.jpg",
		80, 240,
		"S1071", "Bodystocking mit Blättermusterung",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1770755723.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/S1116.jpg",
		80, 180,
		"S1116", "Bodystocking mit Ärmel und Rüschenabschluss",
		"", "",
		"36", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd412130631.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/S1138.jpg",
		80, 139,
		"S1138", "Zig Zag Bodystocking",
		"", "",
		"26.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1096077383.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/S1178.jpg",
		80, 250,
		"S1178", "Spiderweb Bodystocking mit Spaghetti-Träger",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1337291556.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/S1179.jpg",
		80, 229,
		"S1179", "Bodystocking grobmaschig",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd-488231029.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/S6030.jpg",
		80, 202,
		"GM30", "Sexy Lurex Mini",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;schwarz/gold@", "pd931622614.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/S6998.jpg",
		80, 218,
		"S6998", "Lurex Leoparden Mini",
		"", "",
		"44.9", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;gold/schwarz@", "pd-853415870.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/S6907.jpg",
		80, 158,
		"S6907", "Spider Web Mini",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;Schwarz@", "pd-408347839.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/S3222.jpg",
		80, 216,
		"S3222", "Langes Mesh Kleid",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;Schwarz@", "pd832341068.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/X9030.jpg",
		82, 133,
		"X9030", "Diamond Netzstrumpfhose",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Schwarz@", "pd-601464109.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/41681AP.jpg",
		80, 73,
		"600", "Spitzenslip",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;L@Farbe;hellgrün@", "pd505477371.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/F41639aW.jpg",
		80, 120,
		"41639", "Spitzenshorts",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;L@Farbe;dunkelblau@", "pd993657318.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/S6996.jpg",
		80, 327,
		"S6994", "Lurex Schlauch-Kleid",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;schwarz/gold@", "pd1255246226.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/S1628.jpg",
		80, 243,
		"S1628", "Spiderweb Bodystocking mit Nackenhalter",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1491923759.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/S1289.jpg",
		80, 241,
		"S1289", "Sehr grobmaschiger Bodystocking ",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1841201948.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/S1190.jpg",
		80, 200,
		"S1190", "Grobmaschiger Bodystocking",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1201188893.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/S1312.jpg",
		80, 244,
		"S1312", "V-Bodystocking ",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1659293014.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/1790.gif",
		80, 235,
		"S1790", "Bodystocking mit Ärmel",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd1705327461.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Sd1.jpg",
		80, 104,
		"SD1", "Strumpfhalter",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;Schwarz@", "pd1491381547.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/333h2W.JPG",
		80, 237,
		"333H2", "Suspender Strumpfhosen",
		"", "",
		"14", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Rot@", "pd870742846.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/161H3.jpg",
		80, 190,
		"161H3", "Suspender Panty Hose",
		"", "",
		"8.9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Rot@", "pd-536491222.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/9001h3.JPG",
		80, 223,
		"9001H3", "Netzstrumpfhose mit 3 Öffnungen",
		"", "",
		"8.9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Rot@", "pd1975927048.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/P148.jpg",
		80, 181,
		"P148", "Spiderweb Strumpfhosen",
		"", "",
		"15.9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Schwarz@", "pd143797951.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/ST101B-L.jpg",
		80, 256,
		"ST101BL", "Strumpfhosen im Straps Look mit Naht",
		"", "",
		"15.9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Schwarz@", "pd784261602.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/ST101-L.jpg",
		80, 246,
		"ST101L", "Strumpfhosen im Straps Look",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;Rot@", "pd-911220000.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/ST9001L.jpg",
		80, 242,
		"ST9001L", "Netz-Strumpfhosen im Straps Look",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "14",
		"", "pd379045875.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/T9014.jpg",
		80, 124,
		"T9014", "Open Wave Strümpfe",
		"", "",
		"9.95", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-2020080474.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/TP91.jpg",
		80, 129,
		"TP91", "Streifen Strümpfe",
		"", "",
		"14", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;One Size@Farbe;Rot@", "pd1673640693.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/TV9007.jpg",
		80, 129,
		"TV9007", "Gothic Strümpfe",
		"", "",
		"23.9", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-2051317872.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/S1875.jpg",
		80, 211,
		"S1875", "Flower Lace Body Stocking",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "12",
		"Grösse;One Size@Farbe;Schwarz@", "pd455807200.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/S8479.jpg",
		80, 209,
		"S8479", "Netz Teddy",
		"", "",
		"35", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd699748471.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/S8139kl.JPG",
		80, 213,
		"S8139", "Teddy hochgeschnitten",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd-277627142.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/S6111.jpg",
		60, 138,
		"S6111", "Lurex Mini  - Rückenfrei",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;babyblau/silber@", "pd-1592745306.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/S9994.jpg",
		80, 141,
		"S9994", "Lurex Schlauchkleid 2teilig",
		"", "",
		"35", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1668878091.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/7691CW.jpg",
		80, 120,
		"7691", "Teddy mit Blumenmuster",
		"", "",
		"35", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;M@Farbe;Schwarz@", "pd1814923215.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/S9981kl.JPG",
		80, 179,
		"S9981", "Lace Body Suit",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1862286767.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/S6179kl.JPG",
		80, 189,
		"S6179", "Durchsichtiges Minikleid",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;hellrosa@", "pd-859020505.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/333H4.jpg",
		80, 211,
		"333H4", "Big &quot;O&quot; Strumpfhose",
		"", "",
		"17", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;haut@", "pd1051248326.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/S6900kl.JPG",
		80, 149,
		"S6900", "Netz Mini",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;purple@", "pd-1769707573.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/S9975kl.JPG",
		80, 195,
		"S9975", "Leoparden Set",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1791516401.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/S6375kl.JPG",
		80, 213,
		"S6375", "Flower Minikleid",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;Schwarz@", "pd325576717.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/S6909kl.JPG",
		80, 180,
		"S6909", "Mesh Minikleid",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;Babyblau@", "pd-1020745718.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/S6303.jpg",
		80, 226,
		"S6303", "Very Sex Lurex Mini",
		"", "",
		"44.9", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;pink/silber@", "pd-510853197.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/S8177kl.jpg",
		80, 117,
		"S8177", "Sexy Langarm-Body",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd1736777574.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/S9973s.JPG",
		80, 190,
		"S9973", "Sexy 3er Set",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "7",
		"Grösse;One Size@Farbe;Schwarz@", "pd1241994791.htm",
		"", 1,
		"DE", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/S6112kl.JPG",
		80, 189,
		"S6112", "Lurexkleid",
		"", "",
		"34.9", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;One Size@Farbe;schwarz/silber@", "pd1617456803.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/S2797.jpg",
		80, 257,
		"S2797", "All in One Bodystocking",
		"", "",
		"44.9", "0",
		"1", 1,
		"Stück", "4",
		"Grösse;One Size@Farbe;Schwarz@", "pd-1973748970.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/T747U.jpg",
		80, 163,
		"S4748", "Sexy Strümpfe",
		"", "",
		"12.9", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;One Size@Farbe;Schwarz@", "pd1722628827.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/g.jpg",
		80, 152,
		"G", "Lurex Strumpfhosen",
		"", "",
		"18.5", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@", "pd-430462847.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/P747-1.jpg",
		80, 151,
		"747-1", "Ringel- Strumpfhosen",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;One Size@Farbe;schwarz/rot@", "pd-108546800.htm",
		"", 1,
		"STH", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/T747-24.jpg",
		80, 71,
		"747-24", "Ringelstrümpfe",
		"", "",
		"14", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;One Size@Farbe;rot/schwarz@", "pd-2025138660.htm",
		"", 1,
		"ST", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/413.jpg",
		80, 54,
		"413", "Transparenter String",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@Farbe;mehrfarbig@", "pd1097166243.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/411.jpg",
		80, 56,
		"411", "Netz-String",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "10",
		"Grösse;One Size@Farbe;Rot@", "pd1755968052.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/412.jpg",
		80, 75,
		"412", "Open String im Military-Look",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "10",
		"", "pd83171803.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/1454a.jpg",
		80, 107,
		"1454", "SEXY ** SPITZENSHIRT MIT KRAGEN ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "5",
		"Grösse;M@Farbe;Schwarz@", "pd-1127552910.htm",
		"", 1,
		"DW", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/1947a.jpg",
		80, 107,
		"422", "EXTRAVAGANTE JEANS VON WEITERN ",
		"", "",
		"89", "0",
		"1", 1,
		"Stück", "8",
		"Grösse;32@", "pd499162495.htm",
		"", 1,
		"JS", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/bigpic1461.JPG",
		80, 107,
		"1461", "Stretch Jeans von Wanli im Miss Sixty Look ",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "8",
		"Grösse;28 inch@", "pd1102009111.htm",
		"", 1,
		"JS", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/bigpic1479.JPG",
		80, 107,
		"1479", "Five Pocket Stretch Jeans in kompletter Faltenwaschung von Wanli",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "8",
		"Grösse;27 inch@", "pd-419495158.htm",
		"", 1,
		"JS", "0",
		 0)
	
// ** 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();
			};
		};