	// 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="93" height="14" 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 += "Price upon request";
			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/Schaft-10G.JPG",
		150, 112,
		"2366929", "Shaft 10/G with dispersing generator coarse",
		"slot width Sb=2,0 mm / immersion depth 150 mm", "",
		"295", "0",
		"1", 1,
		"Stück", "4,9",
		"", "pd-779781104.htm",
		"", 1,
		"3910,Disp750", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Schaft-10MG.JPG",
		150, 112,
		"2369250", "Shaft 10/MG with coarse dispersing generator",
		"slot width Sb=2,0 mm / with cutting knifes / immersion depth 155 mm", "",
		"340", "0",
		"1", 1,
		"Stück", "4,9,4,9",
		"", "pd838926526.htm",
		"", 1,
		"3910,Disp750,3910,Disp750", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Schaft-10F.JPG",
		150, 112,
		"2366931", "Shaft 10/F with dispersing generator fine",
		"slot width 0,5 mm / immersion depth 150 mm", "",
		"315", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9",
		"", "pd1911229724.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Schaft-06G.JPG",
		150, 112,
		"2366925", "Micro shaft 6/G with dispersing generator (slot width 0,5 mm)",
		"with stainless steel ball bearing, with Teflon bearing, immersion depth 45 mm", "",
		"299", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9",
		"", "pd-1686132566.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Schaft-18N-G.JPG",
		150, 112,
		"2367006", "Shaft 18/G with dispersing generator coarse",
		"slot width Sb = 3,0 mm / immersion depth max. 200 mm", "",
		"312", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9",
		"", "pd2051451531.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/Schaft-18N-F.JPG",
		150, 112,
		"2367005", "Shaft 18/F with dispersing generator fine",
		"slot width Sb = 1,5 mm / immersion depth 200 mm", "",
		"339", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9",
		"", "pd1992777649.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/Schaft-20DG.JPG",
		150, 112,
		"2368888", "Shaft 20D/G with dispersing generator coarse",
		"slot width Sb=3,0 mm / immersion depth 190 mm / mechanical seal Ceramic/Carbon/FPM (Viton)", "",
		"425", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9",
		"", "pd-312267365.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Schaft-20DF.JPG",
		150, 112,
		"2368886", "Shaft 20D/F with dispersing generator fine",
		"slot width Sb=1,5 mm / immersion depth 190 mm / mechanical seal Ceramic/Carbon/Viton", "",
		"425", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9",
		"", "pd-51183161.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Schaft-25N-G.JPG",
		150, 112,
		"2366995", "Shaft 25/G with dispersing generator coarse",
		"slot width Sb=3,0 mm / immersion depth 200 mm / bearing bushing", "",
		"370", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9",
		"", "pd1061902363.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Schaft-25N-F.JPG",
		150, 112,
		"2366994", "Shaft 25/F with dispersing generator fine",
		"slot width Sb=1,5 mm / immersion depth 200 mm / bushing bearingBuchsenlager ", "",
		"385", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9",
		"", "pd1127221185.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Schaft-25DG.JPG",
		150, 112,
		"2368892", "Shaft 25D/G with dispersing generator coarse",
		"slot width Sb=3,0 mm / immersion depth 190 mm / mechanical seal Ceramic/Carbon/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9",
		"", "pd-548661289.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Schaft-X30-1.JPG",
		149, 112,
		"2369307", "Shaft 30D without generator",
		"with mechanical seal Ceramic/Carbon/FPM (Viton) / immersion depth 190 mm", "",
		"420", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11",
		"Mechanical seal;Ceramic/Carbon/FPM@", "pd21502604.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/2366954.jpg",
		150, 112,
		"2369654", "Wrench",
		"for shafts 6/G and shaft 10T", "",
		"14", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1062406150.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/2370734.jpg",
		149, 112,
		"2370734", "Shaft 10/Y with Jetstream mixing generator dia. 26 mm",
		"immersion depth E=150 mm, foil bearing PTFE/glass fibre", "",
		"705", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1283208155.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/PB061018.JPG",
		149, 112,
		"2402028", "Pilot plant drive X50/10 Ex, 2,2kW, 230/400 V, 50 Hz, 3.000 rpm, IP66",
		"EEx de IIB T4, ATEX II2G/2D, 3 built-in thermistors, speed adjustable 0 - 6.000 rpm", "",
		"1598", "0",
		"1", 1,
		"Stück", "34",
		"", "pd252906171.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/PB060989.JPG",
		115, 86,
		"2402969", "Generator dissolver D=30 mm for shaft 30D",
		"consisting of dissolver disc and thread cover ring", "",
		"420", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1138064225.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[16] = new Element(
		16, "",
		0, 0,
		"2402970", "Generator dissolver D=30 mm for shaft Y-MD and A-MD/R",
		"including thread cover ring", "",
		"395", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1877554295.htm",
		"", 1,
		"DissMD", "0",
		 0)
	
		Entry[17] = new Element(
		17, "",
		0, 0,
		"2403238", "Inline disperser Z42 with clamp assembly and clamp struts DIN32676 DN32",
		"mechanical seal Tungsten/Carbon/FPM (Viton), pumping wing", "",
		"1965", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-353162371.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[18] = new Element(
		18, "",
		0, 0,
		"2403441", "Generator Dispermix D=60 mm for shaft LDT-1H and LDT-1H/S, High Shear Version",
		"consisting of stator Sb=4 mm, stator carier, L2 Ra &lt; 0,8 µm, encapsulated mechanical seal", "",
		"1685", "0",
		"1", 1,
		"Stück", "42",
		"", "pd2110214643.htm",
		"", 1,
		"D-H", "0",
		 0)
	
		Entry[19] = new Element(
		19, "",
		0, 0,
		"2404652", "Shaft LDT-RG/S without generator, reduction gear for drive X40",
		"mechanical seal Ceramic/Carbon/EPDM, immersion depth max. E=600 mm", "",
		"1710", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-831457959.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/PB061018.JPG",
		149, 112,
		"2406050", "Pilot plant drive X50/10, 2,2 kW, 230/400 V, 50 Hz, 3.000 rpm, IP55",
		"3 built-in thermistors, speed adjustable 0 - 6.000 rpm, not suitable for operation without frequency converter", "",
		"920", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1594745041.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[21] = new Element(
		21, "",
		0, 0,
		"2407289", "Generator disperser D=70 mm, coarse, for shaft LDT-1H and LDT-1H/S",
		"open execution with pre-cutting knives, encapsulated mechanical seal", "",
		"1950", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-141429515.htm",
		"", 1,
		"X-H", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/PB060959.JPG",
		149, 112,
		"2407531", "Generator Dispermix D=40 mm for shaft 25T, SB=4 mm",
		"consisting of stator, stator carrier, rotor and screws, 1.4404", "",
		"765", "0",
		"1", 1,
		"Stück", "11",
		"", "pd2035423275.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[23] = new Element(
		23, "",
		0, 0,
		"2409723", "Generator disperser, D=70 mm, fine, closed execution for shaft LDT and LDT-1",
		"consisting of rotor Sb=1 mm and stator SB=1 mm, L1 Ra &lt;1,2 µm", "",
		"835", "0",
		"1", 1,
		"Stück", "38",
		"", "pd1189283409.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/X50-Gesamt-0007.gif",
		150, 113,
		"2409731", "Shaft D-FLT-1/S, Dispermix stator on struts, m/M=102/120 mm for drive X50",
		"Elastomeres EPDM with foot bearing, immersion depth with generator max. E=600 mm", "",
		"2582", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-30443289.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/PB061018.JPG",
		149, 112,
		"2409810", "Pilot plant drive X50/10, 0,55 kW, 400 V, 50 Hz, 3.000 rpm, IP55, 3 built-in thermistors",
		"with integrated frequency converter, 300 - 6.000 rpm", "",
		"1870", "0",
		"1", 1,
		"Stück", "34",
		"", "pd173458797.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[26] = new Element(
		26, "",
		0, 0,
		"2409931", "Control panel &quot;EMERGENCY OFF&quot; in combination with drives with integrated frequency converter",
		"for X50 and X100, housing PVC, 380 - 420 V, 50/60 Hz, 3 phases", "",
		"298", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-240239261.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[27] = new Element(
		27, "",
		0, 0,
		"2410301", "Generator Dispermix D=102 mm for shaft LDT-1H and LDT-1H/S, with O-ring sealing",
		"consisting of stator Sb=2 mm, rotor with blade angeled 35°, L2 Ra &lt; 0,8 µm", "",
		"1195", "0",
		"1", 1,
		"Stück", "42",
		"", "pd220302921.htm",
		"", 1,
		"D-H", "0",
		 0)
	
		Entry[28] = new Element(
		28, "",
		0, 0,
		"2411883", "Generator Dispermix D=60 mm for shaft LDT and LDT-1",
		"consisting of stator Sb=2 mm, stator carrier and screws, L1 Ra &lt; 0,8 µm", "",
		"1145", "0",
		"1", 1,
		"Stück", "37",
		"", "pd1678385567.htm",
		"", 1,
		"Disperm50", "0",
		 0)
	
		Entry[29] = new Element(
		29, "",
		0, 0,
		"2375642", "Shaft LDT-1H/S-1000 without generator for drive X50, mechanical seal Ceramic/Carbon/EPDM,encapsulate",
		"Elastomeres  EPDM, immersion depth with generator max. E=1000 mm, max. permissible speed 6.000 rpm", "",
		"3195", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1648196751.htm",
		"", 1,
		"LDT-H", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/HG10-0006.gif",
		150, 273,
		"HG10", "Moveable lift HG10 with manual crank for X50 drives",
		"Lifting height approx. 1.100 mm, required space approx. 800x800 mm, painted steel, two fixed casters", "",
		"0", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-39434490.htm",
		"", 1,
		"Lifts", "0",
		 1)
	
		Entry[31] = new Element(
		31, "assets/thumb/HG19-X50-Verlauf.gif",
		150, 291,
		"HG19", "Moveable lift HG19 with manual crank for X50 drives",
		"Lifting height approx. 1.000 mm, required space approx. 680x900 mm, stainless steel, two fixed and one steerable casters", "",
		"0", "0",
		"1", 1,
		"Stück", "53",
		"", "pd155835556.htm",
		"", 1,
		"Lifts", "0",
		 1)
	
		Entry[32] = new Element(
		32, "",
		0, 0,
		"2375769", "Generator Jetstream D=64/78 mm for shafts LDT and LDT-RG ",
		"consisting of rotor and stator", "",
		"545", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22",
		"", "pd-1756186054.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G", "0",
		 0)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"2381609", "Generator Jetstream D=84/98 mm for shafts LDT and LDT-RG",
		"consisting of rotor and stator", "",
		"535", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27",
		"", "pd552981240.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT", "0",
		 0)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"2381615", "Generator Dispermix D=86/98 mm for shafts LDT and LDT-RG",
		"slot width Sb=4,0 mm", "",
		"740", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27",
		"", "pd324919940.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT", "0",
		 0)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"2381616", "Generator Dispermix D= 86/98 mm for shafts LDT and LDT-RG",
		"slot width Sb=2,0 mm", "",
		"735", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27",
		"", "pd896520678.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT", "0",
		 0)
	
		Entry[36] = new Element(
		36, "",
		0, 0,
		"2375783", "Generator disperser, D=70 mm open, fine, for shaft LDT and LDT-RG",
		"consisting of rotor slot width Sb=4,0 mm and stator Sb=2,0 mm", "",
		"895", "0",
		"1", 1,
		"Stück", "38",
		"", "pd483506538.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[37] = new Element(
		37, "",
		0, 0,
		"2375786", "Generator disperser, D=70 mm open, coarse, for shaft LDT and LDT-RG",
		"consisting of rotor slot width Sb=8,0 mm and stator Sb=4,0 mm", "",
		"895", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-842145828.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/X10-20-PSW.JPG",
		149, 112,
		"2366868", "Pneumatic drive X10/25 P, 300 W at a pressure of 6 bar",
		"maximum 20.000 rpm incl. speed control valve for stepless adjustment", "",
		"1450", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2",
		"", "pd-1714582365.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/Stativ-X10-1.JPG",
		150, 196,
		"2372841", "Plate stand PS1",
		"with column 700 mm", "",
		"128", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-110038585.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Klemme-X10.JPG",
		150, 112,
		"2369601", "Cross clamp KL 1",
		"for stand PS1", "",
		"23", "0",
		"1", 1,
		"Stück", "14",
		"", "pd748448077.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/DZM-X10.JPG",
		150, 112,
		"2383577", "Digital speed indicator DA1 for drive X10/20 and X10/25",
		"consisting of digital display, magnetic sensor, spiral cable and batteries", "",
		"450", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-991951805.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/2366963-2.jpg",
		149, 112,
		"2366963", "Dispersing chamber Z22 up to 7 bar",
		"connection 20x26 mm / O-rings FPM (Viton) / operation only with shafts 21G/S + generator or 20D/G or 20D/F", "",
		"590", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1733885125.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/PB060972.JPG",
		149, 112,
		"2366991", "Adapter AD1-40/10 made of stainless steel",
		"for adaptation of shafts suitable for drives X10 to the drives X40", "",
		"460", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32",
		"", "pd-1511308268.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Sterilhuelse.jpg",
		149, 112,
		"2367853", "Protection cover for sterilisation",
		"for shafts suitable for drives X10/20 and X10/25", "",
		"149", "0",
		"1", 1,
		"Stück", "14",
		"", "pd170876941.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Detail-X10-2.jpg",
		149, 112,
		"2366930", "Shaft 10/T without generator",
		"immersion depth E=150 mm, foil bearing PTFE/fibre glass", "",
		"200", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1857650016.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/2370729-1.JPG",
		149, 112,
		"2370729", "Shaft 20D/25D without generator",
		"with mechanical seal Ceramic/Carbon/FPM (Viton) / immersion depth", "",
		"315", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-339729778.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/2365227.jpg",
		150, 112,
		"2365227", "Rotor key",
		" for shaft 6G", "",
		"13", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1873076697.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/2366908.jpg",
		150, 112,
		"2366908", "Rotor key",
		"for shafts 10G / 10MG / 10F", "",
		"16", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-971076440.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/2366912.jpg",
		150, 112,
		"2366912", "Rotor key",
		"for shafts X18 and X25", "",
		"16", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1027074403.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/2366915.jpg",
		150, 112,
		"2366914", "Wrench",
		"for shafts X18 and X25", "",
		"8", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1776502428.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/2366913.jpg",
		150, 112,
		"2366913", "Rotor key",
		"for shafts X20 and X30", "",
		"16", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1581791003.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/2366915.jpg",
		150, 112,
		"2366915", "Wrench",
		"for shafts X20, X25 and X30", "",
		"25", "0",
		"1", 1,
		"Stück", "14",
		"", "pd161035478.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/PB061002.JPG",
		149, 112,
		"2368894", "Shaft 40/T without generator",
		"with PTFE bearing, with coupling for drive X40/38, immersion depth with generator E = 300 mm", "",
		"710", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1643069326.htm",
		"", 1,
		"Schft40T", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"2367073", "Shaft 41G without generator",
		"immersion depth E = 320 mm, mechanical seal Chrom/Carbon/FPM (Viton)", "",
		"795", "0",
		"1", 1,
		"Stück", "21",
		"Mechanical seal;Chrom/Carbon/FPM@", "pd1020077040.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[55] = new Element(
		55, "",
		0, 0,
		"2369806", "Shaft 41G/S without generator",
		"immersion depth E = 600 mm, mechanical seal Chrom/Carbon/FPM (Viton)", "",
		"995", "0",
		"1", 1,
		"Stück", "21",
		"Mechanical seal;Chrom/Carbon/FPM@", "pd-1269042436.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/2368878-2.jpg",
		149, 112,
		"2381782", "Reduction gear RG1-40/50 fro drives X40",
		"for shafts with coupling for drives X50", "",
		"675", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-815190474.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/DZM-X10.JPG",
		150, 112,
		"2383579", "Digital speed reading device DA2 with support for drive X40/38",
		"consisting of digital display, sensor, batteries and 1 m spiral-cable", "",
		"461", "0",
		"1", 1,
		"Stück", "32",
		"", "pd409851732.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/X40-Stativ-0001.gif",
		150, 200,
		"2367234", "U-stand U1, column length H=1.000 mm",
		"columns made of stainless steel, support feet coated with plastic", "",
		"310", "0",
		"1", 1,
		"Stück", "32",
		"", "pd1798921634.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/X40-Stativ-0001.gif",
		150, 200,
		"2376842", "U-stand U2, column length H=1.500 mm",
		"columns made of stainless steel, support feet coated with plastic", "",
		"360", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1008352096.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/2367238.jpg",
		149, 112,
		"2367238", "Cross clamp SKL1",
		"for stand U1/U2/GU1/GU2", "",
		"82", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-778849094.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/2375739-1.jpg",
		149, 112,
		"2375739", "Generator Jetstream (barrel mixing head) D=40 mm",
		"for shaft 40/T, consisting of stator and rotor", "",
		"715", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1253906927.htm",
		"", 1,
		"Kopf40T", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/2375739-3.jpg",
		149, 112,
		"2375740", "Generator Jetstream (barrel mixing head) D=40 mm",
		"for shaft 41/G / consisting of stator and rotor", "",
		"725", "0",
		"1", 1,
		"Stück", "22",
		"", "pd481447007.htm",
		"", 1,
		"Kopf41G", "0",
		 0)
	
		Entry[63] = new Element(
		63, "",
		0, 0,
		"2368876", "Shaft Y-MD-RG without generator with reduction gear",
		"immersion depth E=380 mm, Elastomers FPM (Viton)", "",
		"1640", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1727235270.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[64] = new Element(
		64, "",
		0, 0,
		"2368877", "Shaft Y-MD-RG/S without generator, with support bearing",
		"Elastomeres FPM (Vition), immersion depth E = 620 mm", "",
		"1835", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1722265500.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[65] = new Element(
		65, "",
		0, 0,
		"2376571", "Shaft LDT-RG  without generator, with reduction gear for drive X40",
		"immersion depth E = 400 mm, mechanical seal Ceramic/Carbon/FPM (Viton)", "",
		"1975", "0",
		"1", 1,
		"Stück", "26",
		"Mechanical seal;Ceramic/Carbon/FFKM@", "pd-1254441678.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[66] = new Element(
		66, "",
		0, 0,
		"2376572", "Shaft LDT-RG/S without generator, with reduction gear for drive X40",
		"immersion depth E = 600 mm, mechanical seal Ceramic/Carbon/FPM (Viton)", "",
		"1975", "0",
		"1", 1,
		"Stück", "26",
		"Mechanical seal;Ceramic/Carbon/FFKM@", "pd623629898.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[67] = new Element(
		67, "",
		0, 0,
		"2375747", "Generator Jetstream (barrel mixing generator) D=45/45 mm for shaft Y-MD and Y-MD-RG",
		"consisting of stator with horizontal slots and rotor", "",
		"635", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47",
		"", "pd642300282.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD", "0",
		 0)
	
		Entry[68] = new Element(
		68, "",
		0, 0,
		"2375775", "Generator Jetstream D=45/45 mm for shafts LDT and LDT-RG",
		"consisting of rotor and stator (with horizontal slots)", "",
		"565", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36",
		"", "pd1033177258.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM", "0",
		 0)
	
		Entry[69] = new Element(
		69, "",
		0, 0,
		"2375771", "Generator Dispermix D=60 mm for shafts LDT and LDT-RG",
		"consisting of rotor and stator / cylindrical shape", "",
		"945", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37",
		"", "pd-1287231294.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/2381968-1.jpg",
		149, 112,
		"2381968", "Protection cover for sterilisation",
		"for shaft LDT-1 or shaft Y-MD / incl. O-rings Viton and screw plug / Aluminium", "",
		"159", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52",
		"", "pd1062424829.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/X50-Schaft-0029-150.JPG",
		150, 112,
		"2368874", "Shaft Y-MD without generator for drive X50",
		"immersion depth E=380 mm", "",
		"1095", "0",
		"1", 1,
		"Stück", "46",
		"", "pd733118616.htm",
		"", 1,
		"X50YMD", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/X50-Schaft-0029-150.JPG",
		150, 112,
		"2371138", "Shaft Y-MD/S without generator for drive X50",
		"immersion depth E=620 mm with support bearing", "",
		"1265", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-711018362.htm",
		"", 1,
		"X50YMD", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/2372925.jpg",
		149, 112,
		"2372925", "Stirrer R-MD with rotor D=54 mm for drive X50",
		"immersion depth E=380 mm", "",
		"885", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-1891418027.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/2372925.jpg",
		149, 112,
		"2372926", "Stirrer R-MD/S with rotor D=54 mm for drive X50",
		"immersion depth E=620 mm", "",
		"890", "0",
		"1", 1,
		"Stück", "49",
		"", "pd117822091.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Y-FLT-1S-150.jpg",
		150, 112,
		"2371787", "Shaft Y-MD-SSW with welded Jetstream mixing generator",
		"D=64/78 mm, immersion depth E=380 mm", "",
		"2240", "0",
		"1", 1,
		"Stück", "49",
		"", "pd825935793.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Y-FLT-1S-150.jpg",
		150, 112,
		"2381855", "Shaft Y-FLT-1/S D=86/98 mm with Jetstream mixing generator ",
		"with foot bearing up to 6.000 rpm, immersion depth E=600 mm", "",
		"2158", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-598188851.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/2377948-1.jpg",
		149, 112,
		"2377948", "Shaft D-FLT-1/S with Dispermix generator on struts, dia. 86/98 mm, Sb = 4 mm",
		"with foot bearing, E = 600 mm, for 6.000 1/min", "",
		"2385", "0",
		"1", 1,
		"Stück", "49",
		"", "pd1841716137.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/PB061013.JPG",
		149, 112,
		"2377303", "Shaft D-FLT-1/S with Dispermix generator on struts, dia. 102/120 mm, Sb = 6 mm",
		"with foot bearing, E = 600 mm, for 3.000 1/min", "",
		"2539", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-1415238145.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/PB061013.JPG",
		149, 112,
		"2376134", "Shaft D-FLT-1/S with Dispermix stator on struts",
		"head 102/120 mm, Sb = 2 mm, with foot bearing, E = 600 mm, for 3.000 rpm", "",
		"2582", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-1595088827.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/PB060972.JPG",
		149, 112,
		"2381824", "Adapter AD1-50/10",
		"for adaptation of shafts of series 10 to the drive X50", "",
		"395", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-1631440432.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[81] = new Element(
		81, "",
		0, 0,
		"2375774", "Generator disperser, D=70 mm coarse, for shaft LDT and LDT-RG",
		"consisting of rotor Sb=8,0 mm and stator Sb=4,0 mm", "",
		"725", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1774078586.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[82] = new Element(
		82, "",
		0, 0,
		"2375789", "Generator disperser, D=70 mm coarse, with pre-cutting knifes, for shaft LDT and LDT-RG",
		"consisting of rotor slot width Sb=8,0 mm and stator Sb=4,0 mm", "",
		"1500", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1030522382.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[83] = new Element(
		83, "",
		0, 0,
		"2381612", "Generator Jetstream D=102/120 mm,  for shaft LDT",
		"consisting of rotor and stator", "",
		"605", "0",
		"1", 1,
		"Stück", "36",
		"", "pd884135575.htm",
		"", 1,
		"KopfLSM", "0",
		 0)
	
		Entry[84] = new Element(
		84, "",
		0, 0,
		"2381613", "Generator Jetstream D=114/135 mm for shaft LDT",
		"consisting of rotor and stator", "",
		"635", "0",
		"1", 1,
		"Stück", "36",
		"", "pd-1480975715.htm",
		"", 1,
		"KopfLSM", "0",
		 0)
	
		Entry[85] = new Element(
		85, "",
		0, 0,
		"2400550", "Generator Dispermix D=102/120 mm for shaft LDT",
		"consisting of Dispermix stator slot width Sb=4,0 mm and rotor", "",
		"895", "0",
		"1", 1,
		"Stück", "37",
		"", "pd1868584467.htm",
		"", 1,
		"Disperm50", "0",
		 0)
	
		Entry[86] = new Element(
		86, "",
		0, 0,
		"2381625", "Generator Dispermix D=102/120 mm for shaft LDT",
		"consisting of Dispermix stator slot width Sb=2,0 mm and rotor", "",
		"925", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-1612835207.htm",
		"", 1,
		"Disperm50", "0",
		 0)
	
		Entry[87] = new Element(
		87, "",
		0, 0,
		"2375748", "Generator Jetstream D=64/78 mm for shaft Y-MD and Y-MD-RG",
		"consisting of rotor and stator", "",
		"580", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30",
		"", "pd-1812174827.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD", "0",
		 0)
	
		Entry[88] = new Element(
		88, "",
		0, 0,
		"2375750", "Generator Jetstream D=84/98 mm for shaft Y-MD and Y-MD-RG",
		"consisting of stator and rotor", "",
		"580", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30",
		"", "pd-993378229.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/PB060978.JPG",
		149, 112,
		"2367135", "Rotor key",
		"for Jetstream mixing and Dispermix generators", "",
		"52", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32",
		"", "pd-737136714.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/PB060983.JPG",
		149, 112,
		"2367187", "Rotor key",
		"for dispersing generator D=50 mm", "",
		"52", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32",
		"", "pd-1732070188.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/PB060981.JPG",
		149, 112,
		"2367166", "Rotor key",
		"for dispersing generator D=70 mm", "",
		"52", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32",
		"", "pd1457485602.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Schaft-20DG.JPG",
		150, 112,
		"2368889", "Shaft 20D/G with dispersing generator coarse",
		"slot width Sb=3,0 mm / immersion depth 190 mm / mechanical seal Ceramic/Ceramic/FPM (Viton)", "",
		"435", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9",
		"", "pd1062666228.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Schaft-20DF.JPG",
		150, 112,
		"2368887", "Shaft 20D/F with dispersing generator fine",
		"slot width Sb=1,5 mm / immersion depth 190 mm / mechanical seal Ceramic/Ceramic/Viton", "",
		"445", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9",
		"", "pd-587909310.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Schaft-25DF.JPG",
		150, 112,
		"2368891", "Shaft 25D/F with dispersing generator fine",
		"slot width Sb=1,5 mm / immersion depth 190 mm / mechanical seal Ceramic/Ceramic/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9",
		"", "pd-510365842.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Schaft20Keramik.jpg",
		149, 112,
		"2370730", "Shaft 20D/25D without generator",
		"with mechanical seal Ceramic/Ceramic/FPM (Viton) / immersion depth 190 mm", "",
		"315", "0",
		"1", 1,
		"Stück", "12",
		"", "pd838916940.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/PB060952.JPG",
		149, 112,
		"2368866", "Inline dispersing unit Z42 without generator",
		"mechanical seal Chrom/Carbon/FPM (Viton), fast clamping device, hose connection, pumping impeller", "",
		"1595", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1063284545.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/PB060956.JPG",
		149, 112,
		"2371392", "Inline dispersing unit Z42 without generator",
		"mechanical seal Chrom/Carbon, thread connection DIN1851, clamping device", "",
		"1795", "0",
		"1", 1,
		"Stück", "25",
		"", "pd658412824.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Leitstrahl-104.jpg",
		113, 216,
		"Jetstream mixer", "Application Jetstream Mixing",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1069246583.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[99] = new Element(
		99, "assets/thumb/Dispermix-102.jpg",
		113, 216,
		"Dispermix", "Application Dispermix",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd90210173.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[100] = new Element(
		100, "assets/thumb/Chargen-Dispergierer-Multipurpose.jpg",
		113, 217,
		"Disperser", "Application Batch-Disperser",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1933261325.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[101] = new Element(
		101, "assets/thumb/X100-018.gif",
		100, 104,
		"Dissolver", "Application Dissolver",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1057257127.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[102] = new Element(
		102, "assets/thumb/Inline-Kopf-350.jpg",
		263, 181,
		"Inline", "Application Inline-Dispersing",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1380897583.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[103] = new Element(
		103, "assets/thumb/PB061035-1.JPG",
		100, 75,
		"Frequency converter", "Speed control with frequency converter",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd680380661.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[104] = new Element(
		104, "assets/thumb/CONVAR26.jpg",
		149, 112,
		"2375729", "Generator disperser 40 mm fine for shaft 40/T, 41/G and Z42 ",
		"consisting of rotor with 12 teeth and stator Sb=2,0 mm", "",
		"196", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23",
		"", "pd1591230187.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/CONVAR25.jpg",
		149, 112,
		"2375732", "Generator disperser 40 mm medium for shaft 40/T, 41/G and Z42",
		"consisting of rotor with 4 teeth and stator Sb=3,0 mm ", "",
		"260", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23",
		"", "pd-245855471.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/CONVAR21.jpg",
		149, 112,
		"2375733", "Generator disperser 40 mm coarse for shaft 40/T, 41/G and Z42",
		"consisting of rotor with 4 teeth and stator Sb=8,0 mm", "",
		"206", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23",
		"", "pd-1092908121.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/X10-25-500SW.JPG",
		149, 112,
		"2366880", "Drive X10/25, 230 V, 50/60 Hz, 500 W",
		"switch, overload protection, stepless speed adjustment 11.000 - 24.000 1/min", "",
		"498", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2040002919.htm",
		"", 1,
		"Disp25", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/X10-20-750SW.JPG",
		149, 112,
		"2402546", "Drive X10/20 E3, DZA, 230 V, 50/60 Hz, 1.050 W",
		"maximum speed 25.000 1/min, switch, overload protection speed transmitter", "",
		"795", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2",
		"", "pd-664364491.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/X10-20-750SW.JPG",
		149, 112,
		"2402547", "Drive X10/20 E3, DZA, 115 V, 50/60 Hz, 750 W",
		"maximum speed 25.000 1/min, switch, overload protection and impulse transmitter", "",
		"795", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2",
		"", "pd-1720667522.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/PB060989.JPG",
		149, 112,
		"2375589", "Generator dissolver D=20 mm",
		" for shaft 30D, including thread cover ring", "",
		"405", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1858592381.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/2375583.jpg",
		149, 112,
		"2375583", "Generator disperser 30 mm fine",
		"for shaft 30D, consisting of rotor with 10 teeth and stator slot width Sb=1,5 mm", "",
		"132", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1051050673.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/2375582.jpg",
		149, 112,
		"2375582", "Generator Dispermix 30 mm coarse",
		"for shaft 30D, consisting of rotor with 2 teeth and stator slot width Sb=3,0 mm", "",
		"132", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-812924907.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/PB060984.JPG",
		149, 112,
		"2366942", "Rotor key",
		"for jetstream mixing generator D=26 mm", "",
		"35", "0",
		"1", 1,
		"Stück", "14",
		"", "pd623486917.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/2375579-2.jpg",
		149, 112,
		"2375579", "Generator Jetstream D=30 mm",
		"for shaft 30D / consisting of stator and rotor", "",
		"475", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-179742645.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/P9081898.JPG",
		149, 112,
		"2375577", "Generator Jetstream D=45/55 mm",
		"for shaft 30D consisting of rotor and stator", "",
		"490", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-951532687.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/PB060959.JPG",
		149, 112,
		"2375522", "Generator Dispermix D=40/54 mm for shaft 30D",
		"consisting of Dispermix stator Sb= 4 mm, stator support, rotor and screws", "",
		"715", "0",
		"1", 1,
		"Stück", "11",
		"", "pd526095501.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/CONVAR22.jpg",
		149, 112,
		"2375735", "Generator disperser 40 mm coarse for shaft 40/T and 41/G with pre-cutting knifes",
		"consisting of rotor with 4 teeth and stator Sb=3,0 mm", "",
		"386", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23",
		"", "pd102890525.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/CONVAR19.jpg",
		149, 112,
		"2375736", "Generator disperser 40 mm medium for shaft 40/T and 41/G with pre-cutting knife",
		"consisting of rotor with 4 teeth and stator Sb=8,0 mm", "",
		"355", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23",
		"", "pd-1164700115.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41", "0",
		 0)
	
		Entry[119] = new Element(
		119, "",
		0, 0,
		"2375742", "Generator dissolver D= 50 mm for shafts 40/T and 41G",
		"including thread cover ring for the stator tube", "",
		"410", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24",
		"", "pd-509908215.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41", "0",
		 0)
	
		Entry[120] = new Element(
		120, "",
		0, 0,
		"2375777", "Generator dissolver D=50 mm for shaft LDT and LDT-RG",
		"including thread cover ring", "",
		"395", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39",
		"", "pd267013550.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[121] = new Element(
		121, "",
		0, 0,
		"2393147", "Generator dissolver D=70 mm for shaft LDT and LDT-1",
		"including thread cover ring", "",
		"408", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39",
		"", "pd-2067150947.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[122] = new Element(
		122, "",
		0, 0,
		"2375779", "Generator dissolver D=80 mm for shaft LDT and LDT-RG",
		"including thread cover ring", "",
		"408", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39",
		"", "pd-381303720.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[123] = new Element(
		123, "",
		0, 0,
		"2375780", "Generator dissolver D=100 mm for shaft LDT and LDT-RG",
		"including thread cover ring", "",
		"408", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39",
		"", "pd1243179599.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[124] = new Element(
		124, "",
		0, 0,
		"2375752", "Generator dissolver D=50 mm, for shafts Y-MD and Y-MD-RG",
		"including thread cover ring", "",
		"385", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48",
		"", "pd-1911686198.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD", "0",
		 0)
	
		Entry[125] = new Element(
		125, "",
		0, 0,
		"2393146", "Generator dissolver D=70 mm, for shafts Y-MD and Y-MD-R",
		"including thread cover ring", "",
		"405", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48",
		"", "pd566701832.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD", "0",
		 0)
	
		Entry[126] = new Element(
		126, "",
		0, 0,
		"2375754", "Generator dissolver D=80 mm, for shafts Y-MD and Y-MD-RG",
		"including thread cover ring", "",
		"405", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48,31,48",
		"", "pd1942855572.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD", "0",
		 0)
	
		Entry[127] = new Element(
		127, "",
		0, 0,
		"2375755", "Generator dissolver D=100 mm, for shafts Y-MD and Y-MD-RG",
		"including thread cover ring", "",
		"405", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48,31,48,31,48",
		"", "pd2048976571.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/2348637-1.JPG",
		149, 112,
		"2384356", "Air deviation device",
		"is used to divert the cooling air from the motor away from the vessel", "",
		"57", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1078147674.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/PB060983.JPG",
		149, 112,
		"2367059", "Rotor key",
		"for shaft 40T, 41G and inline dispersing unit Z42", "",
		"52", "0",
		"1", 1,
		"Stück", "32",
		"", "pd355594660.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/X10-Teile-0013.gif",
		150, 113,
		"2375580", "Generator Jetstream D=20/26 mm",
		"for shaft 10/T / consisting of rotor and stator", "",
		"475", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48,31,48,31,48,13,11",
		"", "pd526773150.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,Gener1025,393601", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Detail-10N-F.JPG",
		112, 84,
		"2375705", "Generator disperser fine for shaft 10/T (Price without shaft)",
		"consisting of rotor with 4 teeth and stator Sb=0,5 mm", "",
		"125", "0",
		"1", 1,
		"Stück", "13",
		"", "pd210334460.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Detail-10N-G.JPG",
		112, 84,
		"2375706", "Generator disperser coarse for shaft 10/T (Price without shaft)",
		"consisting of rotor with 2 teeth and stator Sb=2,0 mm", "",
		"105", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-1820327542.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Detail-10N-MG.JPG",
		112, 84,
		"2375707", "Generator disperser coarse for shaft 10/T (Price without shaft)",
		"consisting of rotor with 2 teeth, stator Sb= 2,0 mm and pre-cutting knifes", "",
		"149", "0",
		"1", 1,
		"Stück", "13",
		"", "pd212314824.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Detail-X20-DF.JPG",
		112, 84,
		"2375710", "Generator disperser fine for shaft 20/D (Price without shaft)",
		"consisting of rotor with 6 teeth and stator Sb=1,5 mm", "",
		"164", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-1494569418.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/2366909.JPG",
		149, 112,
		"2366909", "Rotor key",
		"for dispersing generators of shaft 20G/S", "",
		"13", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1812541416.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Schaft-25DF.JPG",
		150, 112,
		"2368890", "Shaft 25D/F with dispersing generator fine",
		"slot width Sb=1,5 mm / immersion depth 190 mm / mechanical seal Ceramic/Carbon/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1079098575.htm",
		"", 1,
		"3933", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Schaft-25DG.JPG",
		150, 112,
		"2368893", "Shaft 25D/G with dispersing generator coarse",
		"slot width Sb=3,0 mm / immersion depth 190 mm / mechanical seal Ceramic/Ceramic/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "7",
		"", "pd900447838.htm",
		"", 0,
		"3933", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Detail-X20-DG.JPG",
		112, 84,
		"2375711", "Generator disperser coarse for shaft 20/D (Price without shaft)",
		"consisting of rotor with 2 teeth and stator Sb= 3,0 mm", "",
		"148", "0",
		"1", 1,
		"Stück", "13",
		"", "pd298538836.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Detail-X25-DF.JPG",
		112, 84,
		"2375712", "Generator disperser fine for shaft 25/D (Price without shaft)",
		"consisting of rotor with 6 teeth and stator Sb=1,5 mm", "",
		"178", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1238556066.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Detail-X25-DG.JPG",
		112, 84,
		"2375713", "Generator disperser coarse for shaft 25/D (Price without shaft)",
		"consisting of rotor with 2 teeth and stator Sb=3,0 mm", "",
		"163", "0",
		"1", 1,
		"Stück", "13",
		"", "pd2048607392.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[141] = new Element(
		141, "",
		0, 0,
		"2382361", "Shaft Y-MD with Jetstream mixing generator for drive X40",
		"D=45 mm (barrel mixing head), immersion depth with generator E=380 mm", "",
		"1735", "0",
		"1", 1,
		"Stück", "29",
		"", "pd74202062.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[142] = new Element(
		142, "",
		0, 0,
		"2382362", "Shaft Y-MD with Jetstream mixing generator for barrel opening 2&quot; dia.45 mm",
		"(barrel mixing head), immersion depth 620 mm with support bearing", "",
		"1965", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48,31,48,31,48,13,11,29,49",
		"", "pd-31261012.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,Gener1025,393601,SchaftYMD,X50Generat", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/X50-Stativ-0001.gif",
		150, 113,
		"2385915", "Stand SSU1, H=1.000 mm, dynamic load max. 25 kg",
		"foot and column made of stainless steel, weight balanced lift 450 mm", "",
		"2095", "0",
		"1", 1,
		"Stück", "52",
		"", "pd348248859.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/PB061019.JPG",
		150, 200,
		"2385917", "Stand SSU2, H=1.500 mm, dynamic load max. 25 kg",
		"foot and column made of stainless steel, weight balanced lift 450 mm", "",
		"2295", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-29998399.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/Z66 mit blauem Hintergrund01.gif",
		153, 115,
		"Z66 Inline System", "Inline dispersing system Z66",
		"consisting of drive X50, inline chamber Z66, electronic control panel", "",
		"0", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-1399262642.htm",
		"", 1,
		"InlineZ66", "0",
		 0)
	
		Entry[146] = new Element(
		146, "",
		0, 0,
		"2387398", "Generator dissolver D=150 mm for shaft LDT and LDT-RG",
		"including thread cover ring", "",
		"520", "0",
		"1", 1,
		"Stück", "39",
		"", "pd1102510801.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[147] = new Element(
		147, "",
		0, 0,
		"2387397", "Generator dissolver D=150 mm, for shaft Y-MD and Y-MD/R",
		"including thread cover ring", "",
		"520", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48,31,48,31,48,13,11,29,49,48,31",
		"", "pd1102574642.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,Gener1025,393601,SchaftYMD,X50Generat,DissolYMD,DissMD", "0",
		 0)
	
		Entry[148] = new Element(
		148, "",
		0, 0,
		"2389019", "Generator dissolver D=30 mm for shaft 40T and 41G",
		"including thread cover ring", "",
		"415", "0",
		"1", 1,
		"Stück", "4,9,4,9,4,9,3,9,5,9,5,9,6,9,6,9,7,9,7,9,7,9,10,12,11,36,27,22,36,27,37,27,37,27,8,2,14,32,30,47,27,36,27,37,32,52,47,30,47,30,52,32,52,32,52,32,6,9,6,9,7,9,25,19,23,25,19,23,25,19,23,8,2,8,2,19,23,19,23,20,24,28,39,28,39,28,39,28,39,31,48,31,48,31,48,31,48,13,11,29,49,48,31,39,20,24",
		"", "pd-144798551.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,393602,Schaft,393601,KopfLSM,KopfLDT,Kopf41G,KopfLSM,KopfLDT,Disperm50,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,ZubX50,Zub40,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,DissMD,DissolYMD,Gener1025,393601,SchaftYMD,X50Generat,DissolYMD,DissMD,DissolvX50,Dis40,Dis41", "0",
		 0)
	
		Entry[149] = new Element(
		149, "",
		0, 0,
		"2389846", "Shaft LDT-RG without generator, with reduction gear for drive X40",
		"immersion depth E=400 mm, mechanical seal Ceramic/Carbon/EPDM, elastomeres EPDM", "",
		"1705", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1118323708.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/PB061018.JPG",
		149, 112,
		"2372693", "Pilot plant drive X50/10, 0,37/1.5 kW",
		"400 V, 50 Hz, 1.500/3.000 rpm, IP 55", "",
		"875", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1062586406.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/PB061018.JPG",
		149, 112,
		"2375005", "Pilot plant drive X50, 1.500 W1,5 kW",
		"3x400 V, 50 Hz, 3.000 rpm, IP 55", "",
		"816", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1409663684.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/PB061016.JPG",
		149, 112,
		"2375007", "Pilot plant drive X50/10 Ex, 1.5 kW",
		"400 V, 50 Hz, 3.000 rpm, IP 66, EEx de IIC T4", "",
		"1395", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1560475282.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/PB061018.JPG",
		149, 112,
		"2371389", "Pilot plant drive X50/10, external frequency converter, 1.500 W",
		"230/400 V, 50 Hz, 3.000 rpm, IP 55", "",
		"816", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1279342832.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/2377014-1.JPG",
		149, 112,
		"2377014", "Pilot plant drive X50S-P (pneumatic), 1.300 W",
		"R 1/2&quot;, 100 - 4.000 1/min, 6 bar", "",
		"1275", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1322771542.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/HG19-Ex-2.gif",
		240, 360,
		"SystemX50LSM", "Complete system",
		"Drive X50, shaft LDT-1, dispersing head and rotor key", "",
		"0", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-575459454.htm",
		"", 1,
		"X50", "0",
		 1)
	
		Entry[156] = new Element(
		156, "assets/thumb/2369600.jpg",
		150, 95,
		"2402534", "Drive X40/38 E3, 230 V, 50/60 Hz, 1.800 W",
		"stepless adjustable from 4.000-23.500 1/min (no load) with a built-in position wheel", "",
		"1120", "0",
		"1", 1,
		"Stück", "16",
		"", "pd944853016.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/2369600.jpg",
		150, 95,
		"2402531", "Drive X40/38 E3, 115 V, 60 Hz, 1.800 W",
		"stepless adjustable from 4.000-23.500 1/min (no load) with a built-in position wheel", "",
		"1120", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-1440214010.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/2366923-2.jpg",
		150, 112,
		"2366923", "Pneumatic drive X40/39P, 470 W at 6 bar",
		"maximum 12.000 1/min (no load), with integrated speed regulator", "",
		"1665", "0",
		"1", 1,
		"Stück", "16",
		"", "pd137654692.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/2379513-2.jpg",
		150, 112,
		"2366906", "Drive X40/37,230/400 V, 50 Hz, 550 W",
		"maximum 10.000 1/min (no load), with gearbox, switch and overload protection", "",
		"2065", "0",
		"1", 1,
		"Stück", "16",
		"", "pd295170892.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/2379513-2.jpg",
		150, 112,
		"2379513", "Drive X40/37, 3x380 V, 50 Hz, 550 W",
		"maximum 10.000 1/min (no load), with gearbox, switch and overload protection", "",
		"2065", "0",
		"1", 1,
		"Stück", "16",
		"", "pd498711130.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/P1126802Verlauf.jpg",
		150, 200,
		"X40-Stativ-LSM", "Complete system",
		"Drive X40, Stand, shaft and Jetstream mixing head", "",
		"0", "0",
		"1", 1,
		"Stück", "15",
		"", "pd960706477.htm",
		"", 1,
		"X40", "0",
		 3)
	
		Entry[162] = new Element(
		162, "assets/thumb/System-X10-25-06G-1.JPG",
		149, 112,
		"System X10-25-06", "Complete system 1 EK",
		"Drive X10/25, stand, cross clamp, shaft 6G", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1076424457.htm",
		"", 1,
		"X10-25", "0",
		 1)
	
		Entry[163] = new Element(
		163, "assets/thumb/System-X10-25-18F-1.JPG",
		149, 112,
		"Systen X10-25-18F", "Complete system 3 EK",
		"Drive X10/25, stand, cross clamp, shaft 18F", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1780848219.htm",
		"", 1,
		"X10-25", "0",
		 1)
	
		Entry[164] = new Element(
		164, "assets/thumb/System-X10-25-25G-DZM-1.JPG",
		149, 112,
		"System X10-25-DZM-25", "Complete system 5 EK",
		"Drive X10/25, stand, cross clamp, speed reading device, shaft 25G", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1265523199.htm",
		"", 1,
		"X10-25", "0",
		 1)
	
		Entry[165] = new Element(
		165, "",
		0, 0,
		"2390525", "Throttle valve (speed control valve) for pneumatic drive X50/10P",
		"with screw joint, aluminium", "",
		"98", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1121235241.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[166] = new Element(
		166, "",
		0, 0,
		"2390526", "Service unit (for pressurised air) for pneumatic drive X50/10P",
		"consisting of filter, pressure reducer, oiler, manometer", "",
		"295", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-1988001921.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/2368878-2.jpg",
		149, 112,
		"2368878", "Reduction gear RG1-40/40 fro drives X40",
		"for shafts with coupling for drives X40", "",
		"675", "0",
		"1", 1,
		"Stück", "32",
		"", "pd1153728338.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/X50-Antrieb-0003K.JPG",
		150, 115,
		"2395519", "Pilot plant drive X50/10, 2.200 W, 50/60 Hz with integrated frequency converter",
		"400 V (380-480 V), 50 Hz (50/60 Hz), 3.000 rpm, IP55", "",
		"1715", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1213865244.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[169] = new Element(
		169, "",
		0, 0,
		"2385937", "Shaft LDT-1-400 without Generator for drive X50",
		"Immersion depth E = 400 mm", "",
		"1105", "0",
		"1", 1,
		"Stück", "35",
		"Mechanical Seals;Ceramic/Carbon/EPDM@", "pd1267609485.htm",
		"", 1,
		"SchaftX50", "0",
		 0)
	
		Entry[170] = new Element(
		170, "",
		0, 0,
		"2387137", "Shaft LDT-1/S-600 without generator for drive X50",
		"Immersion depth E = 600 mm", "",
		"1105", "0",
		"1", 1,
		"Stück", "35",
		"Mechanical Seals;Ceramic/Carbon/EPDM@", "pd-424135549.htm",
		"", 1,
		"SchaftX50", "0",
		 0)
	
		Entry[171] = new Element(
		171, "",
		0, 0,
		"2394437", "Schaft LDT-1/S-800 without generator for drive X50",
		"Immersion depth E = 800 mm", "",
		"1550", "0",
		"1", 1,
		"Stück", "35",
		"Mechanical Seals;Ceramic/Carbon/FFKM (Kalrez)@", "pd1138023017.htm",
		"", 1,
		"SchaftX50", "0",
		 0)
	
		Entry[172] = new Element(
		172, "",
		0, 0,
		"2404551", "O-ring set FPM (Viton)",
		"for two parts Dispermix generators", "",
		"15", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1588740060.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[173] = new Element(
		173, "",
		0, 0,
		"2404552", "O-ring set FPM (Viton) FDA conform",
		"for two parts Dispermix generators", "",
		"105", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-36890262.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[174] = new Element(
		174, "",
		0, 0,
		"2404550", "O-ring set FFKM (Kalrez) ",
		"for two parts Dispermix generators", "",
		"625", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1703017048.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[175] = new Element(
		175, "",
		0, 0,
		"2404561", "O-ring set FFKM (Kalrez) FDA conform",
		"for two parts Dispermix generators", "",
		"625", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1625816042.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[176] = new Element(
		176, "",
		0, 0,
		"2404548", "O-ring set EPDM",
		"for two parts Dispermix generators", "",
		"25", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1347149772.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[177] = new Element(
		177, "",
		0, 0,
		"2404549", "O-ring set EPDM FDA conform",
		"for two parts Dispermix generators", "",
		"50", "0",
		"1", 1,
		"Stück", "45",
		"", "pd307253634.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[178] = new Element(
		178, "",
		0, 0,
		"2409702", "O-ring set FPM (Viton)",
		"for all other X50 generators for shaft LDT-1H and LDT-1H/S", "",
		"5", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1401510784.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[179] = new Element(
		179, "",
		0, 0,
		"2407867", "Shaft LDT-1H-600 in hygienic execution without generator for drive X50",
		"Immersion depth E = 600 mm", "",
		"1720", "0",
		"1", 1,
		"Stück", "40",
		"Mechanical seal capsulated;Ceramic/Carbon/EPDM@", "pd1898150923.htm",
		"", 1,
		"LDT-H", "0",
		 0)
	
		Entry[180] = new Element(
		180, "",
		0, 0,
		"2400752", "Generator Jetstream D=102 mm for shaft LDT1-H and LDT-1H/S ",
		"consisting of rotor and stator, rotor blade slanted 35° / L2 Ra &lt; 0,8 µm", "",
		"895", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-761083809.htm",
		"", 1,
		"Y-H", "0",
		 3)
	
		Entry[181] = new Element(
		181, "",
		0, 0,
		"2400751", "Generator Jetstream D=45 mm for shaft LDT1-H and LDT-1H/S ",
		"consisting of rotor and stator, rotor blade slanted 35° / L2 Ra &lt; 0,8 µm", "",
		"790", "0",
		"1", 1,
		"Stück", "41",
		"", "pd287408549.htm",
		"", 1,
		"Y-H", "0",
		 3)
	
		Entry[182] = new Element(
		182, "",
		0, 0,
		"2400757", "Generator Jetstream for D=84 mm shaft LDT1-H and LDT-1H/S ",
		"consisting of rotor and stator, rotor blade slanted 35° / L2 Ra &lt; 0,8 µm", "",
		"825", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-696699813.htm",
		"", 1,
		"Y-H", "0",
		 3)
	
		Entry[183] = new Element(
		183, "",
		0, 0,
		"2400754", "Generator Dispermix D=102 mmfor shaft LDT-1H and LDT-1H/S",
		"consisting of Dispermix stator Sb=4 mm and Rotor with blade slanted 35°, L2 Ra &lt; 0,8 µm", "",
		"1165", "0",
		"1", 1,
		"Stück", "42",
		"", "pd322584065.htm",
		"", 1,
		"D-H", "0",
		 3)
	
		Entry[184] = new Element(
		184, "",
		0, 0,
		"2400756", "Generator Dispermix D=86 mm for shaft LDT-1H and LDT-1H/S",
		"consisting of Dispermix stator Sb=2 mm and rotor with blade slanted 35°, L2 Ra &lt; 0,8 µm", "",
		"995", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-1682819049.htm",
		"", 1,
		"D-H", "0",
		 3)
	
		Entry[185] = new Element(
		185, "",
		0, 0,
		"2400755", "Generator Dispermix D=86 mm for shaft LDT-1H and LDT-1H/S",
		"consisting of Dispermix stator Sb=4 mm and rotor with blade slanted 35°, L2 Ra &lt; 0,8 µm", "",
		"1055", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-2019665891.htm",
		"", 1,
		"D-H", "0",
		 3)
	
		Entry[186] = new Element(
		186, "",
		0, 0,
		"2404526", "Generator disperser for shaft LDT-1H and LDT-1H/S / diameter 70 mm",
		"consisting of rotor Sb = 4 mm and stator Sb = 2 mm, 1.4404, L2 Ra &lt; 0,8 µm", "",
		"1245", "0",
		"1", 1,
		"Stück", "43",
		"", "pd49097721.htm",
		"", 1,
		"X-H", "0",
		 1)
	
		Entry[187] = new Element(
		187, "",
		0, 0,
		"2409515", "Generator disperser for shaft LDT-1H and LDT-1H/S / diameter 70 mm coarse",
		"consisting of rotor Sb = 8 mm and stator Sb = 4 mm, 1.4404, L2 Ra &lt; 0,8 µm", "",
		"1095", "0",
		"1", 1,
		"Stück", "43",
		"", "pd720352975.htm",
		"", 1,
		"X-H", "0",
		 1)
	
		Entry[188] = new Element(
		188, "",
		0, 0,
		"2405780", "Generator dissolver D=100 mm",
		"for shaft LDT-1H and LDT-1H/S", "",
		"595", "0",
		"1", 1,
		"Stück", "44",
		"", "pd22271381.htm",
		"", 1,
		"Disc-H", "0",
		 0)
	
		Entry[189] = new Element(
		189, "",
		0, 0,
		"2409703", "O-ring set FPM (Viton) FDA conform",
		"for all other X50 generators for shaft LDT-1H and LDT-1H/S", "",
		"25", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-311072309.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[190] = new Element(
		190, "",
		0, 0,
		"2409701", "O-ring set FFKM (Kalrez)",
		"for all other X50 generators for shaft LDT-1H and LDT-1H/S", "",
		"170", "0",
		"1", 1,
		"Stück", "45",
		"", "pd686371057.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[191] = new Element(
		191, "",
		0, 0,
		"2409704", "O-ring set FFKM (Kalrez) FDA conform",
		"for all other X50 generators for shaft LDT-1H and LDT-1H/S", "",
		"170", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1578640519.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[192] = new Element(
		192, "",
		0, 0,
		"2409699", "O-ring set EPDM",
		"for all other X50 generators for shaft LDT-1H and LDT-1H/S", "",
		"5", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1237965325.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[193] = new Element(
		193, "",
		0, 0,
		"2409700", "O-ring set EPDM FDA conform",
		"for all other X50 generators for shaft LDT-1H and LDT-1H/S", "",
		"25", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-181017853.htm",
		"", 1,
		"O-H", "0",
		 0)
	
		Entry[194] = new Element(
		194, "",
		0, 0,
		"2407857", "Shaft LDT-1H-400 in hygienic execution without generator for drive X50",
		"Immersion depth E = 400 mm", "",
		"1720", "0",
		"1", 1,
		"Stück", "40",
		"Mechanical seal capsulated;Ceramic/Carbon/EPDM@", "pd-1268582403.htm",
		"", 1,
		"LDT-H", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/Spannhalter-1007-150.gif",
		150, 159,
		"2350973", "Chain clamping device / 0 - 160 mm ",
		"to secure mixing beakers to a stand using KL1 and stand PS1", "",
		"55", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1268900089.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[196] = new Element(
		196, "",
		0, 0,
		"2394744", "Control panel with frequency converte, X50/10, 380 - 480 V, non-Ex, 1,5 kW",
		"housing stainless steel, input 380 - 480 V, 50 - 60 Hz AC", "",
		"3055", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-1301720439.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[197] = new Element(
		197, "",
		0, 0,
		"2394743", "Control panel with frequency converter, X50/10, 380 - 480 V, non-Ex, 1,5 kW",
		"housing painted steel", "",
		"2755", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-1288013917.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[198] = new Element(
		198, "",
		0, 0,
		"2394198", "Control panel with frequency converter for Z66, 2,2 kW or 3,0 kW, 380 - 460 V, non-Ex 4,0 kW",
		"Frequency converter module, auxilliary voltage 24 V DC, housing painted steel", "",
		"3995", "0",
		"1", 1,
		"Stück", "51",
		"", "pd541590957.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[199] = new Element(
		199, "",
		0, 0,
		"2394195", "Control panel with frequency converter for Z66, 2,2 kW or 3,0 kW, 380 - 460 V, non-Ex 4,0 kW",
		"Frequency converter module, auxilliary voltage 24 V DC, housing stainless steel, input 380 - 460 V, 50 - 60 Hz", "",
		"4380", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-2145923289.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[200] = new Element(
		200, "",
		0, 0,
		"2393761", "Control panel with frequency converter, X50/10, 200 - 240 V, Ex, 1,5 kW with on site conrol pad",
		"switchboard and on site control pad stainless steel, parameter setting for 87 Hz diagram", "",
		"3400", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-255196527.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[201] = new Element(
		201, "",
		0, 0,
		"2393760", "Control panel with frequency converter, X50/10, 200 - 240 V, Ex, 1,5 kW with on site control pad",
		"switchboard painted steel, on site control pad stainless steel, parameter settings for 87 Hz diagram", "",
		"3095", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-1172780437.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[202] = new Element(
		202, "",
		0, 0,
		"2393759", "Control panel with frequency converter, X50/10, 380 - 480 V, Ex, 1,5 kW, with on site control pad",
		"switchboard and on site control pad stainless steel, parameter setting for 87 Hz diagram", "",
		"3510", "0",
		"1", 1,
		"Stück", "51",
		"", "pd28765493.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[203] = new Element(
		203, "",
		0, 0,
		"2393758", "Control panel with frequency converter, X50/10, 380 - 480 V, Ex, 1,5 kW, with on site control pad",
		"switchboard painted steel, on site control pad stainless steel, settings for 87 Hz diagram", "",
		"3200", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-826970769.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[204] = new Element(
		204, "",
		0, 0,
		"2366895", "Pilot plant drive X40/36, Ex, 230 V, 50 Hz, 700 W, max. 10.000 1/min",
		"encapsulated, protection class EEx deIIC T6 with switch and overload protection, low voltage trigger", "",
		"1685", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1369392577.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[205] = new Element(
		205, "",
		0, 0,
		"2367846", "Generator dissolver D=50 mm, for shafts LDT-RG; LDT-1; Y-MD-RG; Y-MD",
		"including thread cover ring", "",
		"289", "0",
		"1", 1,
		"Stück", "39",
		"", "pd435522179.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[206] = new Element(
		206, "",
		0, 0,
		"2367847", "Generator dissolver D=80 mm, for shafts LDT-RG; LDT-1; Y-MD-RG; Y-MD",
		"including thread cover ring", "",
		"299", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-253240201.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[207] = new Element(
		207, "",
		0, 0,
		"2367848", "Generator dissolver D=100 mm",
		"for shafts Y-MD, Y-MDS, LDT, LDTS, LDT-1, LDT-1S, including thread cover ring", "",
		"304", "0",
		"1", 1,
		"Stück", "48",
		"", "pd-1641128615.htm",
		"", 1,
		"DissolYMD", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/Schaft-X30-1.JPG",
		149, 112,
		"2375093", "Shaft 30D without generator, mechanical seal Ceramic/Silicium carbide/FPM (Viton)",
		"stainless steel ball bearing, max. 6 bar / 50&amp;% vacuum, immersion depth E=190 mm", "",
		"679", "0",
		"1", 1,
		"Stück", "12",
		"", "pd368474451.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/PB060989.JPG",
		115, 86,
		"2375584", "Generator dissolver D=20 mm for shaft 30D",
		"without cover for shaft thread", "",
		"342", "0",
		"1", 1,
		"Stück", "13",
		"", "pd415624121.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/P9081898.JPG",
		149, 112,
		"2375737", "Generator Jetstream mixer D=64 mm for shaft 40T",
		"consisting of stator and rotor", "",
		"575", "0",
		"1", 1,
		"Stück", "18",
		"", "pd678826325.htm",
		"", 1,
		"Kopf40T", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/X50-Teile-60963_2.JPG",
		150, 113,
		"2375738", "Generator Jetstream D=64/78 mm for shaft 41G",
		"consisting of rotor and stator", "",
		"600", "0",
		"1", 1,
		"Stück", "22",
		"", "pd966331275.htm",
		"", 1,
		"Kopf41G", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/X10-Teile-0007_2.jpg",
		150, 113,
		"2381119", "Inline dispersing chamber Z22 up to 7 bar",
		"connections 20x26 mm / O-rings FFKM (Kalrez)", "",
		"795", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1258775111.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[213] = new Element(
		213, "",
		0, 0,
		"2381783", "Pilot plant drive X40/36 Ex 110/115 V / 60 Hz / 650 W / 10.000 rpm",
		"encapsulated, protection class EEx deIIC T6, with ATEX approval", "",
		"1815", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1313492429.htm",
		"", 1,
		"ComplX40", "0",
		 0)
	
		Entry[214] = new Element(
		214, "",
		0, 0,
		"2382981", "Control panel LOP (Local Operation Pad)",
		"for frequency converter incl. power supply cable and wall holder", "",
		"175", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-1480426301.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[215] = new Element(
		215, "",
		0, 0,
		"2384900", "Control panel with frequency converter for Z66 with drive X50 / 230 V / nin-Ex / 1,5 kW",
		"auxilliary voltage 24 V DC / PLC / housing stainless steel, input 230 V 50-60 Hz AC", "",
		"2895", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-1857987415.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[216] = new Element(
		216, "",
		0, 0,
		"2384909", "Control panel fpr frequency converter for drive X50 / 380-460 V, non-Ex, 1,5 kW",
		"auxilliary voltage 24 V DC, PLC, housing stainless steel, input 380 - 460 V AC", "",
		"3135", "0",
		"1", 1,
		"Stück", "51",
		"", "pd2088507135.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[217] = new Element(
		217, "",
		0, 0,
		"2389150", "Shaft 41G/S without generator, pressure tight up to 6 bar, vacuum tight",
		"mechanical seal Tungsten/Tungsten carbide/FFKM, immersion depth with generator max. E= 600 mm", "",
		"1395", "0",
		"1", 1,
		"Stück", "21",
		"", "pd-1235636997.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[218] = new Element(
		218, "",
		0, 0,
		"2389282", "Generator dissolver D=30 mm for shaft LDT and LDT-1",
		"including thread cover ring, L1 Ra&lt;1,2 µm", "",
		"405", "0",
		"1", 1,
		"Stück", "39",
		"", "pd1778247585.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/PB061018.JPG",
		149, 112,
		"2389584", "Pilot plant drive Z66, 3000S Fuext, 230/400 V, 50 Hz, 3.000 rpm",
		"2x3 thermistors, in combination with a frequency conveter speed adjustable 0 - 12.000 rpm", "",
		"1345", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-810517833.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/PB061018.JPG",
		149, 112,
		"2389590", "Pilot plant drive Z66, 2.200S Fuext, 2,2 kW, 230/400 V, 50 Hz, 3.000 rpm",
		"2x3 thermistors, in combinaion with a frequency converter speed adjustable 0 - 12.000 rpm", "",
		"1195", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1604115389.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/PB061018.JPG",
		149, 112,
		"2389595", "Pilot plant drive Z66 Ex, 3.000S Fuext, 3,0 kW, 230/400 V, 50 Hz, 3.000 rpm",
		"EEx deIIC T4, ATEX II2G with 3 thermistors, with frequency converter speed adjustable 0 - 12.000 rpm", "",
		"2320", "0",
		"1", 1,
		"Stück", "34",
		"", "pd862034542.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[222] = new Element(
		222, "",
		0, 0,
		"2393334", "Generator dissolver D=125 mm for shaft LDT and LDT-1",
		"including thread cover ring", "",
		"470", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-1065255885.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[223] = new Element(
		223, "",
		0, 0,
		"2393411", "Shaft R-MD/S-V without generator for drive X50",
		"immersion depth with generator max. E=546 mm", "",
		"1045", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-2108151399.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[224] = new Element(
		224, "",
		0, 0,
		"2385614", "Shaft LDT-1H/S-1000 without generator for drive X50, mechanical seal Ceramic/Carbon, encapsulated",
		"Elastomeres FPM (Viton), immersion depth with generator max. E=1.000 mm, max. permissible speed 6.000 rpm", "",
		"3195", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-652086971.htm",
		"", 1,
		"LDT-H", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/Schaft-X30-1.JPG",
		149, 112,
		"2375773", "Shaft 30D without generator, mechanical seal Ceramic/Carbon/FFKM (Kalrez)",
		"stainless steel ball bearing, max. 6 bar / 50% vacuum, immersion depth max. E=190 mm", "",
		"495", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1731942223.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/PB060978.JPG",
		149, 112,
		"2366987", "Rotor key",
		"for Generator Jetstream mixer D=45/55 mm", "",
		"55", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1098545705.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[227] = new Element(
		227, "",
		0, 0,
		"2367239", "Cross clamp SKL 1.1",
		"for the attachment of the beaker clampt to the stands U1/U2 and GU1/GU2", "",
		"164", "0",
		"1", 1,
		"Stück", "32",
		"", "pd316759005.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[228] = new Element(
		228, "",
		0, 0,
		"2394746", "Control panel with frequency converter, X50/10, 200 - 240 V, non-Ex, 1,5 kW",
		"housing stainless steel, input 200 - 240 V, 50/60 Hz AC", "",
		"2870", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-2071722715.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[229] = new Element(
		229, "",
		0, 0,
		"2394745", "Control panel with frequency converter, X50/10, 200 - 240 V, non-Ex, 1,5 kW",
		"housing painted steel, input 200 - 240 V, 50/60 Hz AC", "",
		"2565", "0",
		"1", 1,
		"Stück", "51",
		"", "pd576749535.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[230] = new Element(
		230, "",
		0, 0,
		"2394791", "Shaft LDT-RG without generator with reduction gear for drive X40",
		"mechanical seal SiC/SiC/EPDM, immersion depth with generator max. E=400 mm", "",
		"2365", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1270703067.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[231] = new Element(
		231, "",
		0, 0,
		"2396368", "Shaft 41G without generator, pressure tight up to 6 bar, vacuum tight",
		"mechanical seal Ceramic/Carbon/Viton, immersion depth with generator max. E=320 mm", "",
		"860", "0",
		"1", 1,
		"Stück", "21",
		"", "pd-678142057.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[232] = new Element(
		232, "",
		0, 0,
		"2395296", "Shaft 41G/S without generator, pressure tight up to 6 bar, vacuum tight",
		"mechanical seal Tungsten/Carbon/EPDM, immersion depth max. E=600 mm", "",
		"995", "0",
		"1", 1,
		"Stück", "21",
		"", "pd1248328065.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[233] = new Element(
		233, "",
		0, 0,
		"2396735", "Schaft 41G without generator, pressure tight up to 6 bar, vacuum tight",
		"mechanical seal Ceramic/Carbon/Viton, immersion depth with generator max: E=320 mm", "",
		"775", "0",
		"1", 1,
		"Stück", "21",
		"", "pd-142947427.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[234] = new Element(
		234, "",
		0, 0,
		"2397201", "Inline disperser Z42 with FDA approval",
		"mechanical seal Tunsten/Carbon/FPM (Viton), clamp assembly, flange DIN2633 PN16 DN25", "",
		"1995", "0",
		"1", 1,
		"Stück", "25",
		"", "pd380923667.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/X50-Gesamt-0007.gif",
		150, 113,
		"2398401", "Shaft D-FLT-1/S, Dispermix Stator on struts for drive X50, m/M = 86/98 mm, Sb=2 mm",
		"Elastomeres FPM (Viton) with foot bearing, immersion depth with generator max. E=600 mm", "",
		"2685", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-778840199.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[236] = new Element(
		236, "",
		0, 0,
		"2398461", "Generator dissolver D=125 mm",
		"for shafts Y-MD and Y-MD/R, including thread cover ring", "",
		"455", "0",
		"1", 1,
		"Stück", "48",
		"", "pd1085558351.htm",
		"", 1,
		"DissolYMD", "0",
		 0)
	
		Entry[237] = new Element(
		237, "",
		0, 0,
		"2398759", "Shaft Y-MD without generator, Ellastomeres FPM (Viton) for drive X40",
		"immersion depth with generator max. E=380 mm, without reduction gear", "",
		"1165", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1234712853.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/PB061018.JPG",
		149, 112,
		"2398810", "Pilot plant drive Z66 Ex, 2,200S Fuext, 2,2 kW, 230/400 V, 50 Hz, 3.000 rpm",
		"EEx de IIC T4 ATEX II2G, 3 built-in thermistores, speed adjustable 0 - 12.000 rpm", "",
		"1495", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-303138485.htm",
		"", 1,
		"ComplX50", "0",
		 0)
	
		Entry[239] = new Element(
		239, "",
		0, 0,
		"2399204", "Schaft LDT-RG-400 without generator with reduction gear",
		"mechanical seal SiC/SiC/FPM (Viton) FDA conform, immersion depth with generator max. E=400 mm", "",
		"2365", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1977011313.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[240] = new Element(
		240, "",
		0, 0,
		"2399676", "Shaft LDT-1H/S-1000 without generator for drive X50, mechanical seal SiC/SiC/FFKM, encapsulated",
		"Elastomeres FFKM, immersion depth with generaor max. E=1.000 mm, max. permissible speed 6.000 rpm", "",
		"3875", "0",
		"1", 1,
		"Stück", "40",
		"", "pd155003911.htm",
		"", 1,
		"LDT-H", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/X40-Stativ-0005.gif",
		150, 200,
		"2400428", "Lift GU1, column length H=1.000 mm, gas spring loaded",
		"leg coated with PVC", "",
		"795", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-903598707.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/X40-Stativ-0005.gif",
		150, 200,
		"2400429", "Lift GU2, column length H=1.500 mm, gas spring loaded",
		"leg coated with PVC", "",
		"895", "0",
		"1", 1,
		"Stück", "32",
		"", "pd896950915.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[243] = new Element(
		243, "",
		0, 0,
		"2400499", "Control panel MIV-A 1,5/2,2 kW",
		"switchboard stainless steel, prepared for the installation to the HG19 moveable lift", "",
		"1995", "0",
		"1", 1,
		"Stück", "51",
		"", "pd1773582441.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[244] = new Element(
		244, "",
		0, 0,
		"2400833", "Generator Dispermix D=87 mm, High Shear Version for shaft LDT and LDT-1",
		"consisting of Stator Sb=4 mm, stator carrier, rotor, screws, L1 Ra&lt; 1,2 µm", "",
		"1665", "0",
		"1", 1,
		"Stück", "37",
		"", "pd1655167167.htm",
		"", 1,
		"Disperm50", "0",
		 0)
	
		Entry[245] = new Element(
		245, "",
		0, 0,
		"2401741", "Generator Dispermix D=87 mm for shaft LDT-1H and LDT-1H/S, High Shear Version",
		"consisting of Stator Sb=2 mm, stator carrier, rotor, screws and O-ring sealing, L2 Ra &lt; 0,8 µm", "",
		"2335", "0",
		"1", 1,
		"Stück", "42",
		"", "pd784500997.htm",
		"", 1,
		"D-H", "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();
			};
		};
