	// 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.html?" + 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="114" height="14" 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/Hobbythek Lamecreme.jpg",
		112, 110,
		"01020050", "Lamecreme P - nicht mehr lieferbar, kann durch das hochwertigere Emulsan II ersetzt werden",
		"Emulgator", "1",
		"0", "50",
		"1", 1,
		"", "6",
		"Inhalt;ml@", "pd-245961391.html",
		"", 1,
		"010101", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Hobbythek Mulsifan.jpg",
		110, 110,
		"01030100", "Mulsifan CPA",
		"Emulgator für Badeöle", "1",
		"2.25", "50",
		"1", 1,
		"", "6",
		"Inhalt;100 g@", "pd1282534698.html",
		"", 1,
		"010101", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Hobbythek Emulsan .jpg",
		106, 110,
		"01050050", "Emulsan II (ersetzt Lamecreme)",
		"Spezieller Emulgator", "1",
		"3.15", "50",
		"1", 1,
		"", "6",
		"Inhalt;50 g@", "pd-1332767786.html",
		"", 1,
		"010101", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Hobbythek Fluidlecithin.jpg",
		110, 110,
		"19060030", "Fluidlecithin-Super",
		"Hautpflegender Emulgator", "1",
		"5.95", "30",
		"1", 1,
		"", "6",
		"Inhalt;30 g@", "pd-50514444.html",
		"", 1,
		"010101", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11390010", "Kokos",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"2.1", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-1861017676.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11420010", "Cool",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.1", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd649097518.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/Hobbythek Avocadooel .jpg",
		110, 110,
		"02020100", "Avocadoöl",
		"Steigert die Widerstandsfähigkeit, beruhigt, regeneriert und glättet reife -, sensible - und trockene Haut", "2",
		"2.95", "50",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd1788850331.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Hobbythek Jojobaoel.jpg",
		110, 110,
		"02050100", "Jojobaöl",
		"Besonders sanft und reichhaltig. Bei reifer, rissiger, trockener und strapazierter, entzündeter Haut, Schuppen, Sonnenbrand und Akne", "2",
		"5.1", "30",
		"1", 1,
		"", "7",
		"Inhalt;100 ml@", "pd1663963741.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Hobbythek Mandeloel .jpg",
		110, 110,
		"02070100", "Mandelöl, süß",
		"Ein klassisches Kosmetiköl für jeden Hauttyp das gut von der Haut aufgenommen wird", "2",
		"1.95", "100",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd264617743.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Hobbythek Sesamoel.jpg",
		110, 110,
		"02090100", "Sesamöl",
		"In Sonnenkosmetik, bei trockenen Haaren, bei reifere, fahler oder schlecht durchbluteter Haut.", "2",
		"1.95", "100",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd-138512885.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Hobbythek Sojaoel.jpg",
		110, 110,
		"02100100", "Sojaöl",
		"Für fettende Haut, Mischhaut mit öliger Tendenz, unreine Haut, empfindliche Haut", "2",
		"1.45", "250",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd2054902012.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Hobbythek Weizenkeimoel.jpg",
		110, 110,
		"02120100", "Weizenkeimöl",
		"Hautstraffend, beugt vorzeitigen Alterungsprozessen der Haut vor", "2",
		"3.25", "250",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd1722742100.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Hobbythek Rizinussoel.jpg",
		110, 110,
		"02130100", "Rizinußöl",
		"Besonders geeignet für Lippenpflege und Lipgloss", "2",
		"1.8", "50",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd2027730811.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Hobbythek Macademianussoel 2.jpg",
		110, 110,
		"02150100", "Macadamianußöl",
		"Bei trockener Haut, schuppiger Haut, empfindlicher Haut, spröden und brüchigen Haaren", "2",
		"3.35", "30",
		"2", 1,
		"", "7",
		"Inhalt;100 ml@", "pd1984769335.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Hobbythek Cosmesan Basisoel.jpg",
		110, 110,
		"02200100", "COSMESAN Basisöl",
		"Öl mit Emulgator für Badeöle ", "2",
		"1.7", "100",
		"1", 1,
		"", "7",
		"Inhalt;100 ml@", "pd-882789166.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Hobbythek Schwarzkuemmeloel.jpg",
		110, 110,
		"12630050", "Schwarzkümmelöl",
		"Bei Allergien, Neurodermitis, Entzündungen, Hautpilz, Akne und für aromatherapeutische Anwendungen bei Erkältungen", "2",
		"6.6", "50",
		"2", 1,
		"", "7",
		"Inhalt;50 ml@", "pd-86200047.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Hobbythek Bienenwachs.jpg",
		110, 110,
		"03010050", "Bienenwachs, weiß",
		"Konsistenzgeber für Cremes, Lotionen, Salben, Babypflege, Lippenstifte und Pflegestifte", "3",
		"1.7", "50",
		"1", 1,
		"", "8",
		"Inhalt;50 g@", "pd726004828.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11570010", "Opal",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.95", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd1980098025.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11620010", "Whitessa",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"3.8", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-1896849155.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11630010", "Nowelia",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.1", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd1733913912.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11650010", "Western",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"3.95", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd920257682.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11670010", "Simara",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.5", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-443242980.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11790010", "Chef women",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"3.2", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-1444263797.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[23] = new Element(
		23, "",
		0, 0,
		"39040250", "Prosyn",
		"250 ml", "39",
		"1.95", "250",
		"1", 1,
		"", "28",
		"", "pd1124445772.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[24] = new Element(
		24, "",
		0, 0,
		"39671000", "Sanitärreiniger Lavebo",
		"1.000 ml", "39",
		"3.7", "1000",
		"1", 1,
		"", "28",
		"", "pd-184519879.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[25] = new Element(
		25, "",
		0, 0,
		"39680500", "Geo-Wash",
		"500 ml", "39",
		"4.7", "500",
		"1", 1,
		"", "28",
		"", "pd-1616293873.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[26] = new Element(
		26, "",
		0, 0,
		"39681000", "Geo-Wash",
		"1.000 ml", "39",
		"8.6", "1000",
		"1", 1,
		"", "28",
		"", "pd35918037.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[27] = new Element(
		27, "",
		0, 0,
		"39810500", "Zitronensäure kristalin E 330 monohydrat",
		"500 g", "39",
		"2.8", "500",
		"1", 1,
		"", "28",
		"", "pd-775053263.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[28] = new Element(
		28, "",
		0, 0,
		"39811000", "Zitronensäure kristalin E 330 monohydrat",
		"1.000 g", "39",
		"4.9", "1000",
		"1", 1,
		"", "28",
		"", "pd-844683833.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[29] = new Element(
		29, "",
		0, 0,
		"39815000", "Zitronensäure kristalin E 330 monohydrat",
		"5.000 g", "39",
		"15", "5000",
		"1", 1,
		"", "28",
		"", "pd-233980595.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[30] = new Element(
		30, "",
		0, 0,
		"398110000", "Zitronensäure kristalin E 330 monohydrat",
		"10.000 g", "39",
		"28", "10000",
		"1", 1,
		"", "28",
		"", "pd109148227.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Mixit- Kohlensaeurezylinder 290g.jpg",
		18, 110,
		"94010001", "Kauf-Zylinder Mixit 290 g",
		"", "33",
		"9", "0",
		"1", 1,
		"", "33",
		"Inhalt;250 g@", "pd-942016621.html",
		"", 1,
		"020233", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/Hobbythek Cetylalcohol.jpg",
		110, 110,
		"03020050", "Cetylalkohol",
		"Kosmetikgrundlage bei fettender oder unreiner Haut, Handpflegecremes, Waschlotionen, Peelings, Haarspülungen und -kuren für jeden Haartyp", "3",
		"1.65", "50",
		"1", 1,
		"", "8",
		"Inhalt;50 g@", "pd-1371385591.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/Hobbythek Walratersatz.jpg",
		110, 110,
		"03040050", "Walratersatz",
		"Konsistenzgeber in kosmetischen Formulierungen für alle Hauttypen", "3",
		"1.6", "50",
		"1", 1,
		"", "8",
		"Inhalt;50 g@", "pd-1587680347.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Hobbythek Carnaubawachs.jpg",
		110, 110,
		"03050020", "Carnaubawachs, hell",
		"Sehr festes Wachs, dass auch im Sommer nicht schmilzt. Sehr geeignet für Make-Up Produkte wie Lippenstifte, Kajal- und Mascarastiften. ", "3",
		"1.2", "20",
		"1", 1,
		"", "8",
		"Inhalt;20 g@", "pd1035692032.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Hobbythek Sheabutter.jpg",
		110, 110,
		"03060050", "Sheabutter",
		"Besonders hochwertige Grundlage für Cremes, Sonneschutzkosmetik, Lotionen, Salben und Seifen bei trockener, empfindlicher oder  entzündeter Haut", "3",
		"2.2", "50",
		"1", 1,
		"", "8",
		"Inhalt;50 g@", "pd2065191447.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Hobbythek Vaseline.jpg",
		110, 110,
		"03070100", "Vaseline DAB",
		"Salbengrundlage und Hautschutzmittel ", "3",
		"1.6", "100",
		"1", 1,
		"", "8",
		"Inhalt;100 g@", "pd748290589.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Hobbythek unverseifbares der Sheabutter.jpg",
		110, 110,
		"03100005", "unverseifbares d. Sheabutter",
		"Hautbildverfeinernde Grundlage für Cremes und Lotionen", "3",
		"1.95", "5",
		"1", 1,
		"", "8",
		"Inhalt;5 g@", "pd1332775315.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[38] = new Element(
		38, "",
		0, 0,
		"05010020", "Gelbildner PNC 400",
		"20 g", "5",
		"2.7", "20",
		"1", 1,
		"", "19",
		"", "pd-789844816.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[39] = new Element(
		39, "",
		0, 0,
		"05010050", "Gelbildner PNC 400",
		"50 g", "5",
		"4.75", "50",
		"1", 1,
		"", "19",
		"", "pd1687904862.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[40] = new Element(
		40, "",
		0, 0,
		"05010100", "Gelbildner PNC 400",
		"100 g", "5",
		"8.35", "100",
		"1", 1,
		"", "19",
		"", "pd-1959739769.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[41] = new Element(
		41, "",
		0, 0,
		"05020020", "Haarfestigersubstanz HF 64",
		"20 g", "5",
		"1.55", "20",
		"1", 1,
		"", "19",
		"", "pd-2122397764.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[42] = new Element(
		42, "",
		0, 0,
		"05020050", "Haarfestigersubstanz HF 64",
		"50 g", "5",
		"2.7", "50",
		"1", 1,
		"", "19",
		"", "pd-306445299.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[43] = new Element(
		43, "",
		0, 0,
		"05020100", "Haarfestigersubstanz HF 64",
		"100 g", "5",
		"4.5", "100",
		"1", 1,
		"", "19",
		"", "pd938501194.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[44] = new Element(
		44, "",
		0, 0,
		"05030050", "Haarfestigersubstanz HF 37",
		"50 ml", "5",
		"1.95", "50",
		"1", 1,
		"", "19",
		"", "pd-270787325.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[45] = new Element(
		45, "",
		0, 0,
		"05030100", "Haarfestigersubstanz HF 37",
		"100 ml", "5",
		"2.95", "100",
		"1", 1,
		"", "19",
		"", "pd1568787336.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"05030250", "Haarfestigersubstanz HF 37",
		"250 ml", "5",
		"5.35", "250",
		"1", 1,
		"", "19",
		"", "pd1185740521.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[47] = new Element(
		47, "",
		0, 0,
		"05030500", "Haarfestigersubstanz HF 37",
		"500 ml", "5",
		"9.45", "500",
		"1", 1,
		"", "19",
		"", "pd-1082344202.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[48] = new Element(
		48, "",
		0, 0,
		"05040020", "Xanthan Granulat",
		"20 g", "5",
		"1.8", "20",
		"1", 1,
		"", "19",
		"", "pd-1439548609.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[49] = new Element(
		49, "",
		0, 0,
		"05040050", "Xanthan Granulat",
		"50 g", "5",
		"2.95", "50",
		"1", 1,
		"", "19",
		"", "pd-523303916.html",
		"", 1,
		"010205", "0",
		 0)
	
		Entry[50] = new Element(
		50, "",
		0, 0,
		"06000030", "Haarquat P",
		"30 ml", "6",
		"1.9", "30",
		"1", 1,
		"", "20",
		"", "pd2103000416.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[51] = new Element(
		51, "",
		0, 0,
		"06000050", "Haarquat P",
		"50 ml", "6",
		"2.8", "50",
		"1", 1,
		"", "20",
		"", "pd-496639346.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[52] = new Element(
		52, "",
		0, 0,
		"06000100", "Haarquat P",
		"100 ml", "6",
		"4.95", "100",
		"1", 1,
		"", "20",
		"", "pd-1292605705.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[53] = new Element(
		53, "",
		0, 0,
		"06030020", "Kurquat KDM",
		"20 g", "6",
		"1.45", "20",
		"1", 1,
		"", "20",
		"", "pd876086124.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"06030050", "Kurquat KDM",
		"50 g", "6",
		"2.65", "50",
		"1", 1,
		"", "20",
		"", "pd1072407037.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[55] = new Element(
		55, "",
		0, 0,
		"06030100", "Kurquat KDM",
		"100 g", "6",
		"4.75", "100",
		"1", 1,
		"", "20",
		"", "pd1043646330.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[56] = new Element(
		56, "",
		0, 0,
		"10000050", "Nuratin P",
		"50 ml", "6",
		"2.1", "50",
		"1", 1,
		"", "20",
		"", "pd420598745.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"10000100", "Nuratin P",
		"100 ml", "6",
		"3.15", "100",
		"1", 1,
		"", "20",
		"", "pd-440978650.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[58] = new Element(
		58, "",
		0, 0,
		"10000250", "Nuratin P",
		"250 ml", "6",
		"5.85", "250",
		"1", 1,
		"", "20",
		"", "pd-2069356113.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[59] = new Element(
		59, "",
		0, 0,
		"10180010", "Pirocton-Olamin",
		"10 g", "6",
		"3.85", "10",
		"1", 1,
		"", "20",
		"", "pd-1601100348.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[60] = new Element(
		60, "",
		0, 0,
		"10180020", "Pirocton-Olamin",
		"20 g", "6",
		"6.95", "20",
		"1", 1,
		"", "20",
		"", "pd1047640949.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[61] = new Element(
		61, "",
		0, 0,
		"10180050", "Pirocton-Olamin",
		"50 g", "6",
		"14.95", "50",
		"1", 1,
		"", "20",
		"", "pd2091454866.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[62] = new Element(
		62, "",
		0, 0,
		"10300030", "Keratin HT",
		"30 ml", "6",
		"1.85", "30",
		"1", 1,
		"", "20",
		"", "pd-637451605.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[63] = new Element(
		63, "",
		0, 0,
		"10300050", "Keratin HT",
		"50 ml", "6",
		"2.65", "50",
		"1", 1,
		"", "20",
		"", "pd132012560.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[64] = new Element(
		64, "",
		0, 0,
		"10570010", "Vithaar HT",
		"10 ml", "6",
		"1.5", "10",
		"1", 1,
		"", "20",
		"", "pd230493886.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[65] = new Element(
		65, "",
		0, 0,
		"10570030", "Vithaar HT",
		"30 ml", "6",
		"3.2", "30",
		"1", 1,
		"", "20",
		"", "pd-1090892953.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[66] = new Element(
		66, "",
		0, 0,
		"10630010", "ProVit F",
		"10 ml", "6",
		"1.2", "10",
		"1", 1,
		"", "20",
		"", "pd1569232554.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[67] = new Element(
		67, "",
		0, 0,
		"10630030", "ProVit F",
		"30 ml", "6",
		"2.3", "30",
		"1", 1,
		"", "20",
		"", "pd14628835.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[68] = new Element(
		68, "",
		0, 0,
		"18190030", "Plantessenz HT",
		"30 ml", "6",
		"1.85", "30",
		"1", 1,
		"", "20",
		"", "pd2100479208.html",
		"", 1,
		"010206", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Hobbythek DHA Dihydroxyacteton.jpg",
		110, 110,
		"07040010", "DHA Dihydroxyaceton",
		"Selbstbräunungsmittel", "7",
		"2", "10",
		"1", 1,
		"", "9",
		"Inhalt;10 g@", "pd102122176.html",
		"", 1,
		"010107", "0",
		 0)
	
		Entry[70] = new Element(
		70, "",
		0, 0,
		"08020010", "Fibrostimulin",
		"Antifaltensubstanz", "8",
		"4.25", "10",
		"1", 1,
		"", "12",
		"Inhalt;10 ml@", "pd60386263.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[71] = new Element(
		71, "",
		0, 0,
		"08060040", "Lipoderminkonzentrat HT",
		"Wirkstoff gegen Falten und Hautunreinheiten", "8",
		"9.5", "40",
		"1", 1,
		"", "12",
		"Inhalt;40 g@", "pd-314261677.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[72] = new Element(
		72, "",
		0, 0,
		"08070030", "Cremaba HT",
		"Der Haut nachempfundene Cremegrundlage für alle Hautpflegeprodukte. Von Dermatologen entwickelt", "8",
		"3.95", "30",
		"1", 1,
		"", "12",
		"Inhalt;30 g@", "pd-289786984.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Hobbythek Vitamin A Acetat Fluid.jpg",
		110, 110,
		"10500010", "Vitamin-A-Acetat Fluid HT",
		"Flüssiges Vitamin A", "8",
		"3.65", "10",
		"1", 1,
		"", "12",
		"Inhalt;10 ml@", "pd1197056902.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Hobbythek Vitamin E Acetat Fluid.jpg",
		110, 110,
		"10510010", "Vitamin-E-Acetat-Fluid HT",
		"Flüssiges Vitamin E", "8",
		"3.65", "10",
		"1", 1,
		"", "12",
		"Inhalt;10 ml@", "pd-1836151516.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Hobbythek Nachtkerzenoel.jpg",
		110, 110,
		"10520010", "Nachtkerzenöl-Fluid HT",
		"Für Elastizität und Spannkraft bei empfindlicher und schuppiger Haut; Schuppenflechten lindernd", "8",
		"3.65", "10",
		"1", 1,
		"", "12",
		"Inhalt;10 ml@", "pd1719027698.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[76] = new Element(
		76, "",
		0, 0,
		"10530010", "Weizenkeimöl-Fluid HT",
		"Hautstraffend, beugt einem vorzeitigen Alterungsprozessen der Haut vor", "8",
		"2.15", "10",
		"1", 1,
		"", "12",
		"Inhalt;10 ml@", "pd1209887518.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Hobbythek Seidenproteine.jpg",
		110, 110,
		"10540010", "Seidenprotein Lsg.",
		"Lösliche Seide; Verleiht Haaren einen besonders schönen Glanz und macht auch beanspruchte Haut seidenweich  ", "8",
		"1.75", "10",
		"1", 1,
		"", "12",
		"Inhalt;10 ml@", "pd396033660.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[78] = new Element(
		78, "",
		0, 0,
		"09010100", "Kosm. Haarwasser D 95%",
		"100 ml", "9",
		"1.95", "100",
		"1", 1,
		"", "21",
		"", "pd-349538038.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[79] = new Element(
		79, "",
		0, 0,
		"09010250", "Kosm. Haarwasser D 95%",
		"250 ml", "9",
		"3.9", "250",
		"1", 1,
		"", "21",
		"", "pd-1530597816.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[80] = new Element(
		80, "",
		0, 0,
		"09010500", "Kosm. Haarwasser D 95%",
		"500 ml", "9",
		"7.25", "500",
		"1", 1,
		"", "21",
		"", "pd246583977.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[81] = new Element(
		81, "",
		0, 0,
		"09011000", "Kosm. Haarwasser D 95%",
		"1.000 ml", "9",
		"12.95", "1000",
		"1", 1,
		"", "21",
		"", "pd577215926.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[82] = new Element(
		82, "",
		0, 0,
		"09019999", "Kosm. Haarwasser D 95%",
		"10000 ml", "9",
		"79", "10000",
		"1", 1,
		"", "21",
		"", "pd-2090320641.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[83] = new Element(
		83, "",
		0, 0,
		"09020100", "Isopropylalkohol",
		"100 ml", "9",
		"1.5", "100",
		"1", 1,
		"", "21",
		"", "pd1155519188.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[84] = new Element(
		84, "",
		0, 0,
		"09020250", "Isopropylalkohol",
		"250 ml", "9",
		"2.9", "250",
		"1", 1,
		"", "21",
		"", "pd-1010661563.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[85] = new Element(
		85, "",
		0, 0,
		"09020500", "Isopropylalkohol",
		"500 ml", "9",
		"4.7", "500",
		"1", 1,
		"", "21",
		"", "pd1727644962.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[86] = new Element(
		86, "",
		0, 0,
		"09021000", "Isopropylalkohol",
		"1.000 ml", "9",
		"6.95", "1000",
		"1", 1,
		"", "21",
		"", "pd-1618726149.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[87] = new Element(
		87, "",
		0, 0,
		"09030100", "Echter Weingeist 95%",
		"100 ml", "9",
		"4.25", "100",
		"1", 1,
		"", "21",
		"", "pd-406161376.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[88] = new Element(
		88, "",
		0, 0,
		"09030250", "Echter Weingeist 95%",
		"250 ml", "9",
		"9.9", "250",
		"1", 1,
		"", "21",
		"", "pd243522977.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[89] = new Element(
		89, "",
		0, 0,
		"09030500", "Echter Weingeist 95%",
		"500 ml", "9",
		"18.9", "500",
		"1", 1,
		"", "21",
		"", "pd160209742.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[90] = new Element(
		90, "",
		0, 0,
		"09040100", "Kosm. Basiswasser HT",
		"100 ml", "9",
		"1.95", "100",
		"1", 1,
		"", "21",
		"", "pd591948332.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[91] = new Element(
		91, "",
		0, 0,
		"09040250", "Kosm. Basiswasser HT",
		"250 ml", "9",
		"3.9", "250",
		"1", 1,
		"", "21",
		"", "pd-232902211.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[92] = new Element(
		92, "",
		0, 0,
		"09040500", "Kosm. Basiswasser HT",
		"500 ml", "9",
		"7.25", "500",
		"1", 1,
		"", "21",
		"", "pd775851066.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[93] = new Element(
		93, "",
		0, 0,
		"09041000", "Kosm. Basiswasser HT",
		"1.000 ml", "9",
		"12.95", "1000",
		"1", 1,
		"", "21",
		"", "pd-1082473933.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[94] = new Element(
		94, "",
		0, 0,
		"09049999", "Kosm. Basiswasser HT",
		"10000 ml", "9",
		"79", "10000",
		"1", 1,
		"", "21",
		"", "pd-1060244232.html",
		"", 1,
		"010209", "0",
		 0)
	
		Entry[95] = new Element(
		95, "",
		0, 0,
		"10010010", "Allantoin",
		"Wundheilungsmittel", "10",
		"1.5", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd1414193049.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Hobbythek Aloe Vera Konzentrat.jpg",
		110, 110,
		"10020010", "Aloe Vera 10-fach",
		"Aloe Vera Gel - wirkt feuchtigkeitspendend, kühlt und erfrischt", "10",
		"1.6", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd401670965.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[97] = new Element(
		97, "",
		0, 0,
		"10030010", "Alpha-Bisabolol rac.",
		" Wundheil - und Akne Mittel", "10",
		"4.25", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd-108955503.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[98] = new Element(
		98, "",
		0, 0,
		"10040010", "Kollagen nativ",
		"Wirkstoff zur Hautstraffung und verbesserten Feuchtigkeitsaufnahme ", "10",
		"1.55", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd-1800129241.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[99] = new Element(
		99, "",
		0, 0,
		"10080010", "Vitamin-E-Acetat",
		"Hautpflegender Vitaminzusatzstoff mit Lichtschutzwirkung ", "10",
		"2.55", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd1581090953.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[100] = new Element(
		100, "",
		0, 0,
		"10140050", "LV 41",
		"Lösungsvermittler", "10",
		"1.9", "10",
		"1", 1,
		"", "11",
		"Inhalt;50 ml@", "pd-268533196.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[101] = new Element(
		101, "",
		0, 0,
		"10150010", "Farnesol",
		"Antibakterieller Wirkstoff, besonders geeignet für Deos, Fußsprays und ähnliches", "10",
		"2.55", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd1437788635.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[102] = new Element(
		102, "",
		0, 0,
		"10310010", "D-Panthenol 75",
		"Regenerierendes Wundheil- und Haarkur Mittel ", "10",
		"1.4", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd-58268072.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[103] = new Element(
		103, "",
		0, 0,
		"10340010", "Meristemextrakt",
		"Hautpflegewirkstoff; Juckreizstilled, Tonisierend, Antiallergen, Enzündungshemmend, Radikalfänger. Für Augenkompressen gegen dicke, müde Augen, die zu Rötungen neigen", "10",
		"2.65", "10",
		"1", 1,
		"", "11",
		"Inhalt;10 ml@", "pd-178131996.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[104] = new Element(
		104, "",
		0, 0,
		"10550050", "Harnstoff, kristallin",
		"Wirkstoff bei unreiner oder verhornter Haut", "10",
		"1.95", "10",
		"1", 1,
		"", "11",
		"Inhalt;50 ml@", "pd-1883232125.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[105] = new Element(
		105, "",
		0, 0,
		"18210030", "Algenextrakt",
		"Bei reifer, unreiner Haut, in Badepräperaten bei Zellulitis; wirkt feuchtigkeitsspendend, adstringierend, straffend, antiseptisch", "10",
		"2.6", "10",
		"1", 1,
		"", "11",
		"Inhalt;30 ml@", "pd-1183977879.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[106] = new Element(
		106, "",
		0, 0,
		"18520050", "Niemtinktur",
		"Der Niembaum besitzt wertvolle, einzigartige Inhaltsstoffe, deren Wirksamkeit seit Generationen in der Ayurveda-Heilkunde genutzt werden und heute wissenschaftlich belegt sind", "10",
		"1.8", "50",
		"1", 1,
		"", "11",
		"Inhalt;50 ml@", "pd829977312.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[107] = new Element(
		107, "",
		0, 0,
		"18560100", "Niemsamen gemahlen",
		"Der Niembaum besitzt wertvolle, einzigartige Inhaltsstoffe, deren Wirksamkeit seit Generationen in der Ayurveda-Heilkunde genutzt werden und heute wissenschaftlich belegt sind", "10",
		"2.8", "100",
		"2", 1,
		"", "11",
		"Inhalt;100 ml@", "pd-1627451142.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[108] = new Element(
		108, "",
		0, 0,
		"18600030", "Lebermoos-Extrakt",
		"Wirkstoff bei Pilzbefall aller Art", "10",
		"2.1", "30",
		"1", 1,
		"", "11",
		"Inhalt;30 ml@", "pd2092763064.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11080010", "Vanille",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"2.1", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd1597653034.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11110010", "Apfelblüte",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"2.1", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd1788749723.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11150010", "Charisma",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.2", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-1471653608.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11170010", "Persico (Pfirsich)",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"1.95", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd368880907.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11180010", "Chantell # 5",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.5", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-235815778.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11220010", "Teerose",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"2.4", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-40402817.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11310010", "Davino",
		"Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"4.5", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd-1507842714.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[116] = new Element(
		116, "",
		0, 0,
		"14010010", "Pigment &quot;Rotbraun&quot;",
		"10 g", "14",
		"1.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-184673340.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[117] = new Element(
		117, "",
		0, 0,
		"15070010", "Paraben K",
		"Konservierungsmittel mit Methylparaben, Propylparaben, Farnesol sowie Benzylalkohol", "15",
		"1.6", "10",
		"1", 1,
		"", "15",
		"Inhalt;10 ml@", "pd-1253744306.html",
		"", 1,
		"010115", "0",
		 0)
	
		Entry[118] = new Element(
		118, "",
		0, 0,
		"16020100", "Henna rot",
		"100 g", "16",
		"1.85", "100",
		"1", 1,
		"", "22",
		"", "pd1732227642.html",
		"", 1,
		"010216", "0",
		 0)
	
		Entry[119] = new Element(
		119, "",
		0, 0,
		"16020300", "Henna rot",
		"300 g", "16",
		"4.1", "300",
		"1", 1,
		"", "22",
		"", "pd-544503048.html",
		"", 1,
		"010216", "0",
		 0)
	
		Entry[120] = new Element(
		120, "",
		0, 0,
		"16030100", "Henna schwarz",
		"100 g", "16",
		"1.85", "100",
		"1", 1,
		"", "22",
		"", "pd-1872609895.html",
		"", 1,
		"010216", "0",
		 0)
	
		Entry[121] = new Element(
		121, "",
		0, 0,
		"16060100", "Walnußschalen gemahlen",
		"100 g", "16",
		"1.5", "100",
		"1", 1,
		"", "22",
		"", "pd-1784831633.html",
		"", 1,
		"010216", "0",
		 0)
	
		Entry[122] = new Element(
		122, "",
		0, 0,
		"16070100", "Henna neutral",
		"100 g", "16",
		"1.45", "100",
		"1", 1,
		"", "22",
		"", "pd1551833732.html",
		"", 1,
		"010216", "0",
		 0)
	
		Entry[123] = new Element(
		123, "",
		0, 0,
		"18010030", "Birkenblätter",
		"30 ml", "18",
		"2.45", "30",
		"1", 1,
		"", "16",
		"", "pd-1756185218.html",
		"", 1,
		"010118", "0",
		 0)
	
		Entry[124] = new Element(
		124, "",
		0, 0,
		"18020030", "Brennessel",
		"30 ml", "18",
		"2.3", "30",
		"1", 1,
		"", "16",
		"", "pd1426708909.html",
		"", 1,
		"010118", "0",
		 0)
	
		Entry[125] = new Element(
		125, "",
		0, 0,
		"18060030", "Hamamelis",
		"30 ml", "18",
		"2.6", "30",
		"1", 1,
		"", "16",
		"", "pd-1817332769.html",
		"", 1,
		"010118", "0",
		 0)
	
		Entry[126] = new Element(
		126, "",
		0, 0,
		"18080030", "Kamille",
		"30 ml", "18",
		"2.2", "30",
		"1", 1,
		"", "16",
		"", "pd679143810.html",
		"", 1,
		"010118", "0",
		 0)
	
		Entry[127] = new Element(
		127, "",
		0, 0,
		"18090030", "Calendula/Ringelblume",
		"30 ml", "18",
		"2.3", "30",
		"1", 1,
		"", "16",
		"", "pd1679134081.html",
		"", 1,
		"010118", "0",
		 0)
	
		Entry[128] = new Element(
		128, "",
		0, 0,
		"18120030", "Algenextrakt",
		"30 ml", "18",
		"2.6", "30",
		"1", 1,
		"", "16",
		"", "pd-1133550829.html",
		"", 1,
		"010118", "0",
		 0)
	
		Entry[129] = new Element(
		129, "",
		0, 0,
		"03090100", "Rewoderm HT (Li  S 80)",
		"100 ml", "20",
		"2.45", "100",
		"1", 1,
		"", "23",
		"", "pd-15209607.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[130] = new Element(
		130, "",
		0, 0,
		"03090250", "Rewoderm HT (Li  S 80)",
		"250 ml", "20",
		"4.2", "250",
		"1", 1,
		"", "23",
		"", "pd-609844657.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[131] = new Element(
		131, "",
		0, 0,
		"03090500", "Rewoderm HT (Li  S 80)",
		"500 ml", "20",
		"6.65", "500",
		"1", 1,
		"", "23",
		"", "pd2115494372.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[132] = new Element(
		132, "",
		0, 0,
		"10250050", "Sanfteen HT",
		"50 ml", "20",
		"2.25", "50",
		"1", 1,
		"", "23",
		"", "pd-1541042923.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[133] = new Element(
		133, "",
		0, 0,
		"10250100", "Sanfteen HT",
		"100 ml", "20",
		"3.5", "100",
		"1", 1,
		"", "23",
		"", "pd865774258.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[134] = new Element(
		134, "",
		0, 0,
		"20010250", "Collagentensid HT",
		"250 ml", "20",
		"3.2", "250",
		"1", 1,
		"", "23",
		"", "pd-2029381584.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[135] = new Element(
		135, "",
		0, 0,
		"20010500", "Collagentensid HT",
		"500 ml", "20",
		"5.75", "500",
		"1", 1,
		"", "23",
		"", "pd-360619919.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[136] = new Element(
		136, "",
		0, 0,
		"20011000", "Collagentensid HT",
		"1.000 ml", "20",
		"10.95", "1000",
		"1", 1,
		"", "23",
		"", "pd480475614.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[137] = new Element(
		137, "",
		0, 0,
		"20015000", "Collagentensid HT",
		"5000 ml", "20",
		"49.9", "5000",
		"1", 1,
		"", "23",
		"", "pd-1984307193.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[138] = new Element(
		138, "",
		0, 0,
		"20020250", "Betain HT",
		"250 ml", "20",
		"1.95", "250",
		"1", 1,
		"", "23",
		"", "pd-549453427.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[139] = new Element(
		139, "",
		0, 0,
		"20020500", "Betain HT",
		"500 ml", "20",
		"3.65", "500",
		"1", 1,
		"", "23",
		"", "pd568652746.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[140] = new Element(
		140, "",
		0, 0,
		"20021000", "Betain HT",
		"1.000 ml", "20",
		"6.3", "1000",
		"1", 1,
		"", "23",
		"", "pd684086915.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[141] = new Element(
		141, "",
		0, 0,
		"20025000", "Betain HT",
		"5 Liter", "20",
		"28.7", "5000",
		"1", 1,
		"", "23",
		"", "pd-1370036472.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[142] = new Element(
		142, "",
		0, 0,
		"20029999", "Betain HT",
		"10 Liter", "20",
		"58", "10000",
		"1", 1,
		"", "23",
		"", "pd1389874281.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[143] = new Element(
		143, "",
		0, 0,
		"14200010", "Seidenweiß Perlglanzpigment",
		"10 g", "14",
		"2.7", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd1736727067.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[144] = new Element(
		144, "",
		0, 0,
		"14210010", "Seidenschwarz Perlglanzpigment",
		"10 g", "14",
		"2.7", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd1406720449.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[145] = new Element(
		145, "",
		0, 0,
		"14360010", "Satinpurpur Perlglanzpigment",
		"10 g", "14",
		"3.2", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd1218923888.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[146] = new Element(
		146, "",
		0, 0,
		"14410010", "Flipperl-Blaugold Perlglanzpigment",
		"10 g", "14",
		"2.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-689037558.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[147] = new Element(
		147, "",
		0, 0,
		"14430010", "Flipperl-Teintblau Perlglanzpigment",
		"10 g", "14",
		"2.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-301398968.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[148] = new Element(
		148, "",
		0, 0,
		"14450010", "Satinviolett Perlglanzpigment",
		"10 g", "14",
		"3.2", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-935376129.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[149] = new Element(
		149, "",
		0, 0,
		"14490010", "Rotgold Perlglanzpigment",
		"10 g", "14",
		"3.2", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd1784160507.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[150] = new Element(
		150, "",
		0, 0,
		"39021000", "Biozym SE",
		"1.000 ml", "39",
		"6.5", "1000",
		"1", 1,
		"", "28",
		"", "pd851935354.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[151] = new Element(
		151, "",
		0, 0,
		"39022500", "Biozym SE",
		"2.500 ml", "39",
		"15", "2500",
		"1", 1,
		"", "28",
		"", "pd1728000371.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[152] = new Element(
		152, "",
		0, 0,
		"39025000", "Biozym SE",
		"5.000 ml", "39",
		"28", "5000",
		"1", 1,
		"", "28",
		"", "pd-1089928392.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[153] = new Element(
		153, "",
		0, 0,
		"390210000", "Biozym SE",
		"10 Liter", "39",
		"53.5", "10000",
		"1", 1,
		"", "28",
		"", "pd1668931801.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[154] = new Element(
		154, "",
		0, 0,
		"39030100", "Biozym F",
		"100 ml", "39",
		"1.5", "100",
		"1", 1,
		"", "28",
		"", "pd-1246790618.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[155] = new Element(
		155, "",
		0, 0,
		"39030250", "Biozym F",
		"250 ml", "39",
		"2.7", "250",
		"1", 1,
		"", "28",
		"", "pd1692595887.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[156] = new Element(
		156, "",
		0, 0,
		"39030500", "Biozym F",
		"500 ml", "39",
		"4.2", "500",
		"1", 1,
		"", "28",
		"", "pd642160324.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[157] = new Element(
		157, "",
		0, 0,
		"39031000", "Biozym F",
		"1.000 ml", "39",
		"6.95", "1000",
		"1", 1,
		"", "28",
		"", "pd48011381.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[158] = new Element(
		158, "",
		0, 0,
		"39039999", "Biozym F",
		"10 Liter", "39",
		"63", "10000",
		"1", 1,
		"", "28",
		"", "pd1174399634.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[159] = new Element(
		159, "",
		0, 0,
		"39040500", "Prosyn",
		"500 ml", "39",
		"3", "500",
		"1", 1,
		"", "28",
		"", "pd-1638606064.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[160] = new Element(
		160, "",
		0, 0,
		"39041000", "Prosyn",
		"1.000 ml", "39",
		"5.2", "1000",
		"1", 1,
		"", "28",
		"", "pd-2051350063.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[161] = new Element(
		161, "",
		0, 0,
		"39042500", "Prosyn",
		"2500 ml", "39",
		"12.25", "2500",
		"1", 1,
		"", "28",
		"", "pd-2013562946.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[162] = new Element(
		162, "",
		0, 0,
		"39049999", "Prosyn",
		"10 Liter", "39",
		"43", "10000",
		"1", 1,
		"", "28",
		"", "pd-1907834777.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[163] = new Element(
		163, "",
		0, 0,
		"39060500", "Probunt",
		"500 ml", "39",
		"3.2", "500",
		"1", 1,
		"", "28",
		"", "pd-1331233565.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[164] = new Element(
		164, "",
		0, 0,
		"39061000", "Probunt",
		"1.000 ml", "39",
		"5.5", "1000",
		"1", 1,
		"", "28",
		"", "pd508454376.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[165] = new Element(
		165, "",
		0, 0,
		"39062500", "Probunt",
		"2500 ml", "39",
		"13", "2500",
		"1", 1,
		"", "28",
		"", "pd-1252632119.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[166] = new Element(
		166, "",
		0, 0,
		"39069999", "Probunt",
		"10 Liter", "39",
		"48", "10000",
		"1", 1,
		"", "28",
		"", "pd-1172808106.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/kalweg3.jpg",
		82, 100,
		"39101000", "Kalweg",
		"Natürlicher Weichspüler und Kalkentferner auf Zitronensäurebasis", "39",
		"3.7", "500",
		"1", 1,
		"", "28",
		"Inhalt;1 L@", "pd42588447.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[168] = new Element(
		168, "",
		0, 0,
		"39120100", "Schaumex-Konzentrat HT",
		"100 ml", "39",
		"1.8", "100",
		"1", 1,
		"", "28",
		"", "pd-2060808210.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[169] = new Element(
		169, "",
		0, 0,
		"39120250", "Schaumex-Konzentrat HT",
		"250 ml", "39",
		"3.4", "250",
		"1", 1,
		"", "28",
		"", "pd2068521175.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[170] = new Element(
		170, "",
		0, 0,
		"39120500", "Schaumex-Konzentrat HT",
		"500 ml", "39",
		"5.2", "500",
		"1", 1,
		"", "28",
		"", "pd1853222860.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[171] = new Element(
		171, "",
		0, 0,
		"39121000", "Schaumex-Konzentrat HT",
		"1.000 ml", "39",
		"9.6", "1000",
		"1", 1,
		"", "28",
		"", "pd1462529757.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[172] = new Element(
		172, "",
		0, 0,
		"39129999", "Schaumex-Konzentrat HT",
		"10 Liter", "39",
		"76", "10000",
		"1", 1,
		"", "28",
		"", "pd1688865498.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[173] = new Element(
		173, "",
		0, 0,
		"39130500", "Fluidseife HT",
		"500 ml", "39",
		"2.2", "500",
		"1", 1,
		"", "28",
		"", "pd1814283347.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[174] = new Element(
		174, "",
		0, 0,
		"39131000", "Fluidseife HT",
		"1.000 ml", "39",
		"3.7", "1000",
		"1", 1,
		"", "28",
		"", "pd-630451048.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[175] = new Element(
		175, "",
		0, 0,
		"39139999", "Fluidseife HT",
		"10000 ml", "39",
		"22.5", "10000",
		"1", 1,
		"", "28",
		"", "pd2059562118.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[176] = new Element(
		176, "",
		0, 0,
		"39151000", "Stawa-Super HT",
		"1.000 ml", "39",
		"5.1", "1000",
		"1", 1,
		"", "28",
		"", "pd1160607631.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[177] = new Element(
		177, "",
		0, 0,
		"39152500", "Stawa-Super HT",
		"2.500 ml", "39",
		"12", "2500",
		"1", 1,
		"", "28",
		"", "pd1529380388.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[178] = new Element(
		178, "",
		0, 0,
		"39155000", "Stawa-Super HT",
		"5.000 ml", "39",
		"22.5", "5000",
		"1", 1,
		"", "28",
		"", "pd1014137941.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[179] = new Element(
		179, "",
		0, 0,
		"39159999", "Stawa-Super HT",
		"10 Liter", "39",
		"42.9", "10000",
		"1", 1,
		"", "28",
		"", "pd-1354391310.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[180] = new Element(
		180, "",
		0, 0,
		"20030250", "Zetesol HT",
		"250 ml", "20",
		"1.95", "250",
		"1", 1,
		"", "23",
		"", "pd-159445825.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[181] = new Element(
		181, "",
		0, 0,
		"20030500", "Zetesol HT",
		"500 ml", "20",
		"3.65", "500",
		"1", 1,
		"", "23",
		"", "pd780720020.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[182] = new Element(
		182, "",
		0, 0,
		"20031000", "Zetesol HT",
		"1.000 ml", "20",
		"7.2", "1000",
		"1", 1,
		"", "23",
		"", "pd549248261.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[183] = new Element(
		183, "",
		0, 0,
		"20035000", "Zetesol HT",
		"5000 ml", "20",
		"28.7", "5000",
		"1", 1,
		"", "23",
		"", "pd1476745186.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[184] = new Element(
		184, "",
		0, 0,
		"20070250", "Facetensid",
		"250 ml", "20",
		"2.5", "250",
		"1", 1,
		"", "23",
		"", "pd-1444133389.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[185] = new Element(
		185, "",
		0, 0,
		"20070500", "Facetensid",
		"500 ml", "20",
		"4.55", "500",
		"1", 1,
		"", "23",
		"", "pd589340088.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[186] = new Element(
		186, "",
		0, 0,
		"20071000", "Facetensid",
		"1.000 ml", "20",
		"8.5", "1000",
		"1", 1,
		"", "23",
		"", "pd1349454169.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[187] = new Element(
		187, "",
		0, 0,
		"20075000", "Facetensid",
		"5000 ml", "20",
		"39", "5000",
		"1", 1,
		"", "23",
		"", "pd1059756710.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[188] = new Element(
		188, "",
		0, 0,
		"20090250", "Tensidmischung HT",
		"250 ml", "20",
		"2.95", "250",
		"1", 1,
		"", "23",
		"", "pd-983508668.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[189] = new Element(
		189, "",
		0, 0,
		"20090500", "Tensidmischung HT",
		"500 ml", "20",
		"4.85", "500",
		"1", 1,
		"", "23",
		"", "pd-1304868619.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[190] = new Element(
		190, "",
		0, 0,
		"20091000", "Tensidmischung HT",
		"1000 ml", "20",
		"8.75", "1000",
		"1", 1,
		"", "23",
		"", "pd-2232046.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[191] = new Element(
		191, "",
		0, 0,
		"20099999", "Tensidmischung HT",
		"10 Liter", "20",
		"79.9", "10000",
		"1", 1,
		"", "23",
		"", "pd-887518165.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[192] = new Element(
		192, "",
		0, 0,
		"18540030", "Niemöl",
		"30 ml", "21",
		"2.15", "30",
		"1", 1,
		"", "17",
		"", "pd455886224.html",
		"", 1,
		"010121", "0",
		 0)
	
		Entry[193] = new Element(
		193, "",
		0, 0,
		"18540050", "Niemöl",
		"50 ml", "21",
		"2.95", "50",
		"1", 1,
		"", "17",
		"", "pd-310712770.html",
		"", 1,
		"010121", "0",
		 0)
	
		Entry[194] = new Element(
		194, "",
		0, 0,
		"21020100", "Johanniskrautöl",
		"100 ml", "21",
		"3.85", "100",
		"1", 1,
		"", "17",
		"", "pd-1847053981.html",
		"", 1,
		"010121", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/Orangenbluete3.jpg",
		113, 123,
		"24010100", "Orangenblütenwasser",
		"100 ml", "24",
		"2.3", "100",
		"1", 1,
		"", "26",
		"", "pd-625599274.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[196] = new Element(
		196, "",
		0, 0,
		"24010250", "Orangenblütenwasser",
		"250 ml", "24",
		"4.5", "250",
		"1", 1,
		"", "26",
		"", "pd-1718950156.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[197] = new Element(
		197, "",
		0, 0,
		"24010500", "Orangenblütenwasser",
		"500 ml", "24",
		"7.3", "500",
		"1", 1,
		"", "26",
		"", "pd-1041641243.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/rose.jpg",
		101, 111,
		"24020100", "Rosenwasser",
		"100 g", "24",
		"2.3", "100",
		"1", 1,
		"", "26",
		"", "pd-1475905982.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[199] = new Element(
		199, "",
		0, 0,
		"24020250", "Rosenwasser",
		"250 g", "24",
		"4.5", "250",
		"1", 1,
		"", "26",
		"", "pd68097435.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[200] = new Element(
		200, "",
		0, 0,
		"24020500", "Rosenwasser",
		"500 g", "24",
		"7.3", "500",
		"1", 1,
		"", "26",
		"", "pd-472904128.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/Hamamelis.jpg",
		93, 124,
		"24060100", "Hamameliswasser",
		"100 ml", "24",
		"2.7", "100",
		"1", 1,
		"", "26",
		"", "pd1214251329.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[202] = new Element(
		202, "",
		0, 0,
		"24060250", "Hamameliswasser",
		"250 ml", "24",
		"5.8", "250",
		"1", 1,
		"", "26",
		"", "pd-985620882.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[203] = new Element(
		203, "",
		0, 0,
		"24060500", "Hamameliswasser",
		"500 ml", "24",
		"10.7", "500",
		"1", 1,
		"", "26",
		"", "pd-1338856105.html",
		"", 1,
		"010124", "0",
		 0)
	
		Entry[204] = new Element(
		204, "",
		0, 0,
		"04180100", "Gummar HT",
		"100 g", "25",
		"2.35", "100",
		"1", 1,
		"", "24",
		"", "pd1667539532.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[205] = new Element(
		205, "",
		0, 0,
		"04180250", "Gummar HT",
		"250 g", "25",
		"4.75", "250",
		"1", 1,
		"", "24",
		"", "pd1546781018.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[206] = new Element(
		206, "",
		0, 0,
		"04180500", "Gummar HT",
		"500 g", "25",
		"9.75", "500",
		"1", 1,
		"", "24",
		"", "pd914430163.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[207] = new Element(
		207, "",
		0, 0,
		"19010100", "Reinlecithin Pulver HT",
		"100 g", "25",
		"3.5", "100",
		"2", 1,
		"", "24",
		"", "pd552409867.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[208] = new Element(
		208, "",
		0, 0,
		"19020250", "Reinlecithin-Granulat",
		"250 g", "25",
		"6.9", "250",
		"2", 1,
		"", "24",
		"", "pd-1341758980.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[209] = new Element(
		209, "",
		0, 0,
		"19020500", "Reinlecithin-Granulat",
		"500 g", "25",
		"11.9", "500",
		"2", 1,
		"", "24",
		"", "pd1076339021.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[210] = new Element(
		210, "",
		0, 0,
		"19021000", "Reinlecithin-Granulat",
		"1000 g", "25",
		"22.5", "1000",
		"2", 1,
		"", "24",
		"", "pd1948420234.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[211] = new Element(
		211, "",
		0, 0,
		"190700250", "Inulin HT",
		"präbiotischer Ballaststoff", "25",
		"3.55", "100",
		"2", 1,
		"", "24",
		"Bitte wählen Sie die Grösse: ;250 g@", "pd1631452227.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[212] = new Element(
		212, "",
		0, 0,
		"19080000", "Oligofruct HT",
		"prebiotischer Ballaststoff", "25",
		"2", "100",
		"2", 1,
		"", "24",
		"Bitte wählen Sie die Grösse: ;100 g@", "pd716630057.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[213] = new Element(
		213, "",
		0, 0,
		"25010100", "Calciumcitrat",
		"100 g", "25",
		"1.75", "100",
		"1", 1,
		"", "24",
		"", "pd-840747835.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[214] = new Element(
		214, "",
		0, 0,
		"25140250", "Weizenkleber HT",
		"250 g", "25",
		"2.5", "250",
		"2", 1,
		"", "24",
		"", "pd1788429474.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[215] = new Element(
		215, "",
		0, 0,
		"25140500", "Weizenkleber HT",
		"500 g", "25",
		"3.7", "500",
		"2", 1,
		"", "24",
		"", "pd-283468677.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[216] = new Element(
		216, "",
		0, 0,
		"25141000", "Weizenkleber HT",
		"1.000 g", "25",
		"5.95", "1000",
		"2", 1,
		"", "24",
		"", "pd-402390112.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[217] = new Element(
		217, "",
		0, 0,
		"25150100", "Flohsamen, ganz",
		"100 g", "25",
		"2.4", "100",
		"2", 1,
		"", "24",
		"", "pd-90238258.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[218] = new Element(
		218, "",
		0, 0,
		"25150250", "Flohsamen, ganz",
		"250 g", "25",
		"4.5", "250",
		"2", 1,
		"", "24",
		"", "pd643523127.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[219] = new Element(
		219, "",
		0, 0,
		"25150500", "Flohsamen, ganz",
		"500 g", "25",
		"8.4", "500",
		"2", 1,
		"", "24",
		"", "pd-1827820116.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[220] = new Element(
		220, "",
		0, 0,
		"25190250", "Erbsen-Faser HT",
		"250 g", "25",
		"2.3", "250",
		"2", 1,
		"", "24",
		"", "pd576935940.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[221] = new Element(
		221, "",
		0, 0,
		"25190500", "Erbsen-Faser HT",
		"500 g", "25",
		"3.55", "500",
		"2", 1,
		"", "24",
		"", "pd965349557.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[222] = new Element(
		222, "",
		0, 0,
		"25240250", "Apfel-/Multipekt plus",
		"250 g", "25",
		"7.95", "250",
		"2", 1,
		"", "24",
		"", "pd337497854.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[223] = new Element(
		223, "",
		0, 0,
		"25240500", "Apfel-/Multipekt plus",
		"500 g", "25",
		"13.8", "500",
		"2", 1,
		"", "24",
		"", "pd-1699375449.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[224] = new Element(
		224, "",
		0, 0,
		"25260001", "Apfelessig naturtrüb (Byodo)",
		"1 St", "25",
		"2.55", "1",
		"2", 1,
		"", "24",
		"", "pd-33192612.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[225] = new Element(
		225, "",
		0, 0,
		"25281000", "Vollwert-Roggen",
		"1000 g", "25",
		"1", "1000",
		"2", 1,
		"", "24",
		"", "pd667490605.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[226] = new Element(
		226, "",
		0, 0,
		"25282500", "Vollwert-Roggen",
		"2500 g", "25",
		"2.05", "2500",
		"2", 1,
		"", "24",
		"", "pd-717759766.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[227] = new Element(
		227, "",
		0, 0,
		"25310250", "Magermilchpulver",
		"250 g", "25",
		"2.9", "250",
		"2", 1,
		"", "24",
		"", "pd1375713059.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[228] = new Element(
		228, "",
		0, 0,
		"25310500", "Magermilchpulver",
		"500 g", "25",
		"4.4", "500",
		"2", 1,
		"", "24",
		"", "pd-2109955288.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[229] = new Element(
		229, "",
		0, 0,
		"25320006", "La-Bi-Da 3 x 2 g",
		"6 g", "25",
		"7.95", "6",
		"2", 1,
		"", "24",
		"", "pd1631493641.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[230] = new Element(
		230, "",
		0, 0,
		"30020100", "Zitronensäure anhydrat (wasserfrei)",
		"100 g", "25",
		"1.55", "100",
		"1", 1,
		"", "24",
		"", "pd134231854.html",
		"", 1,
		"010425", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/Hobbythek Mandelkern granulat.jpg",
		111, 110,
		"26010050", "Mandelkern-Olivenstein Granulat",
		"Natürlicher Peelingzusatz ", "26",
		"1.95", "50",
		"1", 1,
		"", "10",
		"Inhalt;50 g@", "pd2134436108.html",
		"", 1,
		"010126", "0",
		 0)
	
		Entry[232] = new Element(
		232, "",
		0, 0,
		"27010010", "Azurblau E 131",
		"10 ml", "27",
		"0.9", "10",
		"1", 1,
		"", "13",
		"", "pd1989491654.html",
		"", 1,
		"010127", "0",
		 0)
	
		Entry[233] = new Element(
		233, "",
		0, 0,
		"27020010", "Zitronengelb E 104",
		"10 ml", "27",
		"0.9", "10",
		"1", 1,
		"", "13",
		"", "pd617406308.html",
		"", 1,
		"010127", "0",
		 0)
	
		Entry[234] = new Element(
		234, "",
		0, 0,
		"27030010", "Blattgrün E 104/131",
		"10 ml", "27",
		"0.9", "10",
		"1", 1,
		"", "13",
		"", "pd1840716949.html",
		"", 1,
		"010127", "0",
		 0)
	
		Entry[235] = new Element(
		235, "",
		0, 0,
		"27050010", "Kirschrot E 127",
		"10 ml", "27",
		"0.9", "10",
		"1", 1,
		"", "13",
		"", "pd-920787918.html",
		"", 1,
		"010127", "0",
		 0)
	
		Entry[236] = new Element(
		236, "",
		0, 0,
		"27060010", "Orange E 110",
		"10 ml", "27",
		"0.9", "10",
		"1", 1,
		"", "13",
		"", "pd-943322933.html",
		"", 1,
		"010127", "0",
		 0)
	
		Entry[237] = new Element(
		237, "",
		0, 0,
		"30030050", "Multi-Vitaminpulver HT",
		"50 g", "30",
		"3.75", "50",
		"1", 1,
		"", "25",
		"", "pd-2055869008.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[238] = new Element(
		238, "",
		0, 0,
		"30030100", "Multi-Vitaminpulver HT",
		"100 g", "30",
		"6.9", "100",
		"1", 1,
		"", "25",
		"", "pd-1994831010.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[239] = new Element(
		239, "",
		0, 0,
		"30040100", "Multimineralpulver normal HT",
		"100 g", "30",
		"2.95", "100",
		"1", 1,
		"", "25",
		"", "pd1420342151.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[240] = new Element(
		240, "",
		0, 0,
		"30060100", "Magnesiumpulver HT",
		"100 g", "30",
		"2.95", "100",
		"1", 1,
		"", "25",
		"", "pd-239937348.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[241] = new Element(
		241, "",
		0, 0,
		"30100100", "Multimineralpulver Super HT",
		"100 g", "30",
		"3.25", "100",
		"1", 1,
		"", "25",
		"", "pd-1373044467.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[242] = new Element(
		242, "",
		0, 0,
		"30100150", "Multimineralpulver Super HT",
		"150 g", "30",
		"4.75", "150",
		"1", 1,
		"", "25",
		"", "pd912710986.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[243] = new Element(
		243, "",
		0, 0,
		"30260001", "Antiradikx ACE+Selen 100 Kapseln",
		"1 St", "30",
		"7.95", "1",
		"1", 1,
		"", "25",
		"", "pd-660542328.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[244] = new Element(
		244, "",
		0, 0,
		"30260003", "Antiradikx ACE+Selen 100 Kapseln",
		"3 St", "30",
		"21.9", "3",
		"1", 1,
		"", "25",
		"", "pd583779305.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[245] = new Element(
		245, "",
		0, 0,
		"30260005", "Antiradikx ACE+Selen 100 Kapseln",
		"5 St", "30",
		"33.9", "5",
		"1", 1,
		"", "25",
		"", "pd1561642486.html",
		"", 1,
		"010430", "0",
		 0)
	
		Entry[246] = new Element(
		246, "",
		0, 0,
		"39020500", "Biozym SE",
		"500 ml", "39",
		"4", "500",
		"1", 1,
		"", "28",
		"", "pd759059564.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[247] = new Element(
		247, "",
		0, 0,
		"39180750", "Proweiß-Super HT",
		"750 g", "39",
		"4.4", "750",
		"1", 1,
		"", "28",
		"", "pd1131941756.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[248] = new Element(
		248, "",
		0, 0,
		"39181000", "Proweiß-Super HT",
		"1000 g", "39",
		"5.7", "1000",
		"1", 1,
		"", "28",
		"", "pd755245261.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[249] = new Element(
		249, "",
		0, 0,
		"39183000", "Proweiß-Super HT",
		"3000 g", "39",
		"14.5", "3000",
		"1", 1,
		"", "28",
		"", "pd-1854803446.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[250] = new Element(
		250, "",
		0, 0,
		"39210250", "Glasfein-Konzentrat",
		"250 ml", "39",
		"2.8", "250",
		"1", 1,
		"", "28",
		"", "pd-1057191997.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[251] = new Element(
		251, "",
		0, 0,
		"39210500", "Glasfein-Konzentrat",
		"500 ml", "39",
		"4.6", "500",
		"1", 1,
		"", "28",
		"", "pd807210824.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[252] = new Element(
		252, "",
		0, 0,
		"39230500", "BAWOS",
		"500 ml", "39",
		"3.3", "500",
		"1", 1,
		"", "28",
		"", "pd-86614103.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[253] = new Element(
		253, "",
		0, 0,
		"39231000", "BAWOS",
		"1000 ml", "39",
		"5.2", "1000",
		"1", 1,
		"", "28",
		"", "pd249603766.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[254] = new Element(
		254, "",
		0, 0,
		"39232500", "BAWOS",
		"2500 ml", "39",
		"12.5", "2500",
		"1", 1,
		"", "28",
		"", "pd314888703.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[255] = new Element(
		255, "",
		0, 0,
		"39235000", "BAWOS",
		"5000 ml", "39",
		"24.5", "5000",
		"1", 1,
		"", "28",
		"", "pd-435944492.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[256] = new Element(
		256, "",
		0, 0,
		"39239999", "BAWOS",
		"10000 ml", "39",
		"46", "10000",
		"1", 1,
		"", "28",
		"", "pd-618322875.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[257] = new Element(
		257, "",
		0, 0,
		"39260500", "Prohell",
		"500 ml", "39",
		"1.8", "500",
		"1", 1,
		"", "28",
		"", "pd2105284603.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[258] = new Element(
		258, "",
		0, 0,
		"39261000", "Prohell",
		"1000 ml", "39",
		"3.2", "1000",
		"1", 1,
		"", "28",
		"", "pd-467945184.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[259] = new Element(
		259, "",
		0, 0,
		"39265000", "Prohell",
		"5000 ml", "39",
		"12.8", "5000",
		"1", 1,
		"", "28",
		"", "pd-1456321887.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[260] = new Element(
		260, "",
		0, 0,
		"39269999", "Prohell",
		"10000 ml", "39",
		"25", "10000",
		"1", 1,
		"", "28",
		"", "pd807650382.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Oranex2.jpg",
		81, 80,
		"39300100", "Orangenreiniger HT / Cleano fresh",
		"Kraftvolles Universal - Haushaltsreiniger Konzentrat auf Orangenbasis", "39",
		"1.5", "100",
		"1", 1,
		"", "28",
		"Bitte wählen Sie eine Grösse;100 ml@", "pd-1507355209.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[262] = new Element(
		262, "",
		0, 0,
		"39310030", "Orangen-Odex",
		"30 ml", "39",
		"0.85", "30",
		"1", 1,
		"", "28",
		"", "pd1692161528.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[263] = new Element(
		263, "",
		0, 0,
		"39310050", "Orangen-Odex",
		"50 ml", "39",
		"1.2", "50",
		"1", 1,
		"", "28",
		"", "pd1442311321.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[264] = new Element(
		264, "",
		0, 0,
		"39310100", "Orangen-Odex",
		"100 ml", "39",
		"1.7", "100",
		"1", 1,
		"", "28",
		"", "pd-999944986.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[265] = new Element(
		265, "",
		0, 0,
		"39400250", "Gallseife flüssig",
		"250 ml", "39",
		"2.95", "250",
		"1", 1,
		"", "28",
		"", "pd1896278127.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[266] = new Element(
		266, "",
		0, 0,
		"39400500", "Gallseife flüssig",
		"500 ml", "39",
		"4.85", "500",
		"1", 1,
		"", "28",
		"", "pd1137350020.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[267] = new Element(
		267, "",
		0, 0,
		"39401000", "Gallseife flüssig",
		"1000 ml", "39",
		"8.95", "1000",
		"1", 1,
		"", "28",
		"", "pd-1175396299.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[268] = new Element(
		268, "",
		0, 0,
		"39411000", "BAWA/Gruwash Konzentrat HT",
		"1000 ml", "39",
		"5.7", "1000",
		"1", 1,
		"", "28",
		"", "pd-586741934.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[269] = new Element(
		269, "",
		0, 0,
		"39412500", "BAWA/Gruwash Konzentrat HT",
		"2500 ml", "39",
		"13.5", "2500",
		"1", 1,
		"", "28",
		"", "pd-447744661.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[270] = new Element(
		270, "",
		0, 0,
		"39415000", "BAWA/Gruwash Konzentrat HT",
		"5000 ml", "39",
		"25.5", "5000",
		"1", 1,
		"", "28",
		"", "pd-1454619184.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[271] = new Element(
		271, "",
		0, 0,
		"39419999", "BAWA/Gruwash Konzentrat HT",
		"10 Liter", "39",
		"48.9", "10000",
		"1", 1,
		"", "28",
		"", "pd-1390336623.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[272] = new Element(
		272, "",
		0, 0,
		"39420500", "Softin HT - neu -",
		"500 ml", "39",
		"2", "500",
		"1", 1,
		"", "28",
		"", "pd-2049712002.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[273] = new Element(
		273, "",
		0, 0,
		"39421000", "Softin HT - neu -",
		"1000 ml", "39",
		"3.2", "1000",
		"1", 1,
		"", "28",
		"", "pd191867431.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[274] = new Element(
		274, "",
		0, 0,
		"39660500", "Spülmittel Lavebo",
		"500 ml", "39",
		"2.5", "500",
		"1", 1,
		"", "28",
		"", "pd1994713256.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[275] = new Element(
		275, "",
		0, 0,
		"39661000", "Spülmittel Lavebo",
		"1000 ml", "39",
		"4.5", "1000",
		"1", 1,
		"", "28",
		"", "pd1900270985.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[276] = new Element(
		276, "",
		0, 0,
		"39670500", "Sanitärreiniger Lavebo",
		"500 ml", "39",
		"2.35", "500",
		"1", 1,
		"", "28",
		"", "pd1342545686.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[277] = new Element(
		277, "",
		0, 0,
		"39680250", "Geo-Wash",
		"250 ml", "39",
		"2.8", "250",
		"1", 1,
		"", "28",
		"", "pd-177554721.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[278] = new Element(
		278, "",
		0, 0,
		"39700500", "Proweich HT",
		"500 ml", "39",
		"2.5", "500",
		"1", 1,
		"", "28",
		"", "pd-1536740556.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[279] = new Element(
		279, "",
		0, 0,
		"39701000", "Proweich HT",
		"1000 ml", "39",
		"4.5", "1000",
		"1", 1,
		"", "28",
		"", "pd1730459685.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/eureco.jpg",
		60, 110,
		"39800001", "Eureco / Cleano Hygienebleiche 1 ltr-Flasche",
		"1 St", "39",
		"4.95", "1",
		"1", 1,
		"", "28",
		"", "pd790994050.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[281] = new Element(
		281, "",
		0, 0,
		"39990750", "Ultra-Weiß",
		"750 g", "39",
		"3.6", "750",
		"1", 1,
		"", "28",
		"", "pd-1356095872.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[282] = new Element(
		282, "",
		0, 0,
		"39991500", "Ultra-Weiß",
		"1500 g", "39",
		"6.7", "1500",
		"1", 1,
		"", "28",
		"", "pd454155393.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[283] = new Element(
		283, "",
		0, 0,
		"04160250", "Isomalt",
		"250 g", "65",
		"2.75", "250",
		"2", 1,
		"", "18",
		"", "pd-47030970.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[284] = new Element(
		284, "",
		0, 0,
		"04160500", "Isomalt",
		"500 g", "65",
		"4.75", "500",
		"2", 1,
		"", "18",
		"", "pd891767119.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[285] = new Element(
		285, "",
		0, 0,
		"04170010", "Konfilight HT",
		"10 g", "65",
		"1.85", "10",
		"2", 1,
		"", "18",
		"", "pd-1400578844.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[286] = new Element(
		286, "",
		0, 0,
		"04170050", "Konfilight HT",
		"50 g", "65",
		"5.4", "50",
		"2", 1,
		"", "18",
		"", "pd1993321493.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/lightsuess.gif",
		80, 80,
		"30400001", "Lightsüß HT Dose mit 4.000 Tabletten",
		"4.000 Stück", "65",
		"22.4", "4000",
		"2", 1,
		"", "18",
		"", "pd-748937806.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/lightsuess.gif",
		80, 80,
		"30500500", "Lightsüß HT Spender mit 500 Tabletten",
		"500 St", "65",
		"4.6", "500",
		"2", 1,
		"Stück", "18",
		"", "pd-1827355856.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/lightsuess.gif",
		80, 80,
		"30772000", "Lightsüß HT Dose mit  2000 Tabletten",
		"AKTIONSPREIS !!!!!", "65",
		"11.95", "2000",
		"2", 1,
		"Stück", "18",
		"", "pd1577283441.html",
		"", 1,
		"010465", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/Waescheparfuem Fresh Wind.jpg",
		43, 110,
		"11900100", "Fresh Wind",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd-1877604804.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/Waescheparfuem Apfelgruen.jpg",
		42, 110,
		"11920100", "Apfelgrün",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd-484264992.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/Waescheparfuem Summerwind.jpg",
		35, 110,
		"11930100", "Summerwind",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd-1819206413.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/Waescheparfuem Fruehlingswiese.jpg",
		39, 110,
		"11950100", "Frühlingswiese",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd-1420313.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/Waescheparfuem Seebrise.jpg",
		44, 110,
		"11960100", "Seebrise",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd46148456.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/Hobbythek Tegomuls.jpg",
		115, 110,
		"01010050", "Tegomuls HT",
		"Emulgator", "1",
		"1.95", "50",
		"1", 1,
		"", "6",
		"Inhalt;50 g@", "pd1028466258.html",
		"", 1,
		"010101", "0",
		 0)
	
		Entry[296] = new Element(
		296, "",
		0, 0,
		"14500010", "Perlgrün Perlglanzpigment",
		"10 g", "14",
		"3.2", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd530460606.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12450010", "Anti-Stress-Essenz",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"3.3", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd-2023233434.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/Sternanis2.jpg",
		89, 110,
		"12140010", "Anisöl (Sternanis), China",
		"Intensive würzige Süße, die an Lakrize erinnert", "12",
		"2.35", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1145348086.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/basilik.jpg",
		103, 110,
		"12410010", "Basilikumöl, Comoren",
		"Würzige Frische mit krautig-süßlichen Elementen", "12",
		"3.65", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd92529326.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/Bergamotte5.jpg",
		100, 100,
		"12550010", "Bergamotte, Italien naturrein",
		"Frisch, grün-fruchtig, leicht, süß", "12",
		"6.2", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1543656494.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/Bergamotte5.jpg",
		100, 100,
		"12010010", "Bergamotteöl, nat. id.",
		"Zitronig, frische Duftnote", "12",
		"2.1", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd583610712.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/mandel.jpg",
		101, 110,
		"12780010", "Bittermandel nat. id.",
		"Beruhigend, narkotisch", "12",
		"1.85", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-1137363721.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/Citronel.jpg",
		94, 110,
		"12620010", "Citronellöl, Java",
		"frisch, zitronenartig, leicht süßlich", "12",
		"1.6", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-661084066.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/eukal.jpg",
		89, 110,
		"12200010", "Eukalyptusöl, China",
		"Frisch und würzig-krautig. ", "12",
		"2.2", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd640599639.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/fenchel1.jpg",
		66, 110,
		"12110010", "Fenchelöl, Spanien",
		"Geruch arteigen aromatisch, Geschmack würzig und süsslich", "12",
		"2.3", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1178824435.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/fichte1.jpg",
		110, 90,
		"12120010", "Fichtennadelöl, Sibirien",
		"Sehr frisch mit deutlicher Holznote und weichen, würzigen Unterton", "12",
		"2.15", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd683792294.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/Geranium2.jpg",
		110, 90,
		"12020010", "Geraniumöl, China",
		"Blumig-rosig, minzig, zitronig", "12",
		"2.6", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd788518726.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/grapef1.jpg",
		100, 110,
		"12430010", "Grapefruitöl, USA",
		"Die Grapefruit ist eine Zitrusfrucht mit pflegenden Wirkstoffen", "12",
		"3.95", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1091832218.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/minze.jpg",
		100, 100,
		"12260010", "Krauseminze/Spearmint USA",
		"erfrischend, belebend, anregend", "12",
		"2.55", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-1476532925.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/Latschen3.jpg",
		83, 110,
		"12270010", "Latschenkiefernöl, nat. id.",
		"lufterfrischend, kräftiger, klarer Winterduft mit leicht harzigem Einschlag", "12",
		"1.85", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1737663030.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/lavendel3.jpg",
		110, 110,
		"12030010", "Lavendelöl, Frankreich",
		"Frisch, blumig-krautig, luftig, klar ", "12",
		"2.9", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1469541909.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/Citronel.jpg",
		94, 110,
		"12350010", "Lemongrasöl, Guatemala",
		"Frisch, kraftvoll, zitrusartig, zitronig", "12",
		"2.4", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-692727128.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/Mandarine4.jpg",
		110, 101,
		"12040010", "Mandarine, Italien",
		" Warm, süß, weich-fruchtig", "12",
		"2.3", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1994084721.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/Melisse2.jpg",
		84, 110,
		"12050010", "Melissenöl, China",
		"Leicht, frisch, zitronig, spitzig, hell, sonnig-warm", "12",
		"1.85", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-1059368900.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/menthol4.jpg",
		109, 100,
		"12330010", "Menthol, kristallin, China",
		"erfrischend, süß, &quot;minzig&quot;, mit ausgeprägtem Kühleffekt", "12",
		"2.1", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 g@", "pd-982516937.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/Muskatteller2.jpg",
		84, 110,
		"12420010", "Muskatellersalbei, Frankreich",
		"Deutliche krautige Note, dezent süßlich mit leichten herben Nuancen", "12",
		"3.45", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd857899148.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/Nelke4.jpg",
		70, 110,
		"12160010", "Nelkenöl, Madagaskar",
		"Insektenabweisend, würzig, warm, kräftig, krautig ", "12",
		"2.9", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1076337251.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/niaouli2.jpg",
		103, 110,
		"12130010", "Niaouliöl, Spanien",
		"Krautig, frisch, eukalyptusartig", "12",
		"1.85", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-28639726.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/olibanum.jpg",
		94, 110,
		"12820010", "Olibanumöl/Weihrauchöl",
		"Voll, balsamisch, süß, mit frischer Harznote mit angenehmen süßlichem Hintergrund", "12",
		"5.95", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-688180775.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/orange1.jpg",
		110, 102,
		"12060010", "Orangenöl, süß Italien",
		"frisch-fruchtig, spritzig, warm, süß, &quot;sonnig&quot;", "12",
		"1.6", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-725270653.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/Pfefferminze2.jpg",
		109, 110,
		"12080010", "Pfefferminzöl, USA",
		"intensiver Minzeduft mit kühler, klarer Frische", "12",
		"2.3", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-24738369.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/rosenholz.jpg",
		99, 99,
		"12250010", "Rosenholzöl, Brasilien",
		"süss-holzig, blumig, frisch, Rosenartige Hintergrundnote", "12",
		"3.95", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd860620540.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/rose.jpg",
		100, 110,
		"12190010", "Rosenöl, artific.",
		"Intensiver, süßer Blütenduft. Deutliches Rosenaroma mit einer weichen, honigartigen Nuance", "12",
		"2.95", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd697508672.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/rosmarin2.jpg",
		110, 71,
		"12170010", "Rosmarinöl, Tunesien",
		"Ätherisches Rosmarin-Öl hat eine klare, frisch-kräuterartige Note.", "12",
		"2.25", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1221761494.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/salbei2.gif",
		90, 110,
		"12150010", "Salbeiöl, Spanien",
		"kräftiger und würziger Kräuterduft mit dezent herben Nuancen", "12",
		"2.15", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-1779133540.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/stroblu.jpg",
		96, 110,
		"12810001", "Strohblumenöl/Helichrysumöl",
		"Würzig, blumig, warm, vielschichtig", "12",
		"4.95", "1",
		"1", 1,
		"", "1",
		"Inhalt;1 ml@", "pd-1906812301.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/teeb.jpg",
		78, 110,
		"12570010", "Teebaumöl, Australien",
		"Afrisch, krautig, würzig-kampfrig, medizinisch, eukalyptsartig", "12",
		"3.55", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-203915235.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/thymian3.jpg",
		73, 110,
		"12090010", "Thymianöl, Spanien",
		"scharf, würzig, kräuterartig", "12",
		"2.15", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-141566496.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/wach.jpg",
		107, 110,
		"12290010", "Wacholderbeeröl",
		"würzig und frisch mit dezenter Fruchtnote", "12",
		"2.1", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-231451195.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/ylang.jpg",
		101, 110,
		"12220010", "Ylang-Ylang, Comoren",
		"Das ätherische Öl des Ylang Ylang Baumes wirkt antiseptisch, ausgleichend, erotisierend", "12",
		"7.5", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-486978289.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/zede.jpg",
		110, 80,
		"12180010", "Cedernholzöl, USA",
		"Holzig-warmer Duft, dezent herber Charakter mit ganz feiner Süße, Herz-Basisnote, insgesamt weicher, harmonischer Charakter, mottenabwehrend", "12",
		"2.3", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd863924709.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/zimt1.jpg",
		110, 89,
		"12320010", "Zimtöl, Ceylon",
		"intensives Zimtaroma mit deutlicher Würze und süßlichen Aspekten", "12",
		"2.3", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd447584416.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/Zitrone Messina.jpg",
		100, 100,
		"12240010", "Zitronenöl, Messina",
		"erfrischend, adstringierend, leicht beruhigend, nervenstärkend, konzentrationsfördernd", "12",
		"2.3", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1860711729.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/zitronen.jpg",
		84, 110,
		"12100010", "Zitronenöl, Italien",
		"Sehr erfrischend, Konzentrationsfördernd", "12",
		"1.7", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1578008951.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/zypresse2.jpg",
		94, 110,
		"12560010", "Zypressenöl, Frankreich",
		"angenhem würzig mit deutlicher Holznote, etwas herb und leicht rauchig", "12",
		"3.95", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd-376823785.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12470010", "Insekten-Stop-Essenz",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"2.9", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd-1205926576.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12480010", "Nikotin-Stop-Essenz",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"3.45", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd-651268185.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12490010", "Saunamischung",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"3.2", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd-2088990742.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12360010", "Weihnachtsduft",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"3.2", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd-894653217.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12400010", "Wellness-Essenz &quot;Gute Besserung&quot;",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"3.2", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd361652443.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/Hobbythek Aetherisches Oel Duftmischung.jpg",
		110, 110,
		"12720010", "Winterabend",
		"Feine Mischung ausgewählter ätherischer Öle", "12",
		"3.2", "10",
		"1", 1,
		"", "2",
		"Inhalt;10 ml@", "pd245722501.html",
		"", 1,
		"0501", "0",
		 0)
	
		Entry[342] = new Element(
		342, "",
		0, 0,
		"04060100", "Glycerin 86 %",
		"Feuchthaltemittel für Pflegeprodukte", "4",
		"1.75", "50",
		"1", 1,
		"", "11",
		"Inhalt;100 ml@", "pd-1825128555.html",
		"", 1,
		"010110", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/Waeschepaerfuem Vanilla.jpg",
		36, 110,
		"17100100", "Vanilla",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"Stück", "3",
		"Inhalt;100 ml@", "pd-648992093.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[344] = new Element(
		344, "",
		0, 0,
		"08050005", "Hyaluronsäure",
		"Antifaltensubstanz", "",
		"3.5", "0",
		"1", 1,
		"Stück", "12",
		"Inhalt;0,5 g@", "pd1173778180.html",
		"", 1,
		"010108", "0",
		 0)
	
		Entry[345] = new Element(
		345, "",
		0, 0,
		"11210010", "Maiglöckchen",
		"", "",
		"2.4", "0",
		"1", 1,
		"Stück", "27",
		"Inhalt;10 ml@", "pd-1631001808.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[346] = new Element(
		346, "",
		0, 0,
		"03140050", "Kakaobutter Pellets",
		"Grundlage für Nachtpflegeprodukte, besonders bei reifer und spröder Haut", "3",
		"1.95", "50",
		"2", 1,
		"", "8",
		"Inhalt;50 g@", "pd1190908038.html",
		"", 1,
		"010103", "0",
		 0)
	
		Entry[347] = new Element(
		347, "",
		0, 0,
		"22300100", "Raumparfüm Tropical",
		"", "",
		"6.9", "100",
		"1", 1,
		"Stück", "4",
		"Inhalt;100 ml@", "pd982281519.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[348] = new Element(
		348, "",
		0, 0,
		"22310100", "Raumparfüm Frühling",
		"", "",
		"6.9", "0",
		"1", 1,
		"Stück", "4",
		"Inhalt;100 ml@", "pd-980498276.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[349] = new Element(
		349, "",
		0, 0,
		"22320100", "Raumparfüm Orange",
		"", "",
		"6.9", "100",
		"1", 1,
		"Stück", "4",
		"Inhalt;100 ml@", "pd1623707690.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[350] = new Element(
		350, "",
		0, 0,
		"22330100", "Raumparfüm Apfel-Pfirsich",
		"", "",
		"6.9", "100",
		"1", 1,
		"Stück", "4",
		"Inhalt;100 ml@", "pd-58289079.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[351] = new Element(
		351, "",
		0, 0,
		"22340100", "Raumparfüm Limone",
		"", "",
		"6.9", "100",
		"1", 1,
		"Stück", "4",
		"Inhalt;100 ml@", "pd-1916174092.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[352] = new Element(
		352, "",
		0, 0,
		"22350100", "Raumparfüm Teerose",
		"", "",
		"6.9", "100",
		"1", 1,
		"1 Stück", "4",
		"Inhalt;100 ml@", "pd2092595099.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[353] = new Element(
		353, "",
		0, 0,
		"22360100", "Raumparfüm Kokos-Vanille",
		"", "",
		"6.9", "100",
		"1", 1,
		"1 Stück", "4",
		"Inhalt;100 ml@", "pd-1662031762.html",
		"", 1,
		"010422", "0",
		 0)
	
		Entry[354] = new Element(
		354, "",
		0, 0,
		"39035000", "Biozym F",
		"5.000 ml", "39",
		"33", "1000",
		"1", 1,
		"", "28",
		"", "pd1210678993.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[355] = new Element(
		355, "",
		0, 0,
		"39032500", "Biozym F",
		"2500 ml", "39",
		"17", "2500",
		"1", 1,
		"", "28",
		"", "pd1052481704.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/10 CO2-zylinder.jpg",
		110, 146,
		"95810010", "10 Stück Kauf-Zylinder Mixit 290 g",
		"", "",
		"65", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1217434360.html",
		"", 1,
		"020233", "0",
		 0)
	
		Entry[357] = new Element(
		357, "",
		0, 0,
		"95850010", "10 Stück CO2-Tauschzylinder Mixit 290 g",
		"", "",
		"37", "0",
		"1", 1,
		"Stück", "33",
		"", "pd2038993382.html",
		"", 1,
		"020233", "0",
		 0)
	
		Entry[358] = new Element(
		358, "",
		0, 0,
		"95850018", "18 Stück CO2-Tauschzylinder Mixit 290 g nur € 54,00 frei Haus",
		"", "",
		"54", "0",
		"1", 1,
		"Stück", "33",
		"", "pd2400900.html",
		"", 1,
		"020233", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/Bioweich logo 23.09.jpg",
		140, 88,
		"39201000", "BIOWEICH/KALWEG",
		"Natürlicher Weichspüler und Kalkentferner auf Citronensäurebasis", "39",
		"3.7", "0",
		"1", 1,
		"Stück", "28",
		"Inhalt;1000 ml@", "pd1222184624.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/6 Waescheparfuem.jpg",
		107, 80,
		"17500006", "Wäscheparfuem Schnuppersortiment 6 Stück a. 10 ml für nur € 3,60",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"Stück", "3",
		"", "pd1232213823.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/Euxyl PE 9010 Bild.jpg",
		110, 91,
		"15090010", "Euxyl PE 9010",
		"Innovatives Kosmetikkonservierungsmittel auf Basis von Phenoxyethanol", "15",
		"1.9", "10",
		"1", 1,
		"", "15",
		"Inhalt;10 ml@", "pd1235579419.html",
		"", 1,
		"010115", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/Blutorange Etikett.jpg",
		36, 57,
		"17510100", "Blutorange",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd-1968917270.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/Limone-Etikett.jpg",
		36, 57,
		"17520100", "Limone",
		"Das Wäscheparfüm", "66",
		"3.6", "100",
		"1", 1,
		"", "3",
		"Inhalt;100 ml@", "pd-40984652.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/6 Waescheparfuem.jpg",
		107, 80,
		"17500008", "Wäscheparfuem Schnuppersortiment 8 Stück a. 10 ml für nur € 4,80",
		"Das Wäscheparfüm", "66",
		"4.8", "100",
		"1", 1,
		"Stück", "3",
		"", "pd-552603346.html",
		"", 1,
		"010366", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/Arganoel.jpg",
		143, 107,
		"02190100", "Arganöl kaltgepresst",
		"Argania spinosa", "2",
		"7.9", "0",
		"2", 1,
		"Stück", "7",
		"Inhalt;100 ml@", "pd-719468345.html",
		"", 1,
		"010102", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/Waschnuesse.jpg",
		104, 83,
		"39730100", "Waschnuss-Schalen",
		"", "",
		"2.45", "0",
		"1", 1,
		"Stück", "31",
		"Inhalt;100 g@", "pd1281541309.html",
		"", 1,
		"09", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/Cremedose bordeaux grau Hintergrund.jpg",
		180, 101,
		"80040050", "Cremedose bordeaux-rot, doppelwandig ",
		"", "",
		"1.1", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1281985655.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/Cremedose schwarz GH.jpg",
		180, 101,
		"80030050", "Cremedose, schwarz doppelwandig",
		"", "",
		"1.3", "0",
		"1", 1,
		"Stück", "29",
		"Inhalt;50 ml@", "pd-1682918984.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/Becherglaeser feuerfest.jpg",
		125, 61,
		"80200100", "feuerfeste Bechergläser 100 ml",
		"", "",
		"3.7", "0",
		"1", 1,
		"Stück", "29",
		"Bitte wählen Sie eine Grösse;100 ml@", "pd-444277395.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/Messbecher mit Henkel1.jpg",
		128, 88,
		"80210050", "Messbecher mit Henkel",
		"", "",
		"1.55", "0",
		"1", 1,
		"Stück", "29",
		"Bitte wählen Sie eine Grösse;50 ml@", "pd-1705952524.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/P1000698.JPG",
		180, 101,
		"80070000", "Cremedose grau doppwandig 50 ml",
		"", "",
		"1.3", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1282652229.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/Zerstaeuberflasche Bosten klar100 ml.jpg",
		180, 101,
		"8083000", "Zerstäuberflasche PET Bosten 100 ml klar",
		"", "",
		"1.3", "0",
		"1", 1,
		"Stück", "29",
		"", "pd11754784.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/8022 Thermometer 100G.jpg",
		180, 101,
		"8022000", "Thermometer 100 Grad lang",
		"", "",
		"4.6", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-57407410.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/8097 Tube schwarz roter Deckel.jpg",
		180, 101,
		"80970000", "Tube schwarz, 30 ml Deckel bordeaux",
		"", "",
		"1", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1320263468.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/8006 Cremedose schwarz-silber.jpg",
		180, 101,
		"8006000", "Cremedose schwarz, Silberdeckel 50 ml",
		"", "",
		"1.3", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-16856774.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/8037 Flasche weiss oval, 150 ml Deckel rot.jpg",
		180, 101,
		"80370000", "Flasche weiß oval, 150 ml Deckel rot",
		"", "",
		"1.4", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-639862280.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/8053 Tube schwarz 75 ml Deckel bordeaux.jpg",
		180, 101,
		"80530000", "Tube schwarz 75 ml Deckel bordeaux SONDERPREIS!!!!",
		"", "",
		"0.5", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1317875482.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/8085 Tube schwarz 75 ml Deckel schwarz.jpg",
		180, 101,
		"80850000", "Tube schwarz 75 ml Deckel schwarz/silber SONDERPREIS!!!!",
		"", "",
		"0.5", "0",
		"1", 1,
		"Stück", "29",
		"", "pd641005956.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/8039 Flasche weiss 50 ml Deckel weiss.jpg",
		180, 101,
		"80390000", "Flasche weiß 50 ml Deckel weiß/gold",
		"", "",
		"1", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1769469102.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/8035 Tropfpipette,105 lang, mit Grad.jpg",
		180, 101,
		"80350000", "Tropfpipette 105 lang, mit Graduierung für 100 ml Flasche",
		"", "",
		"0.75", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1236997680.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/Oranex2.jpg",
		81, 80,
		"39300100", "Orangenreiniger HT / Cleano fresh",
		"Kraftvolles Universal - Haushaltsreiniger Konzentrat auf Orangenbasis", "39",
		"1.5", "100",
		"1", 1,
		"", "30",
		"Bitte wählen Sie eine Grösse;100 ml@", "pd-1085974494.html",
		"", 1,
		"3930", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/9501 Cremedose naturf weiss.jpg",
		180, 146,
		"95010050", "Cremedose matt-naturfarbig/ weißer Deckel  PP",
		"", "",
		"1.3", "0",
		"1", 1,
		"Stück", "29",
		"Inhalt;50 ml@", "pd-1802760394.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/8053 Tube schwarz 75 ml Deckel bordeaux.jpg",
		180, 101,
		"80540100", "Tube schwarz 100 ml Deckel bordeaux SONDERPREIS!!!!",
		"", "",
		"0.6", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1288702345.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/8085 Tube schwarz 75 ml Deckel schwarz.jpg",
		180, 101,
		"80860100", "Tube schwarz 100 ml Deckel schwarz/silber SONDERPREIS!!!!",
		"", "",
		"0.6", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-2122568667.html",
		"", 1,
		"0106", "0",
		 0)
	
		Entry[385] = new Element(
		385, "",
		0, 0,
		"39180500", "Proweiß-Super HT",
		"500 g", "39",
		"3.2", "500",
		"1", 1,
		"", "28",
		"", "pd1076749019.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/lightsuess.gif",
		80, 80,
		"30400001-1", "Lightsüß HT Dose mit 4.000 Tabletten",
		"4.000 Stück", "65",
		"22.4", "4000",
		"2", 1,
		"", "34",
		"", "pd-475265237.html",
		"", 1,
		"30", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/lightsuess.gif",
		80, 80,
		"30500500-1", "Lightsüß HT Spender mit 500 Tabletten",
		"500 St", "65",
		"4.6", "500",
		"2", 1,
		"Stück", "34",
		"", "pd497716561.html",
		"", 1,
		"30", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/lightsuess.gif",
		80, 80,
		"30772000-1", "Lightsüß HT Dose mit 2000 Tabletten zum AKTIONSPREIS !",
		"", "65",
		"11.95", "2000",
		"2", 1,
		"Stück", "34",
		"", "pd-1837213721.html",
		"", 1,
		"30", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/Patchouli-Bild.jpg",
		110, 91,
		"11120010", "Patchouli, Sumatra",
		"erdig-holziges Aroma mit leicht moosiger Note", "11",
		"2.75", "10",
		"1", 1,
		"", "1",
		"Inhalt;10 ml@", "pd1816582254.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/Kampfer.jpg",
		80, 80,
		"12840010", "Kampferöl, hell, China",
		"anregend, antiseptisch, tonisierend, kühlend", "",
		"1.7", "0",
		"1", 1,
		"Stück", "1",
		"Inhalt;10 ml@", "pd-89220793.html",
		"", 1,
		"0502", "0",
		 0)
	
		Entry[391] = new Element(
		391, "",
		0, 0,
		"03091000", "Rewoderm HT (Li  S 80)",
		"1.000 ml", "20",
		"12.75", "1000",
		"1", 1,
		"", "23",
		"", "pd1304012167.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[392] = new Element(
		392, "",
		0, 0,
		"03092500", "Rewoderm HT (Li  S 80)",
		"2.500 ml", "20",
		"31.5", "1000",
		"1", 1,
		"", "23",
		"", "pd220939021.html",
		"", 1,
		"010220", "0",
		 0)
	
		Entry[393] = new Element(
		393, "",
		0, 0,
		"14310010", "Perlsienna Perlglanzpigment",
		"10 g", "14",
		"3.2", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-282684679.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[394] = new Element(
		394, "",
		0, 0,
		"14240010", "Pinkperl Perlglanzpigment",
		"10 g", "14",
		"3.2", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd347320164.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[395] = new Element(
		395, "",
		0, 0,
		"14320010", "Kupfer Perlglanzpigment",
		"10 g", "14",
		"2.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-705586338.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[396] = new Element(
		396, "",
		0, 0,
		"14420010", "Flipperl-Teintpink Perlglanzpigment",
		"10 g", "14",
		"2.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd1086165261.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[397] = new Element(
		397, "",
		0, 0,
		"14390010", "Silberweiß Perlglanzpigment",
		"10 g", "14",
		"2.7", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd765377672.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[398] = new Element(
		398, "",
		0, 0,
		"14340010", "Dunkelblausatin Perlglanzpigment",
		"10 g", "14",
		"2.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd-215677676.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[399] = new Element(
		399, "",
		0, 0,
		"14040010", "Pigment &quot;Violett&quot;",
		"10 g", "14",
		"1.9", "10",
		"1", 1,
		"", "14",
		"Inhalt;10 g@", "pd538529376.html",
		"", 1,
		"010114", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/Hobbythek Parfuemoel 1.jpg",
		110, 110,
		"11870010", "Honigmelone",
		"fruchtig süßer Duft einer Honigmelone.    Für selbstgemachtes Parfüm oder Raumspray, für Kosmetik oder für die Duftlampe", "11",
		"2.4", "10",
		"1", 1,
		"", "27",
		"Inhalt;10 ml@", "pd1308667617.html",
		"", 1,
		"010611", "0",
		 0)
	
		Entry[401] = new Element(
		401, "",
		0, 0,
		"39125000", "Schaumex-Konzentrat HT",
		"5 Liter", "39",
		"42", "10000",
		"1", 1,
		"", "28",
		"", "pd-817124445.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[402] = new Element(
		402, "",
		0, 0,
		"39702500", "Proweich HT",
		"2.500 ml", "39",
		"10.5", "2500",
		"1", 1,
		"", "28",
		"", "pd254649993.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[403] = new Element(
		403, "",
		0, 0,
		"39705000", "Proweich HT",
		"5 Liter", "39",
		"19.5", "5000",
		"1", 1,
		"", "28",
		"", "pd-1215499297.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[404] = new Element(
		404, "",
		0, 0,
		"39709999", "Proweich HT",
		"10 Liter", "39",
		"37.5", "5000",
		"1", 1,
		"", "28",
		"", "pd1154849061.html",
		"", 1,
		"010339", "0",
		 0)
	
		Entry[405] = new Element(
		405, "",
		0, 0,
		"39122500", "Schaumex-Konzentrat HT",
		"2.500 ml", "39",
		"22", "1000",
		"1", 1,
		"", "28",
		"", "pd1310136490.html",
		"", 1,
		"010339", "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.html?" + 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();
			};
		};
