	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/kaufen.gif" width="118" height="23" 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/messer80.jpg",
		80, 80,
		"E1402", "Messer 17cm 100 Stk.",
		"", "",
		"1.26", "0.3",
		"3", 1,
		"Stück", "4",
		"", "pd133559273.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/loffel80.jpg",
		80, 80,
		"E1403", "Löffel 17cm 100 Stk.",
		"", "",
		"1.42", "0.35",
		"3", 1,
		"Stück", "4",
		"", "pd-235438017.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/kaffeeloffel80.jpg",
		80, 80,
		"E1406", "Kaffeelöffel 100 Stk.",
		"", "",
		"0.94", "0.1",
		"3", 1,
		"Stück", "4",
		"", "pd-1513587579.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/pommesfritesgabeln80.jpg",
		80, 80,
		"E1415", "Pommes Frites Gabel bunt 2000 Stk.",
		"", "",
		"3.81", "0.85",
		"3", 1,
		"Stück", "4",
		"", "pd-2140657093.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/ruhrstabchenplaste80.jpg",
		80, 80,
		"E1416", "Rührstäbchen 112mm weiß 1000 Stk.",
		"", "",
		"3.87", "0.55",
		"3", 1,
		"Stück", "4",
		"", "pd-1422022943.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/ruhrstabchenholz80.jpg",
		80, 80,
		"E1418", "Rührstäbchen 140 mm Holz 1000 Stk.",
		"", "",
		"5.59", "0.475",
		"3", 1,
		"Stück", "4",
		"", "pd575359991.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/trinkhalm80.jpg",
		80, 80,
		"E1419", "Trinkhalme 21cm flexibel 1000 Stk.",
		"", "",
		"7.16", "0.5",
		"3", 1,
		"Stück", "4",
		"", "pd1729171197.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/eisloffel80.jpg",
		80, 80,
		"E1425", "Eislöffel div. Farben, 1000 Stk.",
		"Sonderaktion", "",
		"5.71", "1",
		"3", 1,
		"Stück", "4",
		"", "pd-1951014541.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/gabel80.jpg",
		80, 80,
		"E1400", "Gabel 17cm 100 Stk.",
		"", "",
		"1.26", "0.35",
		"3", 1,
		"Stück", "4",
		"", "pd-1949298471.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/suppenterrime250ml80.jpg",
		80, 80,
		"E1918", "Suppenterrine 250ml 100 Stk.",
		"", "",
		"3.26", "0.6",
		"3", 1,
		"Stück", "8",
		"", "pd1030654189.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/suppenterrime500ml80.jpg",
		80, 80,
		"E1917", "Suppenterrine 500ml 100 Stk.",
		"", "",
		"5.46", "0",
		"3", 1,
		"Stück", "8",
		"", "pd-1700156189.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/tellerungeteil80.jpg",
		80, 80,
		"E1920", "Teller rund ungeteilt PP 100 Stk.",
		"Aktionspreis", "",
		"5.41", "1.1",
		"3", 1,
		"Stück", "8",
		"", "pd-740783671.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/tellerzweigeteilt80.jpg",
		80, 80,
		"E1921", "Teller rund zweigeteilt PP 100 Stk.",
		"", "",
		"5.41", "1.3",
		"3", 1,
		"Stück", "8",
		"", "pd-141063905.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/tellerdreigeteilt80.jpg",
		80, 80,
		"E1922", "Teller rund dreigeteilt PP 100 Stk.",
		"", "",
		"5.41", "1.2",
		"3", 1,
		"Stück", "8",
		"", "pd1372532837.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/pappschaleoval10x17x380.jpg",
		80, 80,
		"E1302", "Pappschale oval 10x17x3cm KU OB 250 Stk.",
		"", "",
		"6.5", "1.75",
		"3", 1,
		"Stück", "10",
		"", "pd376599635.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/pappschaleoval12x21x380.jpg",
		80, 80,
		"E1303", "Pappschale oval 12x21x3,5cm KU OB 250 Stk.",
		"", "",
		"12.94", "2.6",
		"3", 1,
		"Stück", "10",
		"", "pd892231353.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/papptellereckig13x2080.jpg",
		80, 80,
		"E1324", "Pappteller eckig 13x20cm 250 Stk.",
		"", "",
		"5.81", "2",
		"3", 1,
		"Stück", "10",
		"", "pd-146331761.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/papptellereckig11x1780.jpg",
		80, 80,
		"E1325", "Pappteller eckig 11x17cm 250 Stk.",
		"", "",
		"6.69", "1.4",
		"3", 1,
		"Stück", "10",
		"", "pd-589056939.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/papptellereckig11x24teller80.jpg",
		80, 80,
		"E1326", "Pappteller eckig 11x24cm 250 Stk.",
		"", "",
		"4.56", "1.9",
		"3", 1,
		"Stück", "10",
		"", "pd-2064947573.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/teller2080.jpg",
		80, 80,
		"E1341", "Pappteller rund 21cm 100 Stk.",
		"", "",
		"4.19", "1.3",
		"3", 1,
		"Stück", "10",
		"", "pd-670208697.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/teller2380.jpg",
		80, 80,
		"E1342", "Pappteller rund 24cm 100 Stk.",
		"", "",
		"6.28", "1.45",
		"3", 1,
		"Stück", "10",
		"", "pd9130189.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/finestasses80.jpg",
		80, 80,
		"F3063", "Nestlé Fines Tasses 250g",
		"", "",
		"19.02", "0.25",
		"2", 1,
		"Stück", "16",
		"", "pd1564895489.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/santarica80.jpg",
		80, 80,
		"F3064", "Nestlé Santa Rica 250g",
		"", "",
		"16.88", "0.25",
		"2", 1,
		"Stück", "16",
		"", "pd1442536475.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/GVM neu 80.jpg",
		80, 180,
		"F3030", "Heimbs GVM fein Gemahlen 500g",
		"", "",
		"7.44", "0.5",
		"2", 1,
		"Stück", "16",
		"", "pd1630806493.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/heimbs60g80.jpg",
		80, 80,
		"F3023", "Heimbs Röstkaffee Ktn. 72x60g",
		"", "",
		"64.1", "3.4",
		"2", 1,
		"Stück", "16",
		"", "pd2094968659.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/cappiccino80.jpg",
		80, 80,
		"7106", "Cappuccino 25 cups HC",
		"", "",
		"7.32", "0.55",
		"2", 1,
		"Stück", "14",
		"", "pd-1958261687.htm",
		"", 1,
		"5-1-2", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/chicken80.jpg",
		80, 80,
		"7120", "Hühnersuppe 25 cups HC",
		"", "",
		"6.37", "0.35",
		"2", 1,
		"Stück", "14",
		"", "pd1079941832.htm",
		"", 1,
		"5-1-2", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/citrontea80.jpg",
		80, 80,
		"7109", "Zitronentee 25 cups HC",
		"", "",
		"5.28", "0.4",
		"2", 1,
		"Stück", "14",
		"", "pd-1355080138.htm",
		"", 1,
		"5-1-2", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/kaffeegold80.jpg",
		80, 80,
		"7101", "Kaffee Gold 35 cups HC",
		"", "",
		"8.68", "0.25",
		"2", 1,
		"Stück", "14",
		"", "pd-1236187308.htm",
		"", 1,
		"5-1-2", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/kakao80.jpg",
		80, 80,
		"7107", "Kakao 25 cups HC",
		"", "",
		"6.66", "0.55",
		"2", 1,
		"Stück", "14",
		"", "pd-1953870430.htm",
		"", 1,
		"5-1-2", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/tomato80.jpg",
		80, 80,
		"7116", "Tomatensuppe 25 cups HC",
		"", "",
		"6.06", "0.35",
		"2", 1,
		"Stück", "14",
		"", "pd-1302317920.htm",
		"", 1,
		"5-1-2", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/jedebouillon80.jpg",
		80, 80,
		"1024", "Bouillon ca. 135 Portionen JM",
		"", "",
		"14.96", "0.45",
		"2", 1,
		"Stück", "15",
		"", "pd469412814.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/jedecappuccino80.jpg",
		80, 80,
		"1040", "Cappuccino ca. 40 Portionen JM",
		"", "",
		"10.07", "0.6",
		"2", 1,
		"Stück", "15",
		"", "pd2081877676.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/jedechicken80.jpg",
		80, 80,
		"1059", "Hühnersuppe ca. 65 Portionen JM",
		"", "",
		"14.89", "0.5",
		"2", 1,
		"Stück", "15",
		"", "pd-1414355782.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/jedechoco80.jpg",
		80, 80,
		"1054", "Kakao ca. 42 Portionen JM",
		"", "",
		"10.39", "0.65",
		"2", 1,
		"Stück", "15",
		"", "pd2066858360.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/jedecitrontea80.jpg",
		80, 80,
		"1017", "Zitronentee ca. 75 Portionen JM",
		"", "",
		"12.11", "0.6",
		"2", 1,
		"Stück", "15",
		"", "pd209151078.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/jedecofewithe80.jpg",
		80, 80,
		"1020", "White ca. 176 Portionen JM",
		"", "",
		"7.76", "0.45",
		"2", 1,
		"Stück", "15",
		"", "pd1646901508.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/jedegold80.jpg",
		80, 80,
		"1001", "Kaffee Gold ca. 115 Portionen JM",
		"", "",
		"17.03", "0.25",
		"2", 1,
		"Stück", "15",
		"", "pd2038473040.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/jedekristal80.jpg",
		80, 80,
		"1036", "Kristall ca. 140 Portionen JM",
		"", "",
		"4.26", "0.7",
		"2", 1,
		"Stück", "15",
		"", "pd1755162622.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/jedetomato80.jpg",
		80, 80,
		"1027", "Tomatensuppe ca. 70 Portionen JM",
		"", "",
		"14.89", "0.5",
		"2", 1,
		"Stück", "15",
		"", "pd-1748171172.htm",
		"", 1,
		"5-1-1", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/teller1880.jpg",
		80, 80,
		"E1340", "Pappteller rund 19cm 100 Stk.",
		"", "",
		"5.06", "1.1",
		"3", 1,
		"Stück", "10",
		"", "pd1969248925.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/nesquik80.jpg",
		80, 80,
		"F2036", "Nestlé Nesquik 1000g",
		"", "",
		"7.65", "1.1",
		"2", 1,
		"Stück", "12",
		"", "pd1101812905.htm",
		"", 1,
		"5-2", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/kakaodose80.jpg",
		80, 80,
		"F2033", "Heimbs Milchschokoladen Flocken 2,5kg",
		"", "",
		"28.17", "2.85",
		"2", 1,
		"Stück", "12",
		"", "pd-1559698181.htm",
		"", 1,
		"5-2", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/apcappuccino80.jpg",
		80, 80,
		"F2010", " Cappuccino 1000g AP",
		"", "",
		"9.58", "1.1",
		"2", 1,
		"Stück", "12",
		"", "pd-1809850463.htm",
		"", 1,
		"5-2", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/faltfolien80.jpg",
		80, 80,
		"E1520", "ALU-Zuschnitte 27x30cm silber S-Box 500 Stk",
		"", "",
		"22.02", "0",
		"3", 1,
		"Stück", "7",
		"", "pd1032202889.htm",
		"", 1,
		"1-6", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Beutel27x33 80.jpg",
		71, 80,
		"E1543", "Tragetasche HD 27x33cm  weiß 100 Stk",
		"", "",
		"2.63", "0.6",
		"3", 1,
		"Stück", "7",
		"", "pd-726225031.htm",
		"", 1,
		"1-6", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/kaffeesahne80.jpg",
		80, 80,
		"F5030", "Heimbs Kaffeesahne 300x7,5g",
		"", "",
		"9.42", "2.75",
		"2", 1,
		"Stück", "19",
		"", "pd-1475475913.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/apcoffifee80.jpg",
		80, 80,
		"F5011", "Coffifee Topping 500g AP",
		"", "",
		"6.2", "0.5",
		"2", 1,
		"Stück", "19",
		"", "pd-1263125461.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/could80.jpg",
		80, 80,
		"F5010", " Kaffeeweißer Cloud  1000g AP",
		"", "",
		"6.41", "1",
		"2", 1,
		"Stück", "19",
		"", "pd-227378955.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/gloria80.jpg",
		80, 80,
		"F5014", "Nestlé Gloria 500g spezielle Magermilchmischung",
		"", "",
		"6.52", "0.5",
		"2", 1,
		"Stück", "19",
		"", "pd-180495129.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/coffeemate80.jpg",
		80, 80,
		"F5013", "Nestlé Glücksklee Coffee-mate 1000g",
		"", "",
		"6.29", "1",
		"2", 1,
		"Stück", "19",
		"", "pd1895025233.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/images/nopicture.gif",
		74, 50,
		"F5040", "Heimbs Kandis braun 500x6,5g",
		"", "",
		"19.36", "0",
		"2", 1,
		"Stück", "19",
		"", "pd-1204869174.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/Schokonaps 85.jpg",
		85, 59,
		"F5021", "Heimbs Schokonaps 300 Stk.a`5 g feinste Schokolade",
		"", "",
		"31.96", "0",
		"2", 1,
		"Stück", "19",
		"", "pd-738444536.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/images/nopicture.gif",
		74, 50,
		"F5036", "Zucker-Sticks ALLEGRETTO 1000 Stk á 4g",
		"", "",
		"21.06", "4.5",
		"2", 1,
		"Stück", "19",
		"", "pd734705782.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/allegrettonero80.jpg",
		80, 80,
		"F3041", "Heimbs Allegretto Espresso Nero",
		"", "",
		"8.52", "0.5",
		"2", 1,
		"Stück", "17",
		"", "pd1056461669.htm",
		"", 1,
		"5-8", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Classico 85.jpg",
		85, 195,
		"F3037", "Heimbs Allegretto Classico",
		"Espresso,Latte Macchiato,Cappuccino", "",
		"8.82", "0.5",
		"2", 1,
		"Stück", "17",
		"", "pd1803100819.htm",
		"", 1,
		"5-8", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/allegrettocremissimo80.jpg",
		80, 80,
		"F3040", "Heimbs Allegretto Espresso Cremissimo",
		"", "",
		"8.82", "0.5",
		"2", 1,
		"Stück", "17",
		"", "pd1897607965.htm",
		"", 1,
		"5-8", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/GVM neu Bohne 80.jpg",
		80, 175,
		"F3038", "Heimbs GVM ganze Bohne 500g",
		"", "",
		"6.85", "0.5",
		"2", 1,
		"Stück", "17",
		"", "pd2099534807.htm",
		"", 1,
		"5-8", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/allegrettocremante80.jpg",
		80, 80,
		"F3044", "Heimbs Allegretto Espresso Cremante",
		"", "",
		"8.82", "0.5",
		"2", 1,
		"Stück", "17",
		"", "pd1942295183.htm",
		"", 1,
		"5-8", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/allegrettosanmarco80.jpg",
		80, 80,
		"F3043", "Heimbs Allegretto San Marco",
		"Espresso,Latte Macchiato,Cappuccino", "",
		"9.5", "0.5",
		"2", 1,
		"Stück", "17",
		"", "pd-1574869215.htm",
		"", 1,
		"5-8", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/choci80.jpg",
		80, 80,
		"F2030", "Choci Kakao 1000g",
		"", "",
		"6.3", "1",
		"2", 1,
		"Stück", "12",
		"", "pd-1420489050.htm",
		"", 1,
		"5-2", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/images/nopicture.gif",
		74, 50,
		"5094", "Bonamat Glaskannee 1,7l mit Deckel",
		"", "",
		"22.05", "0",
		"3", 1,
		"Stück", "18",
		"", "pd-671907172.htm",
		"", 1,
		"5-9", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/images/nopicture.gif",
		74, 50,
		"5084", "Bonamat Isolierkanne 1,9l ISO",
		"", "",
		"76.41", "0",
		"3", 1,
		"Stück", "18",
		"", "pd-1218242006.htm",
		"", 1,
		"5-9", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/pappschale9x9x380.jpg",
		80, 80,
		"E1301", "Pappschale 9x9x3cm KU 19 1/2 250 Stk.",
		"", "",
		"5.13", "1.3",
		"3", 1,
		"Stück", "10",
		"", "pd-191721129.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/papptelleroval15x23x280.jpg",
		80, 80,
		"E1321", "Pappschale oval 15x23x2cm KU60 100 Stk.",
		"", "",
		"4.75", "1.2",
		"3", 1,
		"Stück", "10",
		"", "pd-1946987683.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/papptellereckig7x1480.jpg",
		80, 80,
		"E1328", "Pappteller eckig 7x14cm 250 Stk.",
		"", "",
		"1.88", "0.75",
		"3", 1,
		"Stück", "10",
		"", "pd557676559.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/pappen6x2080.jpg",
		80, 80,
		"E1329", "Pappteller eckig 6,5x22cm 250 Stk.",
		"", "",
		"2.48", "1.1",
		"3", 1,
		"Stück", "10",
		"", "pd1903458517.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/papptellereckig8x18380.jpg",
		80, 80,
		"E1330", "Pappteller eckig 8x18+3cm 250 Stk.",
		"", "",
		"3.56", "1.2",
		"3", 1,
		"Stück", "10",
		"", "pd-1528054005.htm",
		"", 1,
		"1-4", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/frischhaltefolie30cm80.jpg",
		80, 80,
		"E1510", "Frischhaltefolie 30x300",
		"", "",
		"3.51", "0.8",
		"3", 1,
		"Stück", "7",
		"", "pd962717005.htm",
		"", 1,
		"1-6", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/alufolie30cm80.jpg",
		80, 80,
		"E1500", "Alufolie 30x150",
		"", "",
		"8.03", "1.2",
		"3", 1,
		"Stück", "7",
		"", "pd-570996687.htm",
		"", 1,
		"1-6", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Falthandtuescher80.jpg",
		80, 80,
		"E1700", "Falthandtüscher 25x23cm natur 5000 Stk",
		"", "",
		"21.66", "16.5",
		"3", 1,
		"Stück", "9",
		"", "pd905127245.htm",
		"", 1,
		"1-5", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/muellsacke80.jpg",
		80, 80,
		"E1705", "HD-Müllsack 120l 25 Stk",
		"", "",
		"2.98", "1.35",
		"3", 1,
		"Stück", "9",
		"", "pd1569005635.htm",
		"", 1,
		"1-5", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/serviette33x33pink80.jpg",
		80, 80,
		"E1733", "Serviette 33x33 rosa, 2l, 1/4F, 200 Stk",
		"", "",
		"4.31", "0.8",
		"3", 1,
		"Stück", "9",
		"", "pd282936887.htm",
		"", 1,
		"1-5", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/images/nopicture.gif",
		74, 50,
		"E1735", "Serviette 33x33 weiß,1lag. 1/4F 500 Stk",
		"", "",
		"3.47", "0",
		"3", 1,
		"Stück", "9",
		"", "pd867588377.htm",
		"", 1,
		"1-5", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/serviette33x33gruen80.jpg",
		80, 80,
		"E1737", "Serviette 33x33 grün, 2l, 1/4F, 200 Stk",
		"", "",
		"4.31", "0.8",
		"3", 1,
		"Stück", "9",
		"", "pd-1213695321.htm",
		"", 1,
		"1-5", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/HeimbsKaffeedose 2010 80.jpg",
		80, 112,
		"F3031", "Heimbs Kaffee EXCLUSIV gem 250g mit Dose",
		"", "",
		"8.08", "0.4",
		"2", 1,
		"Stück", "16",
		"", "pd17256711.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/rundpapier19080.jpg",
		80, 80,
		"5025", "Filterpapier für Rundfilter 190mm 500 Stk Melitta",
		"", "",
		"27.38", "0.85",
		"3", 1,
		"Stück", "6",
		"", "pd625464549.htm",
		"", 1,
		"1-7", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/rundpapier8980.jpg",
		80, 80,
		"5020", "Filterpapierrolle Bonamat 89mm",
		"", "",
		"20.38", "1.85",
		"3", 1,
		"Stück", "6",
		"", "pd-1574127205.htm",
		"", 1,
		"1-7", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/filterpapierbonamat80.jpg",
		80, 80,
		"5019", "Filterpapier Bonamat Nova/ISO 4x250",
		"", "",
		"23.72", "2.25",
		"3", 1,
		"Stück", "6",
		"", "pd-1683310177.htm",
		"", 1,
		"1-7", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/pomcola80.jpg",
		80, 80,
		"F7040", "Coca-Cola 1l POM",
		"", "",
		"8.2", "1.25",
		"2", 1,
		"Stück", "21",
		"", "pd2065993754.htm",
		"", 1,
		"5-10", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/pomfanta80.jpg",
		80, 80,
		"F7041", "Fanta 1l POM ",
		"", "",
		"6.78", "1.25",
		"2", 1,
		"Stück", "21",
		"", "pd353835992.htm",
		"", 1,
		"5-10", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/pomsprite80.jpg",
		80, 80,
		"F7042", "Sprite 1l POM",
		"", "",
		"6.78", "1.25",
		"2", 1,
		"Stück", "21",
		"", "pd-1864776250.htm",
		"", 1,
		"5-10", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/cleaner80.jpg",
		80, 80,
		"5070", "Bonamat Cleaner 1 Btl. a 25g/Reiniger",
		"", "",
		"1", "0.025",
		"3", 1,
		"Stück", "24",
		"", "pd171403573.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/renegite80.jpg",
		80, 80,
		"5064", "Bonamat Renegite 1 Btl. a 50g/Entkalker",
		"", "",
		"1.13", "0.05",
		"3", 1,
		"Stück", "24",
		"", "pd-1795316117.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/teestaender80.jpg",
		80, 80,
		"6092", "Heimbs Teeständer für 6x25 TBT",
		"", "",
		"51.11", "0.9",
		"3", 1,
		"Stück", "22",
		"", "pd1111069124.htm",
		"", 1,
		"5-5", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/pomcocalight80.jpg",
		80, 80,
		"F7043", "Coca-Cola light 1l POM",
		"", "",
		"8.2", "1.25",
		"2", 1,
		"Stück", "21",
		"", "pd1111504458.htm",
		"", 1,
		"5-10", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/glasskanne80.jpg",
		80, 80,
		"R4051", "Glaskanne 1,7l für Bonamat",
		"Mit Klappdeckerl", "",
		"13.9", "0.5",
		"3", 1,
		"Stück", "25",
		"", "pd172233773.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/airpotfurento80.jpg",
		80, 80,
		"R4052", "Isolierkanne 2,2l Stahlmantel",
		"Airport Furento mit Druckhebel", "",
		"70.21", "1.6",
		"3", 1,
		"Stück", "25",
		"", "pd1014966819.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/feder80.jpg",
		80, 80,
		"50865", "Feder für Filterpfanne",
		"", "",
		"3.57", "0.01",
		"3", 1,
		"Stück", "25",
		"", "pd-298366711.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/filterpfannerlx80.jpg",
		80, 80,
		"50863", "Filterpfanne RLX-Serie",
		"", "",
		"23.8", "0.35",
		"3", 1,
		"Stück", "25",
		"", "pd1684626015.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/achenbecher80.jpg",
		80, 80,
		"E1600", "Alu-Aschenbecher 10,3x10,3cm 10 Stk.",
		"", "",
		"1.19", "0.05",
		"3", 1,
		"Stück", "9",
		"", "pd1657090433.htm",
		"", 1,
		"1-5", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/jamaikazucker80.jpg",
		80, 80,
		"F5042", "Zuckersticks weiss 11cm &quot;Jamaika&quot; 1000 Stk.",
		"", "",
		"21.39", "3.1",
		"2", 1,
		"Stück", "19",
		"", "pd2069740094.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/jamaika100ml80.jpg",
		80, 80,
		"B1101", "Kaffeebecher Pappe 0,1l coffee to go Jamaika 50 Stk.",
		"", "",
		"2.19", "0.18",
		"3", 1,
		"Stück", "2",
		"", "pd1117109541.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Becher 180ml Bunzl 80.jpg",
		80, 107,
		"B1104", "Kaffeebecher Pappe 180ml 80 Stk.pro Stange",
		"", "",
		"3.56", "0.45",
		"3", 1,
		"Stück", "2",
		"", "pd210584581.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/tasse180ml80.jpg",
		80, 80,
		"B1120", "Kaffeetassee 180ml 60 Stk.",
		"mit Griff", "",
		"3.72", "0.55",
		"3", 1,
		"Stück", "2",
		"", "pd968110600.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/sektglastransp80.jpg",
		80, 80,
		"B1140", "Sektglas mit Fuß 50 Stk.",
		"", "",
		"14.1", "0.63",
		"3", 1,
		"Stück", "3",
		"", "pd1252129897.htm",
		"", 1,
		"1-1-2", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/schnapsglas80.jpg",
		90, 80,
		"B1141", "Schnapsglas 40 Stk.",
		"", "",
		"2.36", "0.15",
		"3", 1,
		"Stück", "3",
		"", "pd-2045461313.htm",
		"", 1,
		"1-1-2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/becherbraun80.jpg",
		80, 80,
		"B1151", "Thermobecher 180 ml braun 100 Stk.",
		"", "",
		"2.89", "0.425",
		"3", 1,
		"Stück", "2",
		"", "pd104214203.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/becherweiss80.jpg",
		80, 80,
		"B1161", "Trinkbecher 200ml weiß 100 Stk.",
		"", "",
		"2.12", "0.29",
		"3", 1,
		"Stück", "3",
		"", "pd1576198791.htm",
		"", 1,
		"1-1-2", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/bechertransparent300ml80.jpg",
		80, 80,
		"B1163", "Trinkbecher 300 ml transparent 100 Stk.",
		"", "",
		"4", "0.38",
		"3", 1,
		"Stück", "3",
		"", "pd911919117.htm",
		"", 1,
		"1-1-2", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/bechertransparent500ml80.jpg",
		80, 80,
		"B1166", "Trinkbecher 500ml transparent 65 Stk.",
		"", "",
		"3.74", "0.5",
		"3", 1,
		"Stück", "3",
		"", "pd1052121977.htm",
		"", 1,
		"1-1-2", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/trinkbecherhalter480.jpg",
		80, 80,
		"B1180", "Trinkbecherhalter Chinet 4`er",
		"", "",
		"56.62", "9",
		"3", 1,
		"Stück", "2",
		"", "pd1052387555.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/trinkbecherhalter280.jpg",
		80, 80,
		"B1181", "Trinkbecherhalter Chinet 2`er",
		"", "",
		"36.66", "6",
		"3", 1,
		"Stück", "2",
		"", "pd-187865655.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/deckel300ml400ml80.jpg",
		80, 80,
		"B1191", "Deckel zu Kaffeepappbecher 0,3l/0,4l 100 Stk.",
		"", "",
		"4.84", "0.3",
		"3", 1,
		"Stück", "2",
		"", "pd-611926763.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/deckel250ml80.jpg",
		80, 80,
		"B1197", "Deckel zu Kaffeepappbecher 0,25l 100 Stk.",
		"", "",
		"4.94", "0.3",
		"3", 1,
		"Stück", "2",
		"", "pd537993625.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/deckel200mls80.jpg",
		80, 80,
		"B1203", "Deckel zu Kaffeepappbecher 0,2l 100 Stk. schwarz",
		"", "",
		"5.41", "0.35",
		"3", 1,
		"Stück", "2",
		"", "pd-186282730.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/coffeetogo200mlbild80.jpg",
		80, 80,
		"B1250", "Kaffeebecher Pappe 0,2l coffee to go Jamaika 200ml",
		"", "",
		"3.89", "0.4",
		"3", 1,
		"Stück", "2",
		"", "pd-280989619.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/coffeetogo300mlbild80.jpg",
		80, 80,
		"B1251", "Kaffeebecher Pappe 0,3l coffee to go Jamaika 300ml",
		"", "",
		"5.15", "0.6",
		"3", 1,
		"Stück", "2",
		"", "pd-159425107.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/coffeetogo400mlbild80.jpg",
		80, 80,
		"B1252", "Kaffeebecher Pappe 0,4l coffee to go Jamaika 50 Stk.",
		"", "",
		"6.87", "0.75",
		"3", 1,
		"Stück", "2",
		"", "pd-1592044993.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/coffeetogo250mlbild80.jpg",
		80, 80,
		"B1253", "Kaffeebecher Pappe 0,25l coffee to go Jamaika 250ml",
		"", "",
		"4.74", "0.5",
		"3", 1,
		"Stück", "2",
		"", "pd414168115.htm",
		"", 1,
		"1-1-1", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/deckelstyro80.jpg",
		80, 80,
		"E1931", "Deckel für Suppenschüssel Poly 50 Stk.",
		"", "",
		"2.18", "0.15",
		"3", 1,
		"Stück", "8",
		"", "pd-408994334.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/deckelb380.jpg",
		80, 80,
		"E1905", "Deckel für Schale 500ml 100 Stk. B3",
		"", "",
		"10.29", "1.35",
		"3", 1,
		"Stück", "8",
		"", "pd-1351115040.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/deckelb280.jpg",
		80, 80,
		"E1907", "Deckel für Schale 350ml 100 Stk. B2",
		"", "",
		"7.66", "0.8",
		"3", 1,
		"Stück", "8",
		"", "pd1854635244.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/melitta20680.jpg",
		80, 80,
		"5018", "Filterpapier Melitta Pyramiede G206 200 Stk.",
		"", "",
		"47.54", "1.55",
		"3", 1,
		"Stück", "6",
		"", "pd1121328496.htm",
		"", 1,
		"1-7", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/bonamatb580.jpg",
		80, 80,
		"50271", "Rundfilterpapier B5 172mm 250 Stk.",
		"", "",
		"8.87", "0.35",
		"3", 1,
		"Stück", "6",
		"", "pd318505246.htm",
		"", 1,
		"1-7", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/melitta202s80.jpg",
		80, 80,
		"50400", "Filterpapier Melitta 202s 100 Stk.",
		"", "",
		"5.91", "0.35",
		"3", 1,
		"Stück", "6",
		"", "pd322143356.htm",
		"", 1,
		"1-7", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Pflaumentraum Tee_0001_80.jpg",
		80, 123,
		"F6027", "Pflaumentraum 45 Beutel",
		"", "",
		"14.87", "0.26",
		"2", 1,
		"Stück", "22",
		"", "pd743144398.htm",
		"", 1,
		"5-5", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/gloria80.jpg",
		80, 80,
		"F5014-1", "Nestlé Gloria 500g spezielle Magermilchmischung",
		"", "",
		"6.52", "0.5",
		"2", 1,
		"Stück", "20",
		"", "pd1351939375.htm",
		"", 1,
		"5-11", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/glucksklee80.jpg",
		80, 80,
		"F5013-1", "Nestlé Glücksklee Coffee-mate 1000g",
		"", "",
		"6.29", "1",
		"2", 1,
		"Stück", "20",
		"", "pd-1170146542.htm",
		"", 1,
		"5-11", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/frappev80.jpg",
		80, 80,
		"F2016-1", "Nescafé Vanilloccino 1000g",
		"", "",
		"10.3", "1",
		"2", 1,
		"Stück", "20",
		"", "pd562374812.htm",
		"", 1,
		"5-11", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/nesquik80.jpg",
		80, 80,
		"F2036-1", "Nestlé Nesquik 1000g",
		"", "",
		"7.65", "1.1",
		"2", 1,
		"Stück", "20",
		"", "pd391066467.htm",
		"", 1,
		"5-11", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/santarica80.jpg",
		80, 80,
		"F3064-1", "Nestlé Santa Rica 250g",
		"", "",
		"16.88", "0.25",
		"2", 1,
		"Stück", "20",
		"", "pd1209337558.htm",
		"", 1,
		"5-11", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/finestasses80.jpg",
		80, 80,
		"F3063-1", "Nestlé Fines Tasses 250g",
		"", "",
		"19.02", "0.25",
		"2", 1,
		"Stück", "20",
		"", "pd-1777220891.htm",
		"", 1,
		"5-11", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/heimbsexclusiv80.jpg",
		80, 80,
		"F3032", "Heimbs Kaffee EXCLUSIV 250g",
		"", "",
		"6.53", "0.25",
		"2", 1,
		"Stück", "16",
		"", "pd-744826632.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/kannestahl80.jpg",
		80, 80,
		"R4055-1", "Kanne aus rostfreiem Stahl ",
		"", "",
		"25.52", "2",
		"3", 1,
		"Stück", "25",
		"Grösse;1,7 Liter@", "pd1141383002.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/masalachai80.jpg",
		80, 80,
		"F6023", "Masala Chai 30 Beutel Indischer",
		"", "",
		"14.87", "0.2",
		"2", 1,
		"Stück", "23",
		"", "pd408004977.htm",
		"", 1,
		"60", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Karamelgebäck 85.jpg",
		85, 40,
		"F5019", "Heimbs Caramelgebäck 300 Stk. pro Katon",
		"", "",
		"15.62", "5",
		"2", 1,
		"Stück", "19",
		"", "pd1275594263.htm",
		"", 1,
		"5-7", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/airpotglasinnen80.jpg",
		80, 80,
		"R4056-1", "Airpot Furento 2,2 Liter",
		"", "",
		"73.08", "2",
		"3", 1,
		"Stück", "25",
		"Farbe;Blau@", "pd-2017097003.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/airportstation80.jpg",
		80, 80,
		"R4057", "Airpotstation",
		"", "",
		"81.56", "2",
		"3", 1,
		"Stück", "25",
		"", "pd962864778.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/isolierkanne80.jpg",
		80, 80,
		"R4058", "Isolierkanne 1,9l",
		"", "",
		"54.74", "2",
		"3", 1,
		"Stück", "25",
		"", "pd438065096.htm",
		"", 1,
		"4-1", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/teller180mm80.jpg",
		80, 80,
		"E1951", "Dessertteller 180mm 50 Stück",
		"", "",
		"2.2", "0.55",
		"3", 1,
		"Stück", "8",
		"", "pd1146826460.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/bechertransparent300ml80.jpg",
		80, 80,
		"B1160", "Trinkbecher 0,2l transparent 100 Stk.",
		"", "",
		"2", "0.35",
		"3", 1,
		"Stück", "3",
		"", "pd1149061467.htm",
		"", 1,
		"1-1-2", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/partygabel80.jpg",
		80, 80,
		"E1426", "Kuchen/Snackgabeln m. Messer 250 Stk.",
		"", "",
		"4.39", "0.5",
		"3", 1,
		"Stück", "4",
		"", "pd1154091612.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/alu20x11x580.jpg",
		80, 80,
		"E1641", "Aluform 20x11x5 100 Stück und Deckel",
		"", "",
		"5.18", "1",
		"1", 1,
		"Stück", "8",
		"", "pd-86673.htm",
		"", 1,
		"1-3", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Rednosed Reindeer Tee_0001_80.jpg",
		80, 123,
		"F6029", "Rednosed Reindeer 45 Beutel",
		"", "",
		"14.87", "0.26",
		"2", 1,
		"Stück", "22",
		"", "pd1204189862.htm",
		"", 1,
		"5-5", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/partygabel80.jpg",
		80, 80,
		"E1428", "Kuchen/Snackgabeln m. Messer 50 Stk.",
		"", "",
		"1", "0.1",
		"3", 1,
		"Stück", "4",
		"", "pd1390393668.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/HolzRühstäbchen175mm 80.jpg",
		99, 80,
		"E1417-1", "Rührstäbchen 175 mm Holz 1000 Stk.",
		"", "",
		"5.89", "1.25",
		"3", 1,
		"Stück", "4",
		"", "pd1234265316.htm",
		"", 1,
		"1-2", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Cola Glas-80.jpg",
		80, 125,
		"5033", "Coca Cola Glas 0,4 l mit Aufschrift",
		"", "",
		"2.8", "0.5",
		"3", 1,
		"Stück", "18",
		"", "pd1572508114.htm",
		"", 1,
		"5-9", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Cola glas bunt-80.jpg",
		80, 157,
		"5029", "Coca Cola Glas 0,5 l mit fabiger Aufschrift",
		"", "",
		"3.03", "0.6",
		"1", 1,
		"Stück", "18",
		"", "pd1116001360.htm",
		"", 1,
		"5-9", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Chili Choco 80.jpg",
		80, 128,
		"F6020", "Chili Choco Specials Tee 45 Beutel",
		"", "",
		"14.87", "0.26",
		"2", 1,
		"Stück", "23",
		"", "pd1260356085.htm",
		"", 1,
		"60", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Joy & Energy 80.jpg",
		80, 125,
		"F6030", "Yoy &amp; Enegy (Bio) 45 Beutel pro Pack",
		"", "",
		"18.14", "0.26",
		"2", 1,
		"Stück", "23",
		"", "pd2000370494.htm",
		"", 1,
		"60", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/Kaffee Comes 80.jpg",
		80, 158,
		"F3065", "Comcafe Premium Gold 250 g",
		"", "",
		"12.49", "0.28",
		"2", 1,
		"Stück", "16",
		"", "pd1273156188.htm",
		"", 1,
		"5-1", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/HeimbsZuckerstiks 85.jpg",
		85, 92,
		"F5039", "Heimbs Zuckerstick 1000 Stk. x 4 g",
		"", "",
		"11.7", "4.5",
		"2", 1,
		"Stück", "19",
		"", "pd1274300596.htm",
		"", 1,
		"5-7", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};