	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="98" height="48" alt="Note item" 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>Before:&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>Now only:&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 += "for further information, please call (Price on demand)";
			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/5-22410_2.jpg",
		100, 88,
		"22 420", "wishab Sponges",
		"eraser sponge", "",
		"5.75", "0",
		"1", 1,
		"Stück", "6",
		"grades;hard@", "pd237555856.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/5-22410_2.jpg",
		100, 88,
		"22 470", "wishab-Pulver",
		"feines Radierpulver, weiß", "",
		"18.65", "0",
		"1", 1,
		"Stück", "6",
		"Stärke;für Papier@", "pd-696372249.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/76000_2.jpg",
		100, 30,
		"76 000", "da Vinci Artist dust brush",
		"horsehair", "",
		"4.1", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1976563821.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/75100_2.jpg",
		100, 28,
		"75 100", "da Vinci Artist Dust Brush",
		"goathair", "",
		"4.5", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1224775978.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/5-76500_2.jpg",
		100, 46,
		"76 500", "Dust Brush",
		"", "",
		"8.5", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1463199843.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/5-76600_2.jpg",
		100, 44,
		"76 600", "Book Fold Brush",
		"", "",
		"14.5", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-643527832.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/14710_2.jpg",
		100, 124,
		"14 710", "watering basin of white PVC",
		"", "",
		"598", "0",
		"1", 1,
		"Stück", "30",
		"inner dimensions;700 x 1000mm@", "pd-1016874446.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Airone_2.jpg",
		100, 100,
		"AIRONE", "AIRONE suction equipment",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-802930094.htm",
		"", 1,
		"003", "0",
		 1)
	
		Entry[8] = new Element(
		8, "assets/thumb/41100_A2.jpg",
		100, 70,
		"41 100", "full sight safety goggles",
		"", "",
		"6.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1142082430.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/41100_A2.jpg",
		100, 70,
		"49 503", "disposable latex gloves",
		"", "",
		"13.5", "0",
		"1", 1,
		"Stück", "9",
		"size;L@", "pd853252215.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[10] = new Element(
		10, "",
		0, 0,
		"14 718", "Base frame for watering basin",
		"", "",
		"549", "0",
		"1", 1,
		"Stück", "30",
		"inner dimensions;700 x 1000mm@", "pd1356660412.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/16110_2.jpg",
		100, 56,
		"16 110", "Photographic trays of white PVC",
		"", "",
		"34", "0",
		"1", 1,
		"Stück", "30",
		"inner dimensions;260 x 350 x 70@", "pd-577190687.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/13780_2.jpg",
		100, 86,
		"13 780", "watering sieves",
		"", "",
		"108", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-939736690.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/21200_2.jpg",
		100, 101,
		"21 200", "Horiba Twin pH meter",
		"", "",
		"359", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1020155236.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[14] = new Element(
		14, "",
		0, 0,
		"21 230", "Horiba spare probe ",
		"", "",
		"179", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1979505301.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/5-21510f_2.jpg",
		100, 56,
		"21 014", "pH indicator strips",
		"universal indicator", "",
		"18.5", "0",
		"1", 1,
		"Stück", "20",
		"measuring range;0 - 14ph@", "pd738402793.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/5-49225_2.jpg",
		100, 125,
		"49 225", "Pressure Spray Bottle",
		"", "",
		"24.5", "0",
		"1", 1,
		"Stück", "25",
		"", "pd977554422.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[17] = new Element(
		17, "",
		0, 0,
		"21 204", "standard solution",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "20",
		"pH value;ph 4@", "pd-1208588945.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/20200_1.jpg",
		100, 150,
		"20 200", "shoe no. 0",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1021028854.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/20201_1.jpg",
		100, 176,
		"20 201", "shoe no. 1",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1020257343.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/20202_1..jpg",
		100, 211,
		"20 202", "shoe no. 2",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1940145900.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/20203_1.jpg",
		100, 158,
		"20 203", "shoe no. 3",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-177766267.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/20204_1.jpg",
		100, 173,
		"20 204", "shoe no. 4",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1760105826.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/20205_1.jpg",
		100, 270,
		"20 205", "shoe no. 5",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-928068037.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/20206_1.jpg",
		100, 254,
		"20 206", "shoe no. 6",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-71089568.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/20207_1.jpg",
		100, 217,
		"20 207", "shoe no. 7",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1727326945.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/20208_1.jpg",
		100, 232,
		"20 208", "shoe no. 8",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd928214926.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/20360_2.jpg",
		100, 96,
		"20 360", "WAXLECTRIC I",
		"", "",
		"558", "0",
		"1", 1,
		"Stück", "24",
		"", "pd141842540.htm",
		"", 1,
		"034", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/82100_2.jpg",
		100, 25,
		"82 100", "Teflon bone folder, large",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1021034406.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/82130_2.jpg",
		100, 22,
		"82 130", "Teflon bone folder, small",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1280300079.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/82111_2.jpg",
		100, 17,
		"82 111", "Teflon bone folder, square-profiled",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2090170812.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/82233_2.jpg",
		100, 24,
		"82 233", "Teflon spatula, round tongue",
		"", "",
		"17.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd190493173.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/82250_2.jpg",
		100, 19,
		"82 250", "Teflon spatula, pointed tongue",
		"", "",
		"17.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-283941358.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/82260_2.jpg",
		100, 20,
		"82 260", "Teflon spatula, oblique edge",
		"", "",
		"17.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd513613099.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/82270_2.jpg",
		100, 24,
		"82 270", "Teflon spatula, knife-shaped",
		"", "",
		"17.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1033028240.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/81150_A2.jpg",
		100, 32,
		"81 150", "double spatula",
		"", "",
		"18.5", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2120641711.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/81150_A2.jpg",
		100, 32,
		"81 260", "stainless steel bone folder",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1046893762.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/81150_A2.jpg",
		100, 32,
		"81 370", "Teflon covered double spatula",
		"", "",
		"21.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd828165607.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/12780_2.jpg",
		100, 75,
		"12 780", "HENG Brush",
		"", "",
		"24", "0",
		"1", 1,
		"Stück", "23",
		"", "pd1024904607.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/12790_2.jpg",
		100, 75,
		"12 790", "ZE Brush",
		"150 x 225mm", "",
		"22", "0",
		"1", 1,
		"Stück", "23",
		"size;large@", "pd1335363421.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/29008_2.jpg",
		100, 81,
		"29 008", "Book Supports",
		"oktav", "",
		"12.3", "0",
		"1", 1,
		"Stück", "3,21",
		"sizes;160 x 200mm@", "pd1170455619.htm",
		"", 1,
		"032,0000", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/46140_2.jpg",
		100, 75,
		"46 140", "lead snakes",
		"à 180g", "",
		"12.5", "0",
		"1", 1,
		"Stück", "3,21,32",
		"package size;1 pair@length;40cm@", "pd673104800.htm",
		"", 1,
		"032,0000,031", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/21325_2.jpg",
		100, 82,
		"21 325", "Compressor EuroTech 30A",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "25",
		"", "pd542404012.htm",
		"", 1,
		"011", "0",
		 3)
	
		Entry[43] = new Element(
		43, "assets/thumb/14100_2.jpg",
		100, 136,
		"14 100", "All-Steel Drying Rack",
		"", "",
		"1427", "0",
		"1", 1,
		"Stück", "7",
		"Drying area;600 x 900mm@", "pd373430276.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[44] = new Element(
		44, "",
		0, 0,
		"13 265", "SHAMOJI",
		"", "",
		"8.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1024921106.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/13124_2.jpg",
		100, 103,
		"13 124", "paste strainer",
		"", "",
		"159", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1663128944.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"13 319", "bamboo spatula",
		"", "",
		"6.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1952537425.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/13327_2.jpg",
		100, 74,
		"13 327", "wooden paste bowls",
		"2 piece set", "",
		"378", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-276179481.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/12117_2.jpg",
		100, 90,
		"12 117", "TSUKEMAWASHI - BAKE",
		"", "",
		"169", "0",
		"1", 1,
		"Stück", "11",
		"", "pd673719196.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/12317_2.jpg",
		100, 86,
		"12 317", "MIZU - BAKE",
		"", "",
		"139", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-99849619.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/12217_2.jpg",
		100, 80,
		"12 217", "NAZE - BAKE",
		"", "",
		"128", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1443668778.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/12430f_2.jpg",
		100, 258,
		"12 442", "EBAKE",
		"", "",
		"10.9", "0",
		"1", 1,
		"Stück", "11",
		"widths;42mm@", "pd183865811.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/12606f_2.jpg",
		100, 192,
		"12 610", "MARU - BAKE",
		"", "",
		"14.5", "0",
		"1", 1,
		"Stück", "23",
		"width;Nr. 10 (30mm)@", "pd713528740.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/25300_2.jpg",
		100, 86,
		"25 300", "Gibbet Sewing Frame",
		"", "",
		"419", "0",
		"1", 1,
		"Stück", "22",
		"", "pd1282382366.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"39 195", "Sympatex Non-Woven Laminate",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "31",
		"thickness;thin@", "pd1025027955.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/50004_2.jpg",
		100, 78,
		"50 004", "Beechen Boards",
		"width 250mm", "",
		"57.9", "0",
		"1", 1,
		"Stück", "1",
		"board thickness;04mm@", "pd-1142442548.htm",
		"", 1,
		"088", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/55006f_2.jpg",
		100, 74,
		"55 006", "brass sheet",
		"", "",
		"9.7", "0",
		"1", 1,
		"Stück", "4",
		"sheet thickness;0,6mm@", "pd-148202744.htm",
		"", 1,
		"027", "0",
		 0)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"18 115", "Floor Unit",
		"", "",
		"312", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd435794486.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[58] = new Element(
		58, "",
		0, 0,
		"18 114", "Depth Stop",
		"", "",
		"175", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd1210492357.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/18113_2.jpg",
		100, 76,
		"18 113", "Trimming Plane",
		"", "",
		"330", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd-1524356960.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[60] = new Element(
		60, "",
		0, 0,
		"18 112", "Supplementary Thread Cutting Jaws",
		"", "",
		"297", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd2142751543.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/18111_2.jpg",
		100, 76,
		"18 111", "Supplementary Jaws with Snapping Lock",
		"", "",
		"316", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd-1954481990.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/18110_2.jpg",
		100, 165,
		"18 110", "Schwab Multifunctional Bookbinding Press",
		"", "",
		"1910", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd-450152935.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/60230_2.jpg",
		100, 192,
		"60 230", "reflected light microscope",
		"", "",
		"66.5", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-462227354.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/60408_2.jpg",
		100, 106,
		"60 408", "linen tester",
		"", "",
		"12.9", "0",
		"1", 1,
		"Stück", "15",
		"", "pd249646575.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/61110_2.jpg",
		100, 124,
		"61 110", "quick acting thickness gauge",
		"", "",
		"74", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1025005492.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/61200_2.jpg",
		100, 128,
		"61 200", "paper thickness gauge",
		"", "",
		"279", "0",
		"1", 1,
		"Stück", "15",
		"", "pd85140133.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[67] = new Element(
		67, "",
		0, 0,
		"60 226", "Vario maxi stand magnifier",
		"stand magnifier with illumination", "",
		"452", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1170035970.htm",
		"", 1,
		"021", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/60700_2.jpg",
		100, 98,
		"60 700", "cold light source",
		"", "",
		"489", "0",
		"1", 1,
		"Stück", "14",
		"", "pd321371483.htm",
		"", 1,
		"021", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/34305f_2.jpg",
		100, 42,
		"34 309", "Packing String",
		"", "",
		"7.9", "0",
		"1", 1,
		"Stück", "26",
		"diameter;0,9mm@", "pd-431538711.htm",
		"", 1,
		"025", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/34118f_2.jpg",
		100, 36,
		"34 118", "Stitching Thread",
		"", "",
		"9.7", "0",
		"1", 1,
		"Stück", "26",
		"thickness;18/3@", "pd1085167212.htm",
		"", 1,
		"025", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/25100_2.jpg",
		100, 76,
		"25 100", "Lying Press",
		"", "",
		"210", "0",
		"1", 1,
		"Stück", "22",
		"", "pd1025012772.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/25110_2.jpg",
		100, 65,
		"25 110", "Press Lever",
		"", "",
		"48", "0",
		"1", 1,
		"Stück", "22",
		"", "pd178569813.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/25210_2.jpg",
		100, 27,
		"25 210", "Bind-Off Ledges",
		"", "",
		"83.5", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-1324669813.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/25200_2.jpg",
		100, 67,
		"25 200", "Finishing Press",
		"", "",
		"190", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-808949327.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/71510_2.jpg",
		100, 34,
		"71 510", "retouching brush",
		"size 0", "",
		"4.8", "0",
		"1", 1,
		"Stück", "5",
		"size;0@", "pd347813771.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/12914_2.jpg",
		100, 68,
		"12 914", "Calligraphic Brushes",
		"", "",
		"85", "0",
		"1", 1,
		"Stück", "23",
		"", "pd937210973.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[77] = new Element(
		77, "",
		0, 0,
		"33 549", "Fastusol paper dye",
		"yellow 49L", "",
		"19.4", "0",
		"1", 1,
		"Stück", "18",
		"", "pd660607795.htm",
		"", 1,
		"0007", "0",
		 0)
	
		Entry[78] = new Element(
		78, "",
		0, 0,
		"33 551", "Fastusol paper dye",
		"orange 51l", "",
		"23.5", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1256403448.htm",
		"", 1,
		"0007", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/5-31500.jpg",
		100, 68,
		"31 500", "paper fibers",
		"", "",
		"195", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1034011571.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/30110_2.jpg",
		100, 75,
		"30 110", "paper fibers",
		"white 100g", "",
		"9.5", "0",
		"1", 1,
		"Stück", "8",
		"quantity;100g@", "pd1446688949.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/30210_2.jpg",
		100, 75,
		"30 210", "paper fibers",
		"light colored 100g", "",
		"14.3", "0",
		"1", 1,
		"Stück", "8",
		"quantity;100g@", "pd-840763312.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/30310_2.jpg",
		100, 75,
		"30 310", "paper fibers",
		"medium colored I 100g", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"quantity;100g@", "pd-1306063667.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/30610_2.jpg",
		100, 75,
		"30 610", "paper fibers",
		"medium colored II 100g", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"quantity;100g@", "pd900000584.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/30510_2.jpg",
		100, 75,
		"30 510", "paper fibers",
		"natural color 100g", "",
		"22", "0",
		"1", 1,
		"Stück", "8",
		"quantity;100g@", "pd-610902529.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/30410_2.jpg",
		100, 75,
		"30 410", "paper fibers",
		"dark colored 100g", "",
		"22", "0",
		"1", 1,
		"Stück", "8",
		"quantity;100g@", "pd1831098914.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/31115_2.jpg",
		100, 75,
		"31 115", "tinting fibers",
		"class light - yellow", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"", "pd920544251.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/31125_2.jpg",
		100, 75,
		"31 125", "tinting fibers",
		"class light - brown", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-894757600.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/31135_2.jpg",
		100, 75,
		"31 135", "tinting fibers",
		"class light - black", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-49449311.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/31415_2.jpg",
		100, 75,
		"31 415", "tinting fibers",
		"class dark - yellow", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-684556210.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/31425_2.jpg",
		100, 75,
		"31 425", "tinting fibers",
		"class dark - brown", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1084662199.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/31435_2.jpg",
		100, 75,
		"31 435", "tinting fibers",
		"class dark - black", "",
		"19", "0",
		"1", 1,
		"Stück", "8",
		"", "pd760534828.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/33503_2.jpg",
		100, 52,
		"33 503", "Fastusol paper dyes",
		"complete set of 3 colours", "",
		"59.9", "0",
		"1", 1,
		"Stück", "18",
		"", "pd540760765.htm",
		"", 1,
		"0007", "0",
		 0)
	
		Entry[93] = new Element(
		93, "",
		0, 0,
		"33 518", "Fastusol paper dye",
		"black 18L", "",
		"23.8", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1137393350.htm",
		"", 1,
		"0007", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/5-11110_2.jpg",
		100, 92,
		"11 110", "Mini Vacuum Table",
		"NSD 110", "",
		"1389", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1039540849.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/5-11210_2.jpg",
		100, 59,
		"11 210", "Vacuum Table NSD 111",
		"Outer dimensions: 1320 x 1000 x 845mm", "",
		"1999", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-284921337.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/5-11210_2.jpg",
		100, 59,
		"11 250", "Vacuum Table NSD 115",
		"Outer dimensions: 1500 x 1100 x 845mm", "",
		"2699", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1469375373.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/5-11300_2.jpg",
		100, 61,
		"11 300", "Vacuum Table Type NSD 1101",
		"Standard sizes", "",
		"4195", "0",
		"1", 1,
		"Stück", "29",
		"Outer dimensions;1000 x 2000mm@version;4 legs@", "pd1395970784.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/5-12110_2.jpg",
		100, 72,
		"12 101", "Illuminated vacuum desk",
		"", "",
		"1199", "0",
		"1", 1,
		"Stück", "29",
		"Outer dimensions;530 x 650 x 120mm@", "pd394817786.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/38510_2.jpg",
		100, 75,
		"38 510", "Polyester Mounting Tape",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "21",
		"wide;10mm@", "pd-1216289949.htm",
		"", 1,
		"0000", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/5-49807_2.jpg",
		100, 67,
		"49 807", "cotton gloves",
		"", "",
		"1.95", "0",
		"1", 1,
		"Stück", "21,9",
		"package size;1 pair@glove size;07@", "pd463112287.htm",
		"", 1,
		"0000,003", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/5-49907_2.jpg",
		100, 70,
		"49 907", "high-tech gloves",
		"", "",
		"7.9", "0",
		"1", 1,
		"Stück", "21,9",
		"package size;1 pair@glove size;07@", "pd-120317923.htm",
		"", 1,
		"0000,003", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/5-22301_2.jpg",
		100, 64,
		"22 301", "Wallmaster",
		"natural rubber sponge", "",
		"6.95", "0",
		"1", 1,
		"Stück", "6",
		"packing size;1 piece@", "pd-1465534416.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/5-22600_2.jpg",
		100, 62,
		"22 600", "Shield for Erasing Work",
		"plexiglass", "",
		"89", "0",
		"1", 1,
		"Stück", "6",
		"", "pd55069500.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/41100_A2.jpg",
		100, 70,
		"48 110", "disposable respiratory mask",
		"coarse dust mask", "",
		"4.8", "0",
		"1", 1,
		"Stück", "9",
		"package size;10 masks@", "pd-1822334978.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/41100_A2.jpg",
		100, 70,
		"48 210", "disposable respiratory mask",
		"fine dust mask", "",
		"17", "0",
		"1", 1,
		"Stück", "9",
		"package size;10 masks@", "pd1801354218.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/41100_A2.jpg",
		100, 70,
		"49 309", "nitril rubber gloves",
		"", "",
		"4.5", "0",
		"1", 1,
		"Stück", "9",
		"package size;3 pairs@glove size;09@", "pd817943040.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[107] = new Element(
		107, "",
		0, 0,
		"54 490", "Suction Tube",
		"Diameter: 36mm", "",
		"10.7", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-355518486.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/65146_2.jpg",
		100, 75,
		"65 146", "Dusting Brush",
		"", "",
		"6.3", "0",
		"1", 1,
		"Stück", "28",
		"", "pd287083238.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/66086_2.jpg",
		100, 75,
		"66 086", "Brush Nozzle",
		"", "",
		"8.9", "0",
		"1", 1,
		"Stück", "28",
		"", "pd1529417763.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[110] = new Element(
		110, "",
		0, 0,
		"68 046", "Combination Nozzle",
		"", "",
		"15.2", "0",
		"1", 1,
		"Stück", "28",
		"", "pd1649348207.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[111] = new Element(
		111, "",
		0, 0,
		"14 715", "Underframe for watering basin",
		"", "",
		"429", "0",
		"1", 1,
		"Stück", "30",
		"inner dimensions;700 x 1000mm@", "pd1025472778.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[112] = new Element(
		112, "",
		0, 0,
		"37 160", "wax paper",
		"100m roll", "",
		"44", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1040495298.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[113] = new Element(
		113, "",
		0, 0,
		"37 500", "silicone paper",
		"50m roll", "",
		"112", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-571367744.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/5-74115_2.jpg",
		100, 68,
		"74 115", "Flat Glue Brushes",
		"", "",
		"1", "0",
		"1", 1,
		"Stück", "5",
		"width;15mm@", "pd-651449489.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/5-74306_2.jpg",
		100, 71,
		"74 310", "Round Glue Brushes",
		"Diameter 17mm", "",
		"4.45", "0",
		"1", 1,
		"Stück", "5",
		"size;10@", "pd354059114.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/5-71160_2.jpg",
		100, 82,
		"71 160", "universal brushes",
		"daVinci series 116", "",
		"0.85", "0",
		"1", 1,
		"Stück", "5",
		"size;10@", "pd537065390.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/5-72471_2.jpg",
		100, 81,
		"72 471", "Broad Bristle Brushes",
		"da Vinci Series 2470", "",
		"2.8", "0",
		"1", 1,
		"Stück", "5",
		"width;20mm@", "pd792209927.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[118] = new Element(
		118, "",
		0, 0,
		"30 449", "Filter Bag for ATTIX 360-2M",
		"5 pieces", "",
		"28.5", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-1993004052.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/30857_2.jpg",
		100, 78,
		"30 857", "ALTO ATTIX 360-2H",
		"safety vacuum cleaner, dust class H", "",
		"859", "0",
		"1", 1,
		"Stück", "28,9",
		"", "pd-1945961825.htm",
		"", 1,
		"013,003", "0",
		 0)
	
		Entry[120] = new Element(
		120, "",
		0, 0,
		"30 040", "Safety Filter Bag for ALTO ATTIX 360-2H",
		"5 pieces", "",
		"113.1", "0",
		"1", 1,
		"Stück", "28",
		"", "pd1046463308.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[121] = new Element(
		121, "",
		0, 0,
		"30 658", "Micro Filter Element for ALTO ATTIX 360-2H",
		"", "",
		"131", "0",
		"1", 1,
		"Stück", "28",
		"", "pd1292241498.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[122] = new Element(
		122, "",
		0, 0,
		"39 736", "Scynel Sieve Cloth 300µm",
		"5m cutting", "",
		"127", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1093363256.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[123] = new Element(
		123, "",
		0, 0,
		"18 119", "Spare Blade",
		"", "",
		"32", "0",
		"1", 1,
		"Stück", "22",
		"Type;I 500mm@", "pd-1567086383.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/30857_2.jpg",
		100, 78,
		"30 416", "ALTO ATTIX 360-2M",
		"safety vacuum cleaner, dust class M", "",
		"599", "0",
		"1", 1,
		"Stück", "9,28",
		"", "pd-316599084.htm",
		"", 1,
		"003,013", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/5-82500_2.jpg",
		100, 58,
		"82 500", "Leather Paring Stone",
		"", "",
		"95", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-2107100389.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[126] = new Element(
		126, "",
		0, 0,
		"42 501", "magnesium hydroxide carbonate",
		"", "",
		"20.8", "0",
		"1", 1,
		"Stück", "20",
		"amount;1kg@", "pd1466674703.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/5-23075_2.jpg",
		100, 74,
		"23 075", "electrical hot glue pot",
		"", "",
		"141.5", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2243747.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[128] = new Element(
		128, "",
		0, 0,
		"35 040", "Japanese paper of Paper Nao",
		"25g/m², K-36", "",
		"40.25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1691968105.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[129] = new Element(
		129, "",
		0, 0,
		"35 050", "Japanese paper of Paper Nao",
		"19g/m², K-37", "",
		"38.5", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-382718310.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[130] = new Element(
		130, "",
		0, 0,
		"35 060", "Japanese paper of Paper Nao",
		"48g/m², K-32", "",
		"99.25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd641410425.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[131] = new Element(
		131, "",
		0, 0,
		"35 090", "Japanese paper of Paper Nao",
		"37g/m², M-17", "",
		"72.5", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1470521747.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[132] = new Element(
		132, "",
		0, 0,
		"35 300", "Japanese paper of Paper Nao",
		"21g/m², G-34, 5 sheets", "",
		"35.5", "0",
		"1", 1,
		"Stück", "17",
		"", "pd2106403526.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[133] = new Element(
		133, "",
		0, 0,
		"35 601", "Japanese paper roll",
		"RK-0, 5g/m²", "",
		"486", "0",
		"1", 1,
		"Stück", "17",
		"widths;100cm@", "pd1763872866.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[134] = new Element(
		134, "",
		0, 0,
		"35 833", "Japanese paper roll",
		"RK-00, 3,7g/m²", "",
		"165", "0",
		"1", 1,
		"Stück", "17",
		"roll height;33cm@", "pd200052457.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[135] = new Element(
		135, "",
		0, 0,
		"35 902", "Berlin (Gossauer) tissue",
		"10 sheets DIN A3", "",
		"155", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1880815374.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/5-20300_2.jpg",
		100, 93,
		"20 300", "hot iron RTC 2",
		"", "",
		"299", "0",
		"1", 1,
		"Stück", "19,10",
		"", "pd640781956.htm",
		"", 1,
		"022,035", "0",
		 0)
	
		Entry[137] = new Element(
		137, "",
		0, 0,
		"20 310", "replacement handle for RTC 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19,10",
		"", "pd1298411511.htm",
		"", 1,
		"022,035", "0",
		 0)
	
		Entry[138] = new Element(
		138, "",
		0, 0,
		"37 330", "VILEDON non-woven polyester",
		"30g/m², 50m roll", "",
		"106", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1120335753.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/716xx.jpg.JPG",
		100, 36,
		"71 602", "FORTE SYNTHETICS",
		"Synthetic Brush, 3mm width", "",
		"2.2", "0",
		"1", 1,
		"Stück", "5",
		"size;2@", "pd-1804500690.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[140] = new Element(
		140, "",
		0, 0,
		"37 522", "silicone paper",
		"50m roll", "",
		"92", "0",
		"1", 1,
		"Stück", "17",
		"", "pd720282350.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[141] = new Element(
		141, "",
		0, 0,
		"37 424", "filter cardboard",
		"50m roll", "",
		"109.5", "0",
		"1", 1,
		"Stück", "17",
		"", "pd745360858.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[142] = new Element(
		142, "",
		0, 0,
		"37 431", "filter cardboard",
		"50m roll", "",
		"183", "0",
		"1", 1,
		"Stück", "17",
		"", "pd730664856.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[143] = new Element(
		143, "",
		0, 0,
		"38 120", "Latex",
		"", "",
		"33.9", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1280827270.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[144] = new Element(
		144, "",
		0, 0,
		"38 903", "Rubber Sheeting",
		"10m roll", "",
		"89", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-1121507036.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[145] = new Element(
		145, "",
		0, 0,
		"38 500", "Mylar D Polyester Film",
		"50µ strong", "",
		"142", "0",
		"1", 1,
		"Stück", "31",
		"", "pd766526450.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[146] = new Element(
		146, "",
		0, 0,
		"38 551", "Polyester Film",
		"15 µm thick", "",
		"79", "0",
		"1", 1,
		"Stück", "31",
		"", "pd2090226544.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[147] = new Element(
		147, "",
		0, 0,
		"39 710", "Scrynel Sieve Cloth",
		"", "",
		"60.3", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-1793910148.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[148] = new Element(
		148, "",
		0, 0,
		"39 730", "Scrynel Sieve Cloth",
		"5m cutting", "",
		"114.9", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1313862922.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[149] = new Element(
		149, "",
		0, 0,
		"39 700", "Scrynel",
		"5m cuttings", "",
		"172.5", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1322699336.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[150] = new Element(
		150, "",
		0, 0,
		"37 830", "Parafil RT30",
		"100m roll", "",
		"79.5", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1040501444.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[151] = new Element(
		151, "",
		0, 0,
		"37 850", "Parafil RT50",
		"100m roll", "",
		"136", "0",
		"1", 1,
		"Stück", "31",
		"", "pd439959186.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[152] = new Element(
		152, "",
		0, 0,
		"37 870", "Parafil RT70",
		"100m roll", "",
		"174", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-1409396976.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[153] = new Element(
		153, "",
		0, 0,
		"37 265", "Hollytex",
		"25 m roll", "",
		"188", "0",
		"1", 1,
		"Stück", "31",
		"", "pd154079260.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[154] = new Element(
		154, "",
		0, 0,
		"37 990", "Capillary Matting",
		"5m cutting", "",
		"86", "0",
		"1", 1,
		"Stück", "31",
		"", "pd11164136.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[155] = new Element(
		155, "",
		0, 0,
		"36 112", "maco batiste",
		"5m cutting", "",
		"43", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1047117994.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[156] = new Element(
		156, "",
		0, 0,
		"36 296", "down batiste",
		"5m cuttings", "",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-631243032.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[157] = new Element(
		157, "",
		0, 0,
		"36 315", "untreated cotton, 155g/m²",
		"5m cutting", "",
		"21.5", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-725115050.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[158] = new Element(
		158, "",
		0, 0,
		"36 319", "untreated cotton, 190g/m²",
		"5m cutting", "",
		"29.1", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1546792308.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[159] = new Element(
		159, "",
		0, 0,
		"36 524", "molleton, 240g/m²",
		"5m cutting", "",
		"26.6", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1230434542.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[160] = new Element(
		160, "",
		0, 0,
		"36 531", "molleton, 310g/m²",
		"5m cutting", "",
		"49.9", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1222457548.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[161] = new Element(
		161, "",
		0, 0,
		"36 700", "textile strap, 15m",
		"100m roll", "",
		"19.9", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-697926694.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[162] = new Element(
		162, "",
		0, 0,
		"36 607", "wet felt, 3mm thick",
		"600 x 700mm", "",
		"35.3", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1423839848.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[163] = new Element(
		163, "",
		0, 0,
		"43 001", "Bastamol",
		"- Only while stocks last!", "",
		"24.9", "0",
		"1", 1,
		"Stück", "13",
		"quantity;1kg@", "pd-1250564240.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/5-42400f_2.jpg",
		100, 86,
		"42 400", "leather dubbing",
		"Russion formula", "",
		"18.5", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1047495146.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/5-42400f_2.jpg",
		100, 86,
		"42 800", "leather softener SR",
		"", "",
		"13.5", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1257808424.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/42182_2.jpg",
		100, 53,
		"42 182", "gold beater&rsquo;s skin",
		"", "",
		"232", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1635120278.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/5-25410-Bild 1_2.jpg",
		100, 92,
		"25 410", "Alfred Stemp&rsquo;s Patented Press",
		"", "",
		"259", "0",
		"1", 1,
		"Stück", "22",
		"clear width;330mm@", "pd447275224.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/5-73004_2.jpg",
		100, 72,
		"73 004", "Round Brush",
		"diameter 17mm", "",
		"3.7", "0",
		"1", 1,
		"Stück", "5",
		"size;4@", "pd2128185789.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/5-45315_2.jpg",
		100, 102,
		"45 115", "sand bags",
		"", "",
		"44.1", "0",
		"1", 1,
		"Stück", "32",
		"weight;220g (60 x 150mm)@package size;10 bags@", "pd814734083.htm",
		"", 1,
		"031", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/5-71808_2.jpg",
		100, 54,
		"71 816", "NOVA priming brushes",
		"daVinci series 18", "",
		"8.15", "0",
		"1", 1,
		"Stück", "5",
		"size;16@", "pd-158696059.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[171] = new Element(
		171, "",
		0, 0,
		"40 101", "bone glue",
		"", "",
		"7.55", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd-2043264542.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[172] = new Element(
		172, "",
		0, 0,
		"40 201", "hide glue",
		"", "",
		"9.95", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd-927964146.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[173] = new Element(
		173, "",
		0, 0,
		"40 301", "technical gelatine",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd146170106.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[174] = new Element(
		174, "",
		0, 0,
		"40 401", "rabbitskin glue",
		"", "",
		"11.75", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd1724998822.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[175] = new Element(
		175, "",
		0, 0,
		"40 601", "wheat starch",
		"", "",
		"5.1", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd1193707676.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[176] = new Element(
		176, "",
		0, 0,
		"41 750", "Shofu",
		"", "",
		"21.5", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-484077526.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[177] = new Element(
		177, "",
		0, 0,
		"41 725", "Funori",
		"", "",
		"19.8", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-665953688.htm",
		"", 1,
		"036", "0",
		 1)
	
		Entry[178] = new Element(
		178, "",
		0, 0,
		"41 601", "rice starch",
		"", "",
		"15.2", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd-451329804.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[179] = new Element(
		179, "",
		0, 0,
		"40 701", "Tylose MH 300-P2",
		"", "",
		"23", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd-1110964160.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[180] = new Element(
		180, "",
		0, 0,
		"40 801", "Tylose MHB 3000",
		"", "",
		"25.1", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1386293358.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[181] = new Element(
		181, "",
		0, 0,
		"41 101", "Tylose CB 200",
		"", "",
		"19.5", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd-1694553254.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[182] = new Element(
		182, "",
		0, 0,
		"41 500", "Klucel G",
		"", "",
		"47", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1047719787.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/5-41201_2.jpg",
		100, 64,
		"41 201", "Planatol BB",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "0",
		"", "pd430223249.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/5-41201_2.jpg",
		100, 64,
		"41 301", "Planatol Elasta",
		"", "",
		"10.4", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-91864025.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/5-41201_2.jpg",
		100, 64,
		"41 405", "Planatol RH8",
		"", "",
		"38.65", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-2070969683.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/5-85012_2.jpg",
		100, 185,
		"85 012", "Paring Knife Ascona",
		"", "",
		"44.9", "0",
		"1", 1,
		"Stück", "12",
		"width;12mm@", "pd-278430602.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/5-85113_2.jpg",
		50, 208,
		"85 113", "Paring Knife with Wooden Handle",
		"Geraer shape", "",
		"37.5", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-347746412.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/5-85312_2.jpg",
		50, 281,
		"85 312", "Bookbinder&rsquo;s Knife with Wooden Handle",
		"", "",
		"27", "0",
		"1", 1,
		"Stück", "12",
		"", "pd267063266.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[189] = new Element(
		189, "",
		0, 0,
		"85 555", "Natural Whetstone",
		"&quot;Belgischer Brocken&quot;", "",
		"29.9", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1079000864.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/5-85600_2.jpg",
		50, 204,
		"85 600", "Trimming and Passepartout Knife",
		"", "",
		"32.9", "0",
		"1", 1,
		"Stück", "12",
		"", "pd264114702.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/5-85600_2.jpg",
		50, 204,
		"85 601", "Replacement Blade",
		"for trimming and passepartout knife", "",
		"4.2", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1315324180.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/5-85210_2.jpg",
		50, 214,
		"85 210", "Thin Trimming Knives",
		"", "",
		"10.5", "0",
		"1", 1,
		"Stück", "12",
		"width;10mm@", "pd1489245624.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/5-85223_2.jpg",
		50, 285,
		"85 223", "Strong Trimming Knife",
		"", "",
		"21.8", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1683673766.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/5-85426_2.jpg",
		50, 435,
		"85 426", "Carver",
		"double-edged", "",
		"23.5", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1075064508.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/5-82280_2.jpg",
		100, 18,
		"82 280", "Teflon spatula &quot;mini&quot;",
		"", "",
		"17.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-433313043.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/5-82280_2.jpg",
		100, 18,
		"82 300", "Teflon spatula &quot;MAXI&quot;",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1108861213.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/5-85615_2.jpg",
		100, 20,
		"85 715", "Anatomy Scalpel",
		"pointed", "",
		"10.9", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-289125431.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/5-85715_2.jpg",
		100, 19,
		"85 615", "Anatomy Scalpel",
		"bellied", "",
		"10.9", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1831934751.htm",
		"", 1,
		"038", "0",
		 0)
	
		Entry[199] = new Element(
		199, "",
		0, 0,
		"34 255", "Flax String/Cord",
		"Diameter about 5.5mm", "",
		"25", "0",
		"1", 1,
		"Stück", "26",
		"diameter;5,5mm@", "pd1491564681.htm",
		"", 1,
		"025", "0",
		 0)
	
		Entry[200] = new Element(
		200, "",
		0, 0,
		"21 250", "transfer paper",
		"", "",
		"38.5", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1712605746.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[201] = new Element(
		201, "",
		0, 0,
		"30 605", "Filter eleemnt for ATTIX 360-2M",
		"", "",
		"27.9", "0",
		"1", 1,
		"Stück", "28",
		"", "pd1671769283.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/75519_2.jpg",
		100, 13,
		"75 519", "Squirrel Liner Brush",
		"with Kolinsky marten tip, size No. 8", "",
		"20.3", "0",
		"1", 1,
		"Stück", "5",
		"", "pd931520058.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/75110_2.jpg",
		100, 27,
		"75 110", "Stencilling Brush",
		"Diameter 13mm", "",
		"2.95", "0",
		"1", 1,
		"Stück", "5",
		"size;10@", "pd1521431981.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/42135_2.jpg",
		100, 134,
		"42 135", "high pressure vessel",
		"", "",
		"396", "0",
		"1", 1,
		"Stück", "30,19",
		"", "pd1093078800.htm",
		"", 1,
		"004,022", "0",
		 0)
	
		Entry[205] = new Element(
		205, "",
		0, 0,
		"37 231", "Hollytex, thin",
		"25m roll", "",
		"166", "0",
		"1", 1,
		"Stück", "31",
		"", "pd2110668475.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[206] = new Element(
		206, "",
		0, 0,
		"37 702", "Bi-component non-woven PL702",
		"", "",
		"105", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-1689006239.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/82150_2.jpg",
		100, 22,
		"82 150", "Teflon bone folder &quot;micro&quot;",
		"", "",
		"15.95", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1512781378.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/84103_2.jpg",
		100, 32,
		"84 103", "SCREW PUNCH",
		"manual punching tool", "",
		"43.8", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1013573727.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[209] = new Element(
		209, "",
		0, 0,
		"84 210", "Punch Tips, individual",
		"", "",
		"7.25", "0",
		"1", 1,
		"Stück", "11",
		"Hole size;1,0mm@", "pd-1663181610.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/5-48000_2.jpg",
		100, 146,
		"48 000", "small fiber pulp bottle",
		"", "",
		"3.5", "0",
		"1", 1,
		"Stück", "8",
		"", "pd758884479.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[211] = new Element(
		211, "",
		0, 0,
		"42 601", "calcium carbonate",
		"", "",
		"24.8", "0",
		"1", 1,
		"Stück", "20",
		"amount;1kg@", "pd907629835.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[212] = new Element(
		212, "",
		0, 0,
		"23 175", "replacement pot",
		"for elektrical hot glue pot", "",
		"54.5", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2030739337.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/5-47200_2.jpg",
		100, 65,
		"47 200", "Square-Bottom, Wide-Neck Container",
		"", "",
		"1", "0",
		"1", 1,
		"Stück", "16",
		"Contaner size;200ml@", "pd984839187.htm",
		"", 1,
		"99", "0",
		 0)
	
		Entry[214] = new Element(
		214, "",
		0, 0,
		"35 010", "Japanese paper of Paper Nao",
		"15g/m², K-27", "",
		"46", "0",
		"1", 1,
		"Stück", "17",
		"", "pd64034211.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[215] = new Element(
		215, "",
		0, 0,
		"35 500", "Japanese paper of Paper Nao",
		"trial package with 10 sheets", "",
		"119", "0",
		"1", 1,
		"Stück", "17",
		"", "pd832118921.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[216] = new Element(
		216, "",
		0, 0,
		"37 223", "Japanese paper",
		"50m roll", "",
		"81", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-960218420.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/5-32050_2.jpg",
		100, 109,
		"32 050", "cellulose powder",
		"", "",
		"9.2", "0",
		"1", 1,
		"Stück", "8,19",
		"quantity;50g@", "pd-940657248.htm",
		"", 1,
		"007,022", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/34030_2.jpg",
		100, 75,
		"34 030", "RepaTex picture mounting strips",
		"", "",
		"37.5", "0",
		"1", 1,
		"Stück", "19",
		"package size;1 piece@", "pd1782050150.htm",
		"", 1,
		"022", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/11255_2.jpg",
		100, 68,
		"11 255", "Vacuum table NSD 115: foldable",
		"with foldable support on wheels", "",
		"3295", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-616709862.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[220] = new Element(
		220, "",
		0, 0,
		"73 024", "glue brush",
		"# 24, 45 mm diameter", "",
		"18.9", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1112113180.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/5-44120f_2.jpg",
		100, 12,
		"44 209", "Leather dyes",
		"", "",
		"294", "0",
		"1", 1,
		"Stück", "13",
		"quantity;200g@leather dye;complete set@", "pd1949181494.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[222] = new Element(
		222, "",
		0, 0,
		"29 108", "Book Stands",
		"octavo", "",
		"5.3", "0",
		"1", 1,
		"Stück", "21,3",
		"sizes;360 x 200 x 62/10mm@", "pd398566833.htm",
		"", 1,
		"0000,032", "0",
		 0)
	
		Entry[223] = new Element(
		223, "",
		0, 0,
		"20 209", "shoe no. 9",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-633221085.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/34404.jpg",
		100, 75,
		"34 404", "Flax cord",
		"500g, 4-stranded, diameter 2,0mm", "",
		"19.8", "0",
		"1", 1,
		"Stück", "26",
		"diameter;2,0mm@", "pd1156963727.htm",
		"", 1,
		"025", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/16245.jpg",
		100, 66,
		"16 245", "MaxDetail",
		"Goggles for convenient working", "",
		"69", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1452039675.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[226] = new Element(
		226, "",
		0, 0,
		"60 512", "Roller stand",
		"for swivel arm lamp LONGA", "",
		"47.5", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1595146401.htm",
		"", 1,
		"021", "0",
		 0)
	
		Entry[227] = new Element(
		227, "",
		0, 0,
		"42 186", "Gold beater&rsquo;s skin",
		"about 17 x 60cm", "",
		"16.5", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-99711811.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[228] = new Element(
		228, "",
		0, 0,
		"35 220", "Japanese paper of Paper Nao",
		"18g/m², K-145, 5 sheets", "",
		"48.25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1156975084.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[229] = new Element(
		229, "",
		0, 0,
		"35 230", "Japanese paper of Paper Nao",
		"40g/m², K-148, 5 sheets", "",
		"96.25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1995138291.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[230] = new Element(
		230, "",
		0, 0,
		"35 270", "Japanese paper of Paper Nao",
		"62g/m², K-91, 5 sheets", "",
		"115.25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1737377190.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[231] = new Element(
		231, "",
		0, 0,
		"35 280", "Japanese paper of Paper Nao",
		"16g/m², K-38, 5 sheets", "",
		"37.25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd823324661.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[232] = new Element(
		232, "",
		0, 0,
		"35 701", "Japanese paper roll",
		"RK-1, 8g/m²", "",
		"498", "0",
		"1", 1,
		"Stück", "17",
		"widths;100cm@", "pd-1453582192.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[233] = new Element(
		233, "",
		0, 0,
		"60 820", "Headband magnifier",
		"", "",
		"74.5", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1157061328.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[234] = new Element(
		234, "",
		0, 0,
		"37 060", "Capillary Fleece Paraprint OL 60",
		"100m Roll ", "",
		"119", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1179834518.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/20500.jpg",
		100, 75,
		"20 500", "HOT AIR FAN RT 500 ",
		"with two nozzles", "",
		"169", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1183055263.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/20555.jpg",
		100, 75,
		"20 555", "HOT AIR FAN RT 500S ",
		"with four nozzles and an additional small suction nozzle", "",
		"268", "0",
		"1", 1,
		"Stück", "10",
		"", "pd475183333.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/14175.jpg",
		100, 158,
		"14 175", "RACK DRYER SR1",
		"", "",
		"819", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1933720987.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[238] = new Element(
		238, "",
		0, 0,
		"20 600", "Steam Scalpel RTC 4",
		"", "",
		"498", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1189450185.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[239] = new Element(
		239, "",
		0, 0,
		"38 512", "Polyester Film Mylar AS",
		"", "",
		"86", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-594816737.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[240] = new Element(
		240, "",
		0, 0,
		"38 501", "Polyester Film Melinex 401",
		"100µm - 93cm width", "",
		"103", "0",
		"1", 1,
		"Stück", "31",
		"thickness;100µm@", "pd-1523818303.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[241] = new Element(
		241, "",
		0, 0,
		"37 295", "Hollytex Super",
		"", "",
		"248", "0",
		"1", 1,
		"Stück", "31",
		"", "pd618928343.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[242] = new Element(
		242, "",
		0, 0,
		"12 316", "Shirosuji-Bake",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1219615011.htm",
		"", 1,
		"014", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/717xx.jpg.JPG",
		100, 50,
		"71 712", "Nova Synthetics",
		"synthetic brush, 12mm width", "",
		"7.5", "0",
		"1", 1,
		"Stück", "5",
		"size;12@", "pd2057041145.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/12812.jpg",
		100, 43,
		"12 812", "Humidifying chamber",
		"of cedar wood", "",
		"195", "0",
		"1", 1,
		"Stück", "30",
		"", "pd692037583.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/22350.jpg",
		100, 75,
		"22 350", "Crepe Rubber Cement Pickup",
		"", "",
		"4.3", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1433865778.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/34005.jpg",
		100, 71,
		"34 105", "RepaTex Conservation strips G5",
		"20 strips, 39cm long", "",
		"19.35", "0",
		"1", 1,
		"Stück", "19",
		"width;10mm@content quantity;single pack@", "pd-290467850.htm",
		"", 1,
		"022", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/40501.jpg",
		100, 75,
		"40 501", "Sturgeon glue chips",
		"10g", "",
		"19.5", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1138471148.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/40505.jpg",
		100, 68,
		"40 505", "Sturgeon glue in bladders",
		"50g", "",
		"28.6", "0",
		"1", 1,
		"Stück", "0",
		"quantity;50g@", "pd-940492704.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/71825.jpg",
		100, 27,
		"71 825", "Art-Marker Base Brush",
		"size 25", "",
		"12.9", "0",
		"1", 1,
		"Stück", "5,23",
		"", "pd1179276686.htm",
		"", 1,
		"093,999", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/76111.JPG",
		100, 32,
		"76 111", "Drawing broom",
		"very large (painter&rsquo;s duster)", "",
		"7.9", "0",
		"1", 1,
		"Stück", "23",
		"", "pd-853692820.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/83445.jpg",
		100, 75,
		"83 445", "Rounding / Holding-Down Block",
		"", "",
		"12.5", "0",
		"1", 1,
		"Stück", "22",
		"", "pd1445822636.htm",
		"", 1,
		"029", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/13557.GIF",
		100, 70,
		"13 557", "Floatwashing Frames",
		"legs 50 x 20mm", "",
		"198", "0",
		"1", 1,
		"Stück", "30",
		"Outer dimensions;470 x 570mm@", "pd805313792.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[253] = new Element(
		253, "",
		0, 0,
		"36 480", "Linen, fine",
		"170g/m²", "",
		"125.5123", "0",
		"1", 1,
		"Stück", "27",
		"length;10m@", "pd1871798408.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[254] = new Element(
		254, "",
		0, 0,
		"36 490", "Linen, medium",
		"220g/m²", "",
		"132", "0",
		"1", 1,
		"Stück", "27",
		"length;10m@", "pd1789520148.htm",
		"", 1,
		"023", "0",
		 0)
	
		Entry[255] = new Element(
		255, "",
		0, 0,
		"40 321", "Photo-Gelatine Type Restoration 1",
		"", "",
		"16.4", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd-1663798688.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[256] = new Element(
		256, "",
		0, 0,
		"40 351", "Gelatine Type Novo Tec GP",
		"", "",
		"13.8", "0",
		"1", 1,
		"Stück", "0",
		"quantity;1kg@", "pd913868908.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/11190.GIF",
		100, 75,
		"11 995", "Mobile Support",
		"", "",
		"1898", "0",
		"1", 1,
		"Stück", "29",
		"adjustment;electical@", "pd1497299631.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/11751.GIF",
		100, 80,
		"11 751", "Watering Vacuum Table",
		"BT1510", "",
		"3425", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-769115019.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/11825.GIF",
		100, 87,
		"11 825", "NSD 1101 mobile",
		"1250 x 2000mm", "",
		"6295", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1820349525.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[260] = new Element(
		260, "",
		0, 0,
		"11 980", "U1E All-Purpose Table",
		"", "",
		"255", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-634862127.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/12246.GIF",
		100, 80,
		"12 246", "NSP1, Working table",
		"with illuminated vacuum area", "",
		"1815", "0",
		"1", 1,
		"Stück", "29",
		"", "pd662258791.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/12255.GIF",
		100, 85,
		"12 255", "NSP1/EFS, working table",
		"", "",
		"3078", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1007452947.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[263] = new Element(
		263, "",
		0, 0,
		"12 520", "Mizufude Pen",
		"", "",
		"5.2", "0",
		"1", 1,
		"Stück", "5",
		"strength;fine@", "pd-666000446.htm",
		"", 1,
		"093", "0",
		 0)
	
		Entry[264] = new Element(
		264, "",
		0, 0,
		"20 650", "Ultrasonic Mini-Atomizer W/A/Vn II",
		"", "",
		"750", "0",
		"1", 1,
		"Stück", "10",
		"", "pd738719680.htm",
		"", 1,
		"035", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/24100.GIF",
		100, 66,
		"24 100", "&quot;Le Saucier&quot;",
		"for the preparation of starch glue", "",
		"138", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1647354862.htm",
		"", 1,
		"036", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/30405.GIF",
		100, 121,
		"30 405", "ATTIX industrial Wet/Dry Vacuum-Cleaner 30-01",
		"", "",
		"295", "0",
		"1", 1,
		"Stück", "28",
		"", "pd213525452.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[267] = new Element(
		267, "",
		0, 0,
		"30 408", "ATTIX Industrial Wet/Dry Vacuum-Cleaner 30-21",
		"", "",
		"395", "0",
		"1", 1,
		"Stück", "28",
		"", "pd2061065946.htm",
		"", 1,
		"013", "0",
		 0)
	
		Entry[268] = new Element(
		268, "",
		0, 0,
		"34 821", "Repatex Starter Kit",
		"", "",
		"57", "0",
		"1", 1,
		"Stück", "19",
		"", "pd-885294193.htm",
		"", 1,
		"022", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/34910.GIF",
		100, 83,
		"34 910", "Repatex Paper Protect Stickers",
		"", "",
		"198.45", "0",
		"1", 1,
		"Stück", "19",
		"", "pd2092968021.htm",
		"", 1,
		"022", "0",
		 0)
	
		Entry[270] = new Element(
		270, "",
		0, 0,
		"37 885", "Tyvek with UV protection",
		"1.5m wide, 10m roll", "",
		"96", "0",
		"1", 1,
		"Stück", "31",
		"", "pd258800267.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[271] = new Element(
		271, "",
		0, 0,
		"39 444", "Gore ePTFE membrane on polyester fabric",
		"103cm wide, 5m roll", "",
		"338", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1872113585.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[272] = new Element(
		272, "",
		0, 0,
		"45 502", "RODA DYE NF Leather Colour",
		"", "",
		"19.6", "0",
		"1", 1,
		"Stück", "13",
		"colour;Yellow@", "pd2043079791.htm",
		"", 1,
		"024", "0",
		 0)
	
		Entry[273] = new Element(
		273, "",
		0, 0,
		"47 150", "Wide-Neck Container",
		"500 ml", "",
		"2.5", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-1002404811.htm",
		"", 1,
		"99", "0",
		 0)
	
		Entry[274] = new Element(
		274, "",
		0, 0,
		"49 210", "Accu-Sprayer &quot;Spraystar&quot;",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "30",
		"", "pd909654379.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[275] = new Element(
		275, "",
		0, 0,
		"56 117", "Thermo- / Hygrometer",
		"", "",
		"13.9", "0",
		"1", 1,
		"Stück", "15",
		"", "pd349374865.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[276] = new Element(
		276, "",
		0, 0,
		"56 617", "Real-Hair Hygrometer",
		"", "",
		"21.9", "0",
		"1", 1,
		"Stück", "15",
		"", "pd2038705703.htm",
		"", 1,
		"020", "0",
		 0)
	
		Entry[277] = new Element(
		277, "",
		0, 0,
		"71 199", "Copic Wide Marker",
		"", "",
		"9.8", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1210547373.htm",
		"", 1,
		"022", "0",
		 0)
	
		Entry[278] = new Element(
		278, "",
		0, 0,
		"71 599", "Replacement tip, 5 pieces",
		"", "",
		"7.5", "0",
		"1", 1,
		"Stück", "19",
		"", "pd270714531.htm",
		"", 1,
		"022", "0",
		 0)
	
		Entry[279] = new Element(
		279, "",
		0, 0,
		"81 580", "Tweezers",
		"bended, 120mm", "",
		"11.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd199637385.htm",
		"", 1,
		"039", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/83205.jpg",
		100, 75,
		"83 2", "Beechen wood folding stick",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-539665371.htm",
		"", 1,
		"039", "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>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</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();
			};
		};
