	// 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="114" height="14" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Preis vorher:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Jetzt nur noch:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/Schaft-10G.JPG",
		150, 112,
		"2366929", "Schaft 10/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=2,0 mm / Eintauchtiefe E=150 mm / Buchsenlager (PTFE)", "",
		"295", "0",
		"1", 1,
		"Stück", "5,10",
		"", "pd-779781104.htm",
		"", 1,
		"3910,Disp750", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Schaft-10MG.JPG",
		150, 112,
		"2369250", "Schaft 10/MG mit Messer-Dispergier-Generator grob",
		"Schlitzbreite Sb=2,0 mm / mit Vorschneidmesser / Eintauchtiefe 155 mm / Buchsenlager (PTFE)", "",
		"340", "0",
		"1", 1,
		"Stück", "5,10,5,10",
		"", "pd838926526.htm",
		"", 1,
		"3910,Disp750,3910,Disp750", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Schaft-10F.JPG",
		150, 112,
		"2366931", "Schaft 10/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=0,5 mm / Eintauchtiefe E=150 mm / Buchsenlager (PTFE)", "",
		"315", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10",
		"", "pd1911229724.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Schaft-06G.JPG",
		150, 112,
		"2366925", "Schaft 6/G mit Dispergier-Generator (Mikroschaft)",
		"Schlitzbreite Sb=0,5 mm / Eintauchtiefe E=45 mm / Buchsenlager (PTFE)", "",
		"299", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10",
		"", "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", "Schaft 18/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=3,0 mm / Eintauchtiefe E=200 mm / Buchsenlager (PTFE)", "",
		"312", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10",
		"", "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", "Schaft 18/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=1,5 mm / Eintauchtiefe E=200 mm / Buchsenlager (PTFE)", "",
		"339", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10",
		"", "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", "Schaft 20D/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=3,0 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Kohle/FPM (Viton)", "",
		"425", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10",
		"", "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", "Schaft 20D/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=1,5 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Kohle/FPM (Viton)", "",
		"425", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10",
		"", "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", "Schaft 25/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=3,0 mm / Eintauchtiefe E=200 mm / Buchsenlager (PTFE)", "",
		"370", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10",
		"", "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", "Schaft 25/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=1,5 mm / Eintauchtiefe E=200 mm / Buchsenlager (PTFE)", "",
		"385", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10",
		"", "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", "Schaft 25D/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=3,0 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Kohle/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10",
		"", "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/2366954.jpg",
		150, 112,
		"2369654", "Steckschlüssel",
		"für Schäfte 6/G und Schaft 10T", "",
		"14", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1062406150.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/2370734.jpg",
		149, 112,
		"2370734", "Schaft 10/Y mit Leitstrahlmisch-Generator D=26 mm",
		"Eintauchtiefe E=150 mm / Folienlager PTFE/Glasfaser", "",
		"705", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1283208155.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/X50-Teile-60962.gif",
		150, 113,
		"2375769", "Generator Leitstrahlmischer D=64/78 mm für Schäfte LDT und LDT-RG",
		"bestehend aus Rotor und Stator", "",
		"545", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28",
		"", "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,KopfLSM,KopfLDT", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/X50-Teile-60963.gif",
		150, 113,
		"2381609", "Generator Leitstrahlmischer D=84/98 mm für Schäfte LDT und LDT-RG",
		"bestehend aus Rotor und Stator", "",
		"535", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT", "0",
		 0)
	
		Entry[15] = new Element(
		15, "",
		0, 0,
		"2381616", "Generator Dispermix D=86/98 mm für Schäfte LDT und LDT-RG",
		"bestehend aus Rotor und Stator, Schlitzbreite Sb=2,0 mm", "",
		"735", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/X50-Teile-60979.gif",
		150, 113,
		"2375783", "Generator Dispergierer D=70 mm offen, fein, für Schaft LDT und LDT-RG",
		"bestehend aus Rotor Schlitzbreite Sb = 4,0 mm und Stator Schlitzbreite Sb=2,0 mm", "",
		"895", "0",
		"1", 1,
		"Stück", "39",
		"", "pd483506538.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/X50-Teile-60975.gif",
		150, 113,
		"2375786", "Generator Dispergierer D=70 mm offen, grob, für Schaft LDT und LDT-RG",
		"bestehend aus Rotor Schlitzbreite Sb = 8,0 mm und Stator Schlitzbreite Sb=4,0 mm", "",
		"895", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-842145828.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/X10-20-PSW.JPG",
		149, 112,
		"2366868", "Laborantrieb pneumatisch X10/25 P, 300 W",
		"Drehzahldrosselventil zur stufenlosen Drehzahlregelung", "",
		"1450", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Stativ-X10-1.JPG",
		150, 196,
		"2372841", "Plattenstativ PS1",
		"Säule Höhe 700 mm", "",
		"128", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-110038585.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Klemme-X10.JPG",
		150, 112,
		"2369601", "Stativklemme KL 1 für Antrieb X10",
		"zur Befestigung am Stativ PS1", "",
		"23", "0",
		"1", 1,
		"Stück", "15",
		"", "pd748448077.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/DZM-X10.JPG",
		150, 112,
		"2383577", "Digitale Drehzahlanzeige DA1 mit Aufnahme passend für Antrieb X10/20 und X10/25",
		"bestehend aus: digitaler Anzeige, Sensor, Batterien und 1 m Spiral-Anschlußkabel", "",
		"450", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-991951805.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/2366963-2.jpg",
		149, 112,
		"2366963", "Inline Dispergierkammer Z22 bis 7 bar",
		"Anschlüsse 20x26 mm, O-Ringe Viton, für Schäfte 20D", "",
		"590", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1733885125.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/PB060972.JPG",
		149, 112,
		"2366991", "Adapter AD1-40/10 aus rostfreiem Stahl",
		"zur Kopplung von Schäften passend zu den Antrieben X10 an die Antriebe X40", "",
		"460", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Sterilhuelse.jpg",
		149, 112,
		"2367853", "Abdeckkappe zur Sterilisation für Schäfte X10/20",
		"inklusive O-Ring Viton und Verschlußschraube, Aluminium", "",
		"149", "0",
		"1", 1,
		"Stück", "15",
		"", "pd170876941.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Detail-X10-2.jpg",
		149, 112,
		"2366930", "Schaft 10T ohne Generator",
		"Eintauchtiefe E=150 mm / Folienlager PTFE/Glasfaser", "",
		"200", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1857650016.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/2370729-1.JPG",
		149, 112,
		"2370729", "Schaft 20D/25D ohne Generator",
		"Gleitringdichtung Keramik/Kohle/FPM (Viton) / Eintauchtiefe max. E=190 mm", "",
		"315", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-339729778.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/2365227.jpg",
		150, 112,
		"2365227", "Rotorschlüssel",
		"für Schaft 6/G", "",
		"13", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-1873076697.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/2366908.jpg",
		150, 112,
		"2366908", "Rotorschlüssel",
		"für Schäfte 10G / 10MG / 10F", "",
		"16", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-971076440.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/2366912.jpg",
		150, 112,
		"2366912", "Rotorschlüssel",
		"für Schäfte X18 und X25", "",
		"16", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1027074403.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/2366915.jpg",
		150, 112,
		"2366914", "Steckschlüssel",
		"für Schäfte X18 und X25", "",
		"8", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1776502428.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/2366913.jpg",
		150, 112,
		"2366913", "Rotorschlüssel",
		"für Schäfte X20 und X30", "",
		"16", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-1581791003.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/2366915.jpg",
		150, 112,
		"2366915", "Steckschlüssel",
		"für Schäfte X20, X25 und X30", "",
		"25", "0",
		"1", 1,
		"Stück", "15",
		"", "pd161035478.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/PB061002.JPG",
		149, 112,
		"2368894", "Schaft 40T ohne Generator",
		"Eintauchtiefe E=300 mm, Folienlager Teflon, mit Kupplung für Antrieb X40/38", "",
		"710", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1643069326.htm",
		"", 1,
		"Schft40T", "0",
		 0)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"2367073", "Schaft 41G ohne Generator",
		"Eintauchtiefe E = 320 mm, Gleitringdichtung Chromguss/Kohle/FPM (Viton)", "",
		"795", "0",
		"1", 1,
		"Stück", "22",
		"Gleitringdichtung;Chromguß-Kohle-FPM@", "pd1020077040.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"2369806", "Schaft 41G/S ohne Generator",
		"Eintauchtiefe E = 600 mm, Gleitringdichtung Chromguss/Kohe/Viton", "",
		"995", "0",
		"1", 1,
		"Stück", "22",
		"Gleitringdichtung;Chromguß-Kohle-FPM@", "pd-1269042436.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/DZM-X10.JPG",
		150, 112,
		"2383579", "Digitale Drehzahlanzeige DA2 mit Aufnahme für Antrieb X40/38",
		"bestehend aus: digitaler Anzeige, Sensor, Batterien und 1 m Spiral-Anschlußkabel", "",
		"461", "0",
		"1", 1,
		"Stück", "33",
		"", "pd409851732.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/P9081900.JPG",
		150, 200,
		"2367234", "U-Stativ U1, Säulenlänge 1.000 mm",
		"Säule Edelstahl, Standfuss kunststoffbeschichtet", "",
		"310", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1798921634.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/PB061037.JPG",
		150, 200,
		"2376842", "U-Stativ U2, Säulenlänge 1.500 mm",
		"Säule Edelstahl, Standfuss kunststoffbeschichtet", "",
		"360", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1008352096.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/P9081901.JPG",
		150, 196,
		"2400428", "Hubstativ GU1, Säulenlänge H=1.000 mm mit Gasfeder",
		"Standfuss kunststoffbeschichtet", "",
		"795", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1120224306.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/P9081901.JPG",
		150, 196,
		"2400429", "Hubstativ GU2, Säulenlänge H=1.500 mm mit Gasfeder",
		"Standfuss kunststoffbeschichtet", "",
		"895", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1301642924.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/2367238.jpg",
		149, 112,
		"2367238", "Stativklemme SKL1",
		"zur Befestigung der Antrieb X40 und X50 an den Stativen U1 / U2 / GU1 / GU2", "",
		"82", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-778849094.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/2375739-1.jpg",
		149, 112,
		"2375739", "Generator Leitstrahlmischer (Fassmischkopf) D=40 mm für Schaft 40T",
		"bestehend aus Stator und Rotor", "",
		"715", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1253906927.htm",
		"", 1,
		"Kopf40T", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/2375739-3.jpg",
		149, 112,
		"2375740", "Generator Leitstrahlmischer (Fassmischkopf) D=40 mm für Schaft 41G ",
		"bestehend aus Stator, Rotor, Distanzbuchse", "",
		"725", "0",
		"1", 1,
		"Stück", "23",
		"", "pd481447007.htm",
		"", 1,
		"Kopf41G", "0",
		 0)
	
		Entry[44] = new Element(
		44, "",
		0, 0,
		"2368876", "Schaft Y-MD-RG, ohne Generator mit Reduziergetriebe für Antrieb X40",
		"Eintauchtiefe E=380 mm, Elastomere FPM (Viton)", "",
		"1640", "0",
		"1", 1,
		"Stück", "30",
		"", "pd1727235270.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[45] = new Element(
		45, "",
		0, 0,
		"2368877", "Schaft Y-MD-RG/S, ohne Generator für Antrieb X40",
		"Eintauchtiefe E=620 mm mit Stützlager", "",
		"1835", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-1722265500.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"2368870", "Schaft LDT-RG",
		"Eintauchtiefe 400 mm, mit integriertem Reduziergetriebe", "",
		"1695", "0",
		"1", 1,
		"Stück", "27",
		"Gleitringdichtung;Kohle-Keramik-FPM@", "pd-1254441678.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[47] = new Element(
		47, "",
		0, 0,
		"2367144", "Schaft LDT-RG/S",
		"Eintauchtiefe 600 mm, mit integriertem Reduziergetriebe", "",
		"1675", "0",
		"1", 1,
		"Stück", "27",
		"Gleitringdichtung;Kohle-Keramik-FPM@", "pd623629898.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[48] = new Element(
		48, "",
		0, 0,
		"2375747", "Generator Leitstrahlmischer (Fassgenerator) D=45/45 mm für Schaft Y-MD und Y-MD-RG",
		"bestehend aus Stator (mit horizontalen Schlitzen) und Rotor", "",
		"635", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD", "0",
		 0)
	
		Entry[49] = new Element(
		49, "",
		0, 0,
		"2375775", "Generator Leitstrahlmischer D=45/45 mm für Schäfte LDT und LDT-RG",
		"bestehend aus Rotor und Stator (mit horizontalen Schlitzen)", "",
		"565", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM", "0",
		 0)
	
		Entry[50] = new Element(
		50, "",
		0, 0,
		"2375771", "Generator Dispermix D=60 mmfür Schäfte LDT und LDT-RG",
		"bestehend aus Rotor und Stator / zylindrisch, Schlitzbreite Sb=4,0 mm", "",
		"945", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/2381968-1.jpg",
		150, 113,
		"2381968", "Abdeckkappe zur Sterilisation für Schaft LDT-1 oder Y-MD",
		"inklusive O-Ring Viton und Verschlußschraube", "",
		"159", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50", "0",
		 0)
	
		Entry[52] = new Element(
		52, "",
		0, 0,
		"2387137", "Schaft LDT-1/S-600 ohne Generator für Antrieb X50",
		"Eintauchtiefe E = 600 mm", "",
		"1105", "0",
		"1", 1,
		"Stück", "36",
		"Gleitringdichtung;Keramik/Kohle/EPDM@", "pd-647386403.htm",
		"", 1,
		"SchaftX50", "0",
		 0)
	
		Entry[53] = new Element(
		53, "",
		0, 0,
		"2368874", "Schaft Y-MD ohne Generator für Antrieb X50",
		"Eintauchtiefe mit Generator max. E=380 mm", "",
		"1095", "0",
		"1", 1,
		"Stück", "47",
		"", "pd733118616.htm",
		"", 1,
		"X50YMD", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"2371138", "Schaft Y-MD/S ohne Generator für Antrieb X50",
		"Eintauchtiefe mit Generator max. E=620 mm mit Stützlager", "",
		"1265", "0",
		"1", 1,
		"Stück", "47",
		"", "pd-711018362.htm",
		"", 1,
		"X50YMD", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/2372925.jpg",
		149, 112,
		"2372925", "Rührer R-MD mit Rotor D=54 mm für Antrieb X50",
		"Eintauchtiefe E=380 mm", "",
		"885", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-1891418027.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/2372925.jpg",
		149, 112,
		"2372926", "Rührer R-MD/S mit Rotor D=54 mm für Antrieb X50",
		"Eintauchtiefe E=620 mm", "",
		"890", "0",
		"1", 1,
		"Stück", "50",
		"", "pd117822091.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Y-FLT-1S-150.jpg",
		150, 112,
		"2371787", "Leitstrahlmischer Y-MD-SSW D=64/78 mm mit angeschweißtem Leitstrahlmisch-Generator",
		"Eintauchtiefe E=380 mm", "",
		"2240", "0",
		"1", 1,
		"Stück", "50",
		"", "pd825935793.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/Y-FLT-1S-150.jpg",
		150, 112,
		"2381855", "Leitstrahlmischer Y-FLT-1/S D=86/98 mm mit Generator Leitstrahlmisch",
		"mit Fußlager bis 6.000 1/min, E=600 mm", "",
		"2158", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-598188851.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/2377948-1.jpg",
		149, 112,
		"2377948", "Dispermix D-FLT-1/S mit Dispermix-Generator an Streben",
		"Kopf D=86/98 mm, Sb=4 mm, mit Fußlager, E=600 mm, für 6.000 1/min", "",
		"2385", "0",
		"1", 1,
		"Stück", "50",
		"", "pd1841716137.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/2377948-1.jpg",
		149, 112,
		"2377303", "Dispermix D-FLT-1/S mit Dispermix-Generator an Streben",
		"Kopf D=102/120 mm, Sb =6 mm, mit Fußlager, E=600 mm, für 3.000 1/min", "",
		"2539", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-1415238145.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/PB061013.JPG",
		149, 112,
		"2376134", "Dispermix D-FLT-1/S mit Dispermix-Generator an Streben",
		"Kopf D=102/120 mm, Sb=2 mm, mit Fußlager, E=600 mm, für 3.000 1/min", "",
		"2582", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-1595088827.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/PB060972.JPG",
		149, 112,
		"2381824", "Adapter AD1-50/10",
		"zur Kopplung der Schäfte X10/20 an die Antriebe X50", "",
		"395", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-1631440432.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/X50-Teile-60971.gif",
		150, 113,
		"2375774", "Generator Dispergierer D=70 mm grob, für Schaft LDT und LDT-RG",
		"bestehend aus Rotor Schlitzbreite Sb = 8,0 mm und Stator Schlitzbreite Sb=4,0 mm", "",
		"725", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-1774078586.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[64] = new Element(
		64, "",
		0, 0,
		"2375789", "Generator Dispergierer D=70 mm grob mit Vorschneidmesser, für Schaft LDT und LDT-RG",
		"bestehend aus Rotor Schlitzbreite Sb = 8,0 mm und Stator Schlitzbreite Sb=4,0 mm", "",
		"1500", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-1030522382.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/X50-Teile-60968.gif",
		150, 113,
		"2381612", "Generator Leitstrahlmischer D=102/120 mm,  für Schaft LDT",
		"bestehend aus Rotor und Stator", "",
		"605", "0",
		"1", 1,
		"Stück", "37",
		"", "pd884135575.htm",
		"", 1,
		"KopfLSM", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/X50-Teile-60963.gif",
		150, 113,
		"2381613", "Generator Leitstrahlmischer D=114/135 mm für Schaft LDT",
		"bestehend aus Rotor und Stator", "",
		"635", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-1480975715.htm",
		"", 1,
		"KopfLSM", "0",
		 0)
	
		Entry[67] = new Element(
		67, "",
		0, 0,
		"2381625", "Generator Dispermix D=102/120 mm für Schaft LDT",
		"bestehend aus Dispermix-Stator Schlitzbreite Sb=2,0 mm und Rotor", "",
		"925", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1612835207.htm",
		"", 1,
		"Disperm50", "0",
		 0)
	
		Entry[68] = new Element(
		68, "",
		0, 0,
		"2375748", "Generator Leitstrahlmischer D=64/78 mm für Schaft Y-MD und Y-MD-RG",
		"bestehend aus Rotor und Stator", "",
		"580", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD", "0",
		 0)
	
		Entry[69] = new Element(
		69, "",
		0, 0,
		"2375750", "Generator Leitstrahlmischer D=84/98 mm für Schaft Y-MD und Y-MD-RG",
		"bestehend aus Stator und Rotor", "",
		"580", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31",
		"", "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,KopfLSM,KopfLDT,KopfLSM,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[70] = new Element(
		70, "assets/thumb/PB060978.JPG",
		149, 112,
		"2367135", "Rotorschlüssel",
		"für Generator Leitstrahlmischer und Dispermix-Generatoren", "",
		"52", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33",
		"", "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,KopfLSM,KopfLDT,KopfLSM,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[71] = new Element(
		71, "assets/thumb/Schaft-20DG.JPG",
		150, 112,
		"2368889", "Schaft 20D/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=3,0 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Keramik/FPM (Viton)", "",
		"435", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Schaft-20DF.JPG",
		150, 112,
		"2368887", "Schaft 20D/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=1,5 mm / Eintauchtiefe E=190 mm / Gleiringdichtung Keramik/Keramik/FPM (Viton)", "",
		"445", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Schaft-25DF.JPG",
		150, 112,
		"2368891", "Schaft 25D/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=1,5 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Keramik/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Schaft20Keramik.jpg",
		149, 112,
		"2370730", "Schaft 20D/25D ohne Generator",
		"Gleiringdichtung Keramik/Keramik/FPM (Viton) / Eintauchtiefe max. E=190 mm", "",
		"315", "0",
		"1", 1,
		"Stück", "13",
		"", "pd838916940.htm",
		"", 1,
		"Schaft", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/X40-Teile-0038.gif",
		150, 113,
		"2368866", "Durchlaufdispergierer Z42 mit Spannverschluss, Schlauchstutzen 34 mm",
		"Gleitringdichtung Chromguss/Kohle/FPM (Viton), ohne Generator, Pumpflügel", "",
		"1595", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1063284545.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/X40-Teile-0040.gif",
		150, 113,
		"2371392", "Durchlaufdispergierer Z42 mit Spannverschluss, Gewindestutzen DN32 / DIN 11851",
		"Gleitringdichtung Chromguss/Kohle/FPM (Viton), ohne Generator, Pumpflügel", "",
		"1795", "0",
		"1", 1,
		"Stück", "26",
		"", "pd658412824.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Leitstrahl-104.jpg",
		75, 143,
		"Leitstrahlmischer", "Anwendung Leitstrahlmischer",
		"Mischen, Suspendieren, Homogenisieren", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1069246583.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[78] = new Element(
		78, "assets/thumb/Dispermix-102.jpg",
		75, 143,
		"Dispermix", "Anwendung Dispermix",
		"Mischen und Dispergieren in einem Arbeitsgang", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd90210173.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[79] = new Element(
		79, "assets/thumb/Chargen-Dispergierer-Multipurpose.jpg",
		75, 144,
		"Dispergierer", "Anwendung Chargen-Dispergierer",
		"Partikelzerkleinerung mit dem Rotor-Stator-System", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1933261325.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[80] = new Element(
		80, "assets/thumb/X100-018.gif",
		125, 130,
		"Dissolver", "Anwendung Dissolver",
		"Mischen und Dispergieren von hohen Viskositäten", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1057257127.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[81] = new Element(
		81, "assets/thumb/Inline-Zeichnung-135.gif",
		100, 127,
		"Inline", "Anwendung Inline-Dispergierer",
		"Inline Partikelgrößenzerkleinerung", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1380897583.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[82] = new Element(
		82, "assets/thumb/X50-Frequenz-0019.gif",
		100, 99,
		"Frequenzumformer", "Drehzahlkontrolle mit Frequenzumformer",
		"Einstellen der Drehzahl von 0 bis zur maximal erlaubten Drehzahl einer Maschine", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd680380661.htm",
		"", 1,
		"Systeme", "0",
		 1)
	
		Entry[83] = new Element(
		83, "assets/thumb/CONVAR22.jpg",
		149, 112,
		"2375729", "Generator Dispergierer D=40 mm fein für Schaft 40T, 41G und Z42 ",
		"bestehend aus Rotor 12 Zähne und Stator Schlitzbreite Sb=2,0 mm", "",
		"196", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/CONVAR22.jpg",
		149, 112,
		"2375732", "Generator Dispergierer D=40 mm mittel für Schaft 40T, 41G und Z42",
		"bestehend aus Rotor 4 Zähne und Stator Schlitzbreite Sb=3,0 mm ", "",
		"260", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/CONVAR19.jpg",
		149, 112,
		"2375733", "Generator Dispergierer D=40 mm grob für Schaft 40T, 41G und Z42",
		"bestehend aus Rotor 4 Zähne und Stator Schlitzbreite Sb=8,0 mm", "",
		"206", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/X10-25-500SW.JPG",
		149, 112,
		"2366880", "Laborantrieb X10/25, 230 V, 50/60 Hz, 500 W",
		"elektronische Drehzahlregelung 11.000 - 24.000 1/min", "",
		"498", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2040002919.htm",
		"", 1,
		"Disp25", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/X10-20-750SW.JPG",
		149, 112,
		"2402546", "Laborantrieb X10/20 E3, DZA, 230 V, 50/60 Hz, 1.050 W",
		"maximale Leerlaufdrehzahl 25.000 1/min, Schalter, Überlastschutz und Drehzahlgeber", "",
		"795", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/X10-20-750SW.JPG",
		149, 112,
		"2402547", "Laborantrieb X10/20 E3, 115 V, 50/60 Hz, 1.050 W",
		"maximale Leerlaufdrehzahl 25.000 1/min, Schalter, Überlastschutz und Drehzahlgeber", "",
		"795", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/PB060989.JPG",
		149, 112,
		"2375589", "Generator Dissolver D=20 mm für Schaft 30D*",
		"bestehend aus Dissolverscheibe und Gewindeabdeckring", "",
		"405", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1858592381.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/2375583.jpg",
		149, 112,
		"2375583", "Generator Dispergierer D=30 mm fein für Schaft 30D",
		"bestehend aus Rotor mit 10 Zähnen und Stator Sb=1,5 mm", "",
		"132", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1051050673.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/2375582.jpg",
		149, 112,
		"2375582", "Generator Dispergierer D=30 mm grob für Schaft 30D",
		"bestehend aus Rotor mit 2 Zähnen und Stator Sb=3,0 mm", "",
		"132", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-812924907.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/PB060984.JPG",
		149, 112,
		"2366942", "Rotorschlüssel",
		"für Generator Leitstrahlmischer dia. 26 mm", "",
		"35", "0",
		"1", 1,
		"Stück", "15",
		"", "pd623486917.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/2375579-2.jpg",
		149, 112,
		"2375579", "Generator Leitstrahlmischer D=30 mm für Schaft 30D",
		"bestehend aus Stator und Rotor", "",
		"475", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-179742645.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/P9081898.JPG",
		149, 112,
		"2375577", "Generator Leitstrahlmischer D=45/55 mm für Schaft 30D ",
		"bestehend aus Stator und Rotor", "",
		"490", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-951532687.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/PB060959.JPG",
		149, 112,
		"2375522", "Generator Dispermix D=40/54 mm für Schaft 30D",
		"bestehend aus Dispermix-Stator Sb= 4,0 mm, Statorträger, Rotor und Schrauben", "",
		"715", "0",
		"1", 1,
		"Stück", "12",
		"", "pd526095501.htm",
		"", 1,
		"393601", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/CONVAR22.jpg",
		149, 112,
		"2375735", "Generator Dispergierer D=40 mm grob für Schaft 40T und 41G mit Vorschneidmesser",
		"bestehend aus Rotor 4 Zähne und Stator Schlitzbreite Sb=3,0 mm", "",
		"386", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/CONVAR19.jpg",
		149, 112,
		"2375736", "Generator Dispergierer D=40 mm mittel für Schaft 40T und 41G mit Vorschneidmesser",
		"bestehend aus Rotor 4 Zähne und Stator Schlitzbreite Sb=8,0 mm", "",
		"355", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41", "0",
		 0)
	
		Entry[98] = new Element(
		98, "",
		0, 0,
		"2375742", "Generator Dissolver D=50 mm für Schäfte 40T und 41G",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"410", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41", "0",
		 0)
	
		Entry[99] = new Element(
		99, "",
		0, 0,
		"2375777", "Generator Dissolver D=50 mm für Schäfte LDT und LDT-RG",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"395", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[100] = new Element(
		100, "",
		0, 0,
		"2393147", "Generator Dissolver D=70 mm für Schäfte LDT und LDT-1",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"408", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[101] = new Element(
		101, "",
		0, 0,
		"2375779", "Generator Dissolver D=80 mm für Schäfte LDT und LDT-RG",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"408", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[102] = new Element(
		102, "",
		0, 0,
		"2375780", "Generator Dissolver D=100 mm für Schäfte LDT und LDT-RG",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"408", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50", "0",
		 0)
	
		Entry[103] = new Element(
		103, "",
		0, 0,
		"2375752", "Generator Dissolver D=50 mm für Schäfte Y-MD und Y-MD-RG",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"385", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD", "0",
		 0)
	
		Entry[104] = new Element(
		104, "",
		0, 0,
		"2393146", "Generator Dissolver D=70 mm für Schäfte Y-MD und Y-MD-R",
		"inklusive Gewindeabdeckring für Statorrohr", "",
		"405", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,Disp25,Misch20,Disp25,Disp40,Disp41,Disp40,Disp41,Dis40,Dis41,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissLDT,DissolvX50,DissMD,DissolYMD,DissMD,DissolYMD", "0",
		 0)
	
		Entry[105] = new Element(
		105, "",
		0, 0,
		"2375754", "Generator Dissolver D=80 mm für Schäfte Y-MD und Y-MD-RG",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"405", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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[106] = new Element(
		106, "",
		0, 0,
		"2375755", "Generator Dissolver D=100 mm für Schäfte Y-MD und Y-MD-RG",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"405", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49",
		"", "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,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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[107] = new Element(
		107, "assets/thumb/X40-Teile-0008.gif",
		150, 113,
		"2375738", "Generator Leitstrahlmischer D=64/78 mm für Schaft 41G",
		"bestehend aus Rotor und Stator", "",
		"540", "0",
		"1", 1,
		"Stück", "23",
		"", "pd189572517.htm",
		"", 1,
		"Kopf41G", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/2348637-1.JPG",
		149, 112,
		"2384356", "Luftableitblech",
		"zum Ableiten der Motorkühlluft", "",
		"57", "0",
		"1", 1,
		"Stück", "53",
		"", "pd1078147674.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/CONVAR12.jpg",
		115, 87,
		"2375580", "Generator Leitstrahlmischer D=20/26 mm für Schaft 10T",
		"bestehend aus Stator und Rotor", "",
		"515", "0",
		"1", 1,
		"Stück", "14",
		"", "pd526773150.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/Detail-10N-F.JPG",
		115, 87,
		"2375705", "Generator Dispergierer D=10 mm fein für Schaft 10T (Preis ohne Schaft)",
		"bestehend aus Rotor mit 4 Zähnen und Stator Schlitzbreite Sb=0,5 mm", "",
		"125", "0",
		"1", 1,
		"Stück", "14",
		"", "pd210334460.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/Detail-10N-G.JPG",
		115, 87,
		"2375706", "Generator Dispergierer D=10 mm grob für Schaft 10T (Preis ohne Schaft)",
		"bestehend aus Rotor mit 2 Zähnen und Stator Schlitzbreite Sb=2,0 mm", "",
		"105", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1820327542.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Detail-10N-MG.JPG",
		115, 87,
		"2375707", "Generator Dispergierer D=10 mmgrob für Schaft 10T (Preis ohne Schaft)",
		"bestehend aus Rotor mit 2 Zähnen, Stator Schlitzbreite Sb=2,0 mm und Vorschneidemessern", "",
		"149", "0",
		"1", 1,
		"Stück", "14",
		"", "pd212314824.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Detail-X20-DF.JPG",
		115, 87,
		"2375710", "Generator Dispergierer D=20 mm fein für Schaft 20/D (Preis ohne Schaft)",
		"bestehend aus Rotor mit 6 Zähnen und Stator Schlitzbreite Sb=1,5 mm", "",
		"164", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1494569418.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/2366909.JPG",
		149, 112,
		"2366909", "Rotorschlüssel",
		"für Dispergier-Generatoren von Schaft 20G/S", "",
		"13", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-1812541416.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Schaft-25DF.JPG",
		150, 112,
		"2368890", "Schaft 25D/F mit Dispergier-Generator fein",
		"Schlitzbreite Sb=1,5 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Kohle/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1079098575.htm",
		"", 1,
		"3933", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Schaft-25DG.JPG",
		150, 112,
		"2368893", "Schaft 25D/G mit Dispergier-Generator grob",
		"Schlitzbreite Sb=3,0 mm / Eintauchtiefe E=190 mm / Gleitringdichtung Keramik/Keramik/FPM (Viton)", "",
		"475", "0",
		"1", 1,
		"Stück", "8",
		"", "pd900447838.htm",
		"", 0,
		"3933", "0",
		 0)
	
		Entry[117] = new Element(
		117, "",
		0, 0,
		"2385937", "Schaft LDT-1-400 ohne Generator für Antrieb X50",
		"Eintauchtiefe E = 400 mm", "",
		"1105", "0",
		"1", 1,
		"Stück", "36",
		"Gleitringdichtung;Keramik/Kohle/EPDM@", "pd1090826415.htm",
		"", 1,
		"SchaftX50", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Detail-X20-DG.JPG",
		115, 87,
		"2375711", "Generator Dispergierer D=20 mm grob für Schaft 20/D (Preis ohne Schaft)",
		"bestehend aus Rotor mit 2 Zähnen und Stator Schlitzbreite Sb=3,0 mm", "",
		"148", "0",
		"1", 1,
		"Stück", "14",
		"", "pd298538836.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Detail-X25-DF.JPG",
		115, 87,
		"2375712", "Generator Dispergierer D=25 mm fein für Schaft 25D (Preis ohne Schaft)",
		"bestehend aus Rotor 6 Zähnen und Stator Schlitzbreite Sb=1,5 mm", "",
		"178", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1238556066.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Detail-X25-DG.JPG",
		115, 87,
		"2375713", "Generator Dispergierer D=25 mm grob für Schaft 25D (Preis ohne Schaft)",
		"bestehend aus Rotor mit 2 Zähnen und Stator Schlitzbreite Sb=3,0 mm", "",
		"163", "0",
		"1", 1,
		"Stück", "14",
		"", "pd2048607392.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[121] = new Element(
		121, "",
		0, 0,
		"2382361", "Schaft Y-MD, D=45 mm mit Leitstrahlmisch-Generator für Antrieb X40",
		"für Spundloch (Fassgenerator), Eintauchtiefe mit Generator E=380 mm", "",
		"1735", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50",
		"", "pd74202062.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat", "0",
		 0)
	
		Entry[122] = new Element(
		122, "",
		0, 0,
		"2382362", "Schaft Y-MD/S, D=45 mm, mit Generator Leitstrahlmischer für Spundloch",
		"Eintauchtiefe E=620 mm mit Stützlager", "",
		"1965", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-31261012.htm",
		"", 1,
		"SchaftYMD", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/PB061019.JPG",
		150, 200,
		"2385915", "Technikumsstativ SSU1 V, H = 1.000 mm, dynamische Last bis 25 kg",
		"Fuß und Säule aus Edelstahl, gewichtsentlasteter Hub 450 mm", "",
		"2095", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-453036428.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/PB061019.JPG",
		150, 200,
		"2385917", "Technikumsstativ SSU2 V, H = 1.500 mm, dynamische Last bis 25 kg",
		"Fuß und Säulen aus Edelstahl, gewichtsentlasteter Hub 450 mm", "",
		"2295", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-43888190.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[125] = new Element(
		125, "",
		0, 0,
		"Inline Z66", "Inline Dispergiersystem Z66",
		"bestehend aus Antrieb X50, Inline Kammer Z66, Schaltschrank", "",
		"0", "0",
		"1", 1,
		"Stück", "51",
		"", "pd1102575771.htm",
		"", 1,
		"X50Z66", "0",
		 1)
	
		Entry[126] = new Element(
		126, "",
		0, 0,
		"2387397", "Generator Dissolver D=150 mm für Schaft Y-MD und Y-MD/R",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"520", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32",
		"", "pd73374785.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD", "0",
		 0)
	
		Entry[127] = new Element(
		127, "",
		0, 0,
		"2387398", "Generator Dissolver D=150 mm für Schaft LDT und LDT-1",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"520", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1138034356.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[128] = new Element(
		128, "",
		0, 0,
		"2389846", "Schaft LDT-RG-400 ohne Generator mit Reduziergetriebe für Antrieb X40",
		"Gleitringdichtung Keramik/Kohle/EPDM, Elastomere EPDM, Eintauchtiefe max. mit Generator E=400 mm", "",
		"1705", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1795691087.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/PB060989.JPG",
		300, 225,
		"2389019", "Generator Dissolver D=30 mm für Schäfte 40T und 41G",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"415", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25",
		"", "pd-1874658439.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/P1126802Verlauf.jpg",
		150, 200,
		"X40-Stativ-LSM", "Komplettsystem Leitstralmischer",
		"Antrieb X40, Stativ, Schaft und Leitstrahlmischkopf", "",
		"0", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-1872948032.htm",
		"", 1,
		"X40", "0",
		 1)
	
		Entry[131] = new Element(
		131, "assets/thumb/2379513-2.jpg",
		150, 112,
		"2379513", "Technikumsantrieb X40/37, 3x380 V, 50 Hz, 550 W",
		"maximal 10.000 1/min, mit Getriebe, Schalter und Überlastschutz", "",
		"2065", "0",
		"1", 1,
		"Stück", "17",
		"", "pd498711130.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/2369600.jpg",
		150, 95,
		"2402531", "Technikumsantrieb X40/38 E3, 115 V, 60 Hz, 1.800 W",
		"stufenlos drehzahlregelbar von 4.000-23.500 1/min mittels eingebautem Stellrad", "",
		"1120", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1440214010.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/2369600.jpg",
		150, 95,
		"2402534", "Technikumsantrieb X40/38 E3, 230 V, 50/60 Hz, 1.800 W",
		"stufenlos drehzahlregelbar von 4.000-23.500 1/min mittels eingebautem Stellrad", "",
		"1120", "0",
		"1", 1,
		"Stück", "17",
		"", "pd944853016.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/2366923-2.jpg",
		150, 112,
		"2366923", "Druckluftantrieb X40/39P, 470 W bei 6 bar",
		"maximal 12.000 1/min, mit integrierter Drehzahlregelung", "",
		"1665", "0",
		"1", 1,
		"Stück", "17",
		"", "pd137654692.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/2379513-2.jpg",
		150, 112,
		"2366906", "Technikumsantrieb X40/37, 230/400 V, 50 Hz, 550 W",
		"maximal 10.000 1/min, mit Getriebe, Schalter und Überlastschutz", "",
		"2065", "0",
		"1", 1,
		"Stück", "17",
		"", "pd295170892.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/HG19-Ex-2.gif",
		240, 360,
		"SystemX50Disp", "Komplettsystem mit Stativ HG10.1",
		"X50, Schaft LDT-1, Dispergierkopf und Rotorschlüssel", "",
		"0", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1106829109.htm",
		"", 1,
		"X50", "0",
		 1)
	
		Entry[137] = new Element(
		137, "assets/thumb/PB061018.JPG",
		149, 112,
		"2372693", "Technikumsantrieb X50/10, 0,37/1.5 kW",
		"400 V, 50 Hz, 1.500/3.000 1/min, IP 55", "",
		"875", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1062586406.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/PB061018.JPG",
		149, 112,
		"2375005", "Technikumsantrieb X50/10, 1.500 W",
		"3x400 V, 50 Hz, 3.000 1/min, IP 55", "",
		"816", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1409663684.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/PB061016.JPG",
		149, 112,
		"2375007", "Technikumsantrieb X50/10 Ex, 1.5 kW",
		"400 V, 50 Hz, 3.000 1/min, IP 66, EEx de IIC T4", "",
		"1395", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1560475282.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/PB061018.JPG",
		149, 112,
		"2371389", "Technikumsantrieb X50/10, externer Frequenzumformer, 1.500 W",
		"230/400 V, 50 Hz, 3.000 1/min, IP 55", "",
		"816", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1279342832.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/2377014-1.JPG",
		149, 112,
		"2377014", "Technikumsantrieb X50S-P (pneumatisch), 1.300 W",
		"R 1/2&quot;, 100 - 4.000 1/min, 6 bar", "",
		"1275", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1322771542.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/System-X10-25-10F-1.JPG",
		149, 112,
		"System X10-25-10F", "Komplettsystem 2KD",
		"Antrieb X10/25, Stativ, Kreuzklemme, Schaft 10F", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2005626975.htm",
		"", 1,
		"X10-25", "0",
		 3)
	
		Entry[143] = new Element(
		143, "assets/thumb/System-X10-25-25G-1.JPG",
		149, 112,
		"System X10-25-25G", "Komplettsystem 4KD",
		"Antrieb X10/25, Stativ, Kreuzklemme, Schaft 25G", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1199809445.htm",
		"", 1,
		"X10-25", "0",
		 3)
	
		Entry[144] = new Element(
		144, "assets/thumb/System-X20-750-30DF-1.JPG",
		149, 112,
		"System X10/20 E3-30G", "Komplettsystem 6KD",
		"Antrieb X10/20 E3, Stativ, Kreuzklemme, Schaft 30G", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd360177687.htm",
		"", 1,
		"X10-25", "0",
		 3)
	
		Entry[145] = new Element(
		145, "assets/thumb/System-X20-750-LSM45-1.JPG",
		149, 112,
		"System X10/20 E3-LS", "Komplettsystem 7KD",
		"Antrieb X10/20 E3, Stativ, Kreuzklemme, Schaft X30-Leitstrahlmischkopf 45 mm", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1065598947.htm",
		"", 1,
		"X10-25", "0",
		 3)
	
		Entry[146] = new Element(
		146, "",
		0, 0,
		"2390525", "Drosselventil (Drehzahlregelventil) für pneumatischen Antrieb X50/10P",
		"mit Verschraubung (Alu)", "",
		"78", "0",
		"1", 1,
		"Stück", "53",
		"", "pd1121233238.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[147] = new Element(
		147, "",
		0, 0,
		"2390526", "Wartungseinheit (Druckluft-Wartungseinheit) für pneumatischen Antrieb X50/10P",
		"bestehend aus: Filter, Druckregler, Öler, Manometer", "",
		"295", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-1645328524.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/X40-Zubehör-0001-150.jpg",
		150, 113,
		"2368878", "Reduziergetriebe RG1-40/40 für Antrieb X40",
		"für Schäfte mit Kupplung passend zu Antrieb X40", "",
		"675", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1141901319.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/2368878-2.jpg",
		149, 112,
		"2381782", "Reduziergetriebe RG1-40/40 für Antrieb X50",
		"für Schäfte mit Kupplung passend zu Antrieb X50", "",
		"675", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-815190474.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/X40-Dispergierer.jpg",
		150, 252,
		"X40-Stativ-Disp", "Komplettsystem Dispergierer",
		"Antrieb X40, Stativ, Schaft und Dispergiergenerator", "",
		"0", "0",
		"1", 1,
		"Stück", "16",
		"", "pd792845648.htm",
		"", 1,
		"X40", "0",
		 1)
	
		Entry[151] = new Element(
		151, "assets/thumb/PB060978.JPG",
		149, 112,
		"2366987", "Rotorschlüssel",
		"für Generator Leitstrahlmischer D=45/55 mm", "",
		"55", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1212583107.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/X50-Antrieb-0003K.JPG",
		150, 115,
		"2395519", "Technikumsantrieb X50/10, 2,2 kW",
		"400 V (380 - 480 V) 50/60 Hz, IP55 / 3.000 1/min", "",
		"1715", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1212735033.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[153] = new Element(
		153, "",
		0, 0,
		"2400499", "Steuerung MIV-A 1,5/2,2 kW",
		"Schaltschrank Edelstahl, vorbereitet zum Anbau an das Stativ HG19", "",
		"1995", "0",
		"1", 1,
		"Stück", "52",
		"", "pd527676175.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[154] = new Element(
		154, "",
		0, 0,
		"2384557", "Schaft LDT1/S-800 ohne Generator für Antrieb X50",
		"Eintauchtiefe E = 800 mm", "",
		"1330", "0",
		"1", 1,
		"Stück", "36",
		"Gleitringdichtung;Keramik/Kohle/FPM (Viton)@", "pd1223981923.htm",
		"", 1,
		"SchaftX50", "0",
		 0)
	
		Entry[155] = new Element(
		155, "",
		0, 0,
		"2407857", "Schaft LDT-1H-400 in Hygiene-Ausführung ohne Generator für Antrieb X50",
		"Eintauchtiefe E = 400 mm", "",
		"1720", "0",
		"1", 1,
		"Stück", "41",
		"Gleitringdichtung;Keramik/Kohle/EPDM gekapselt@", "pd-1354901135.htm",
		"", 1,
		"SchaftX50H", "0",
		 0)
	
		Entry[156] = new Element(
		156, "",
		0, 0,
		"2407867", "Schaft LDT-1H/S-600 in Hygiene-Ausführung ohne Generator für Antrieb X50",
		"Eintauchtiefe E = 600 mm", "",
		"1720", "0",
		"1", 1,
		"Stück", "41",
		"Gleitringdichtung;Keramik/Kohle/EPDM gekapselt@", "pd-1587882961.htm",
		"", 1,
		"SchaftX50H", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/X50-Teile-60961.gif",
		150, 113,
		"2400752", "Generator Leitstrahlmischer D=102 mm für Schaft LDT-1H und LDT-1H/S",
		"bestehend aus Rotor und Stator, Rotorblattschränkung 35° / L2 Ra &lt; 0,8 µm", "",
		"895", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-1258921323.htm",
		"", 1,
		"LSM-H", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/X50-Teile-60963.gif",
		150, 113,
		"2400751", "Generator Leitstrahlmischer D=45 mm für Schaft LDT-1H und LDT-1H/S",
		"bestehend aus Rotor und Stator, L2 Ra &lt; 0,8 µm, 1.4402", "",
		"790", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1936637643.htm",
		"", 1,
		"LSM-H", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/X50-Teile-60966.gif",
		150, 113,
		"2400757", "Generator Leitstrahlmischer D=84 mm für Schaft LDT-1H und LDT-1H/S",
		"bestehend aus Rotor und Stator, Rotorblattschränkung 35° / L2 Ra &lt; 0,8 µm", "",
		"825", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-1288270351.htm",
		"", 1,
		"LSM-H", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/IMG_8402.frei.gif",
		150, 94,
		"2400754", "Generator Dispermix D=102 mm für Schäfte LDT-1H und LDT-1H/S",
		"bestehend aus Stator Sb=4 mm und Rotor, L2 Ra &lt; 0,8 µm", "",
		"1165", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-67581561.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/IMG_8402.frei.gif",
		150, 94,
		"2400756", "Generator Dispermix D=86 mm für Schäfte LDT-1H und LDT-1H/S",
		"bestehend aus Stator Sb=2 mm und Rotor, L2 Ra &lt; 0,8 µm", "",
		"995", "0",
		"1", 1,
		"Stück", "43",
		"", "pd951708490.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[162] = new Element(
		162, "",
		0, 0,
		"2400755", "Generator Dispermix D=86 mm für Schäfte LDT-1H und LDT-1H/S",
		"bestehend aus Stator Sb=4 mm und Rotor, L2 Ra &lt; 0,8 µm", "",
		"1055", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-207443320.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[163] = new Element(
		163, "",
		0, 0,
		"2401741", "Generator Dispermix D=87 mm für Schäfte LDT-1H und LDT-1H/S, High Shear Version",
		"bestehend aus Stator Sb=2 mm Statorträger, Rotor mit Schrauben und O-Ring Abdichtung, L2 Ra &lt; 0,8 µm", "",
		"2335", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-1792756746.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/X50-Teile-60971.gif",
		150, 113,
		"2404526", "Generator Dispergierer D=70 mm für Schäfte LDT-1H und LDT-1H/S",
		"bestehend aus Rotor Sb=4 mm und Stator Sb=2 mm, 1.4404, L2 Ra &lt;0,8 µm", "",
		"1245", "0",
		"1", 1,
		"Stück", "44",
		"", "pd850645780.htm",
		"", 1,
		"X-H", "0",
		 0)
	
		Entry[165] = new Element(
		165, "",
		0, 0,
		"2409515", "Generator Dispergierer D=70 mm grob für Schäfte LDT-1H und LDT-1H/S",
		"bestehend aus Rotor Sb=8 mm und Stator Sb=4 mm, 1.4404, L2 Ra &lt;0,8 µm", "",
		"1095", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1267613116.htm",
		"", 1,
		"X-H", "0",
		 0)
	
		Entry[166] = new Element(
		166, "",
		0, 0,
		"2405780", "Generator Dissolver D=100 mm für Schäft LDT-1H und LDT-1H/S",
		"inklusive Gewindeabdeckring, L2 Ra &lt; 0,8 µm", "",
		"595", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1302645322.htm",
		"", 1,
		"Dis-H", "0",
		 0)
	
		Entry[167] = new Element(
		167, "",
		0, 0,
		"2404551", "O-Ring Satz FPM (Viton)",
		"für zweigeteilte Dispermix-Generatoren", "",
		"15", "0",
		"1", 1,
		"Stück", "46",
		"", "pd848336105.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[168] = new Element(
		168, "",
		0, 0,
		"2404552", "O-Ring Satz FPM (Viton) FDA konform",
		"für zweigeteilte Dispermix-Generatoren", "",
		"105", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-914945729.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[169] = new Element(
		169, "",
		0, 0,
		"2404550", "O-Ring Satz FFKM (Kalrez) FPM-FEP ummantelt",
		"für zweigeteilte Dispemix-Generatoren", "",
		"625", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-212390523.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[170] = new Element(
		170, "",
		0, 0,
		"2404561", "O-Ring Satz FFKM (Kalrez) FDA konform ",
		"für zweigeteilte Dispermix-Generatoren", "",
		"625", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-767933637.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[171] = new Element(
		171, "",
		0, 0,
		"2404548", "O-Rig Satz EPDM",
		"für zweigeteilte Dispermix-Generatoren", "",
		"25", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-1012832287.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[172] = new Element(
		172, "",
		0, 0,
		"2404549", "O-Ring Satz EPDM FDA konform",
		"für zweigeteilte Dispermix-Genatoren", "",
		"50", "0",
		"1", 1,
		"Stück", "46",
		"", "pd1027142903.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[173] = new Element(
		173, "",
		0, 0,
		"2409702", "O-Ring Satz FPM (Viton)",
		"für alle weiteren X50 Generatoren für LDT-1H und LDT-1H/S", "",
		"5", "0",
		"1", 1,
		"Stück", "46",
		"", "pd976936957.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[174] = new Element(
		174, "",
		0, 0,
		"2409703", "O-Ring Satz FPM (Viton) FDA konform",
		"für alle weiteren X50 Generatoren für LDT-1H und LDT-1H/S", "",
		"25", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-2062017933.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[175] = new Element(
		175, "",
		0, 0,
		"2409701", "O-Ring Satz FFKM (Kalrez) FPM-FEP ummantelt",
		"für alle weiteren X50 Generatoren für LDT-1H und LDT-1H/S", "",
		"170", "0",
		"1", 1,
		"Stück", "46",
		"", "pd1925247449.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[176] = new Element(
		176, "",
		0, 0,
		"2409704", "O-Ring Satz FFKM (Kalrez) FDA konform ",
		"für alle weiteren X50 Generatoren für LDT-1H und LDT-1H/S", "",
		"170", "0",
		"1", 1,
		"Stück", "46",
		"", "pd77885359.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[177] = new Element(
		177, "",
		0, 0,
		"2409699", "O-Ring Satz EPDM",
		"für alle weiteren X50 Generatoren für LDT-1H und LDT-1H/S", "",
		"5", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-868304523.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[178] = new Element(
		178, "",
		0, 0,
		"2409700", "O-Ring Satz EPDM FDA konform",
		"für alle weiteren X50 Generatoren für LDT-1H und LDT-1H/S", "",
		"25", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-959549269.htm",
		"", 1,
		"Oring-H", "0",
		 0)
	
		Entry[179] = new Element(
		179, "",
		0, 0,
		"2366895", "Technikumsantrieb X40/36, Ex, 230 V, 50 Hz, 700 W max. 10.000 upm",
		"druckgekapselt, Schutzart EEx deIIC T6 mit Schalter und Überstromsicherung, Unterspannngsauslösung", "",
		"1685", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-72538779.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[180] = new Element(
		180, "",
		0, 0,
		"2367239", "Stativklemme SKL 1.1 ",
		"zur Befestigung der Gefäßhalterung an den Stativen U1 / U2 / GU1 / GU2", "",
		"164", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1289380415.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/P9081898.JPG",
		149, 112,
		"2375737", "Generator Leitstrahlmischer D=64 mm für Schaft 40T ",
		"bestehend aus Stator und Rotor", "",
		"575", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1656709618.htm",
		"", 1,
		"Kopf40T", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/2366963-2.jpg",
		149, 112,
		"2381119", "Inline Dispergierkammer Z22 bis 7 bar",
		"Anschlüsse 20x26 mm / O-Ringe FFKM (Kalrez)", "",
		"795", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-957177488.htm",
		"", 1,
		"X10Zubeh", "0",
		 0)
	
		Entry[183] = new Element(
		183, "",
		0, 0,
		"2381783", "Technikumsantrieb X40/36 Ex 110/115 V / 60 Hz / 650 W / 10.000 upm",
		"druckgekapselt, Schutzart EEx deIIC T6 / mit ATEX Zulassung", "",
		"1815", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1546353223.htm",
		"", 1,
		"KomplX40", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/LOP-0003-1.JPG",
		150, 241,
		"2382981", "Steuerelement LOP (Bedienteil / Local Operation Pad)",
		"für Frequenzumrichter incl. Anschlusskabel und Wandhalterung", "",
		"175", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-915659315.htm",
		"", 1,
		"ZubX50", "0",
		 0)
	
		Entry[185] = new Element(
		185, "",
		0, 0,
		"2384900", "Steuerung mit FU für Z66 mit Antrieb X50/10 / 230 V Nicht Ex / 1,5 kW",
		"Steuerspannung 24 V DC / SPS / Gehäuse Edelstahl (Eingang 230 V, 50-60 Hz AC)", "",
		"2895", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-1676143421.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[186] = new Element(
		186, "",
		0, 0,
		"2384909", "Steuerung mit FU für Z66 mit Antrieb X50/10 380 - 460 V Nicht-Ex, 1,5 kW",
		"Steuerspannung 24 V DC, SPS, Gehäuse Edelstahl (Eingang 380 - 460 V AC)", "",
		"3135", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1278656318.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[187] = new Element(
		187, "",
		0, 0,
		"2389150", "Schaft 41 G/S ohne Generator, druckfest bis 6 bar, vakuumdicht",
		"Gleitringdichtung Wolframkarbid/Wolframkarbid/FFKM (Kalrez), Eintauchtiefe mit Generator max. 600 mm", "",
		"1395", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-960434276.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[188] = new Element(
		188, "",
		0, 0,
		"2389282", "Generator Dissolver D=30 mm für Schaft LDT und LDT-1",
		"inklusive Gewindabdeckring, L1 Ra&gt;1,2 µm", "",
		"405", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1677570262.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[189] = new Element(
		189, "",
		0, 0,
		"2389584", "Technikumsantrieb Z66, 3000S FUext, 230/400 V, 50 Hz, 3.000 upm",
		"2x3 Kaltleitfühlern, in Verbindung mit einem Frequenzumruchter drehzahlregelbar 0 - 12.000 upm", "",
		"1345", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1653944680.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[190] = new Element(
		190, "",
		0, 0,
		"2389590", "Technikumsantrieb Z66, 2.200S FUext, 2,2 kW, 230/400 V, 50 Hz, 3.000 upm",
		"2x3 Kaltleiterfühlern, in Verbindung mit Frequenzumrichter drehzahlregelbar 0 - 12.000 upm", "",
		"1195", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1526339030.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[191] = new Element(
		191, "",
		0, 0,
		"2393334", "Generator Dissolver D=125 mm für Schaft LDT und LDT-1",
		"inklusive Gewindeabdeckring, L1 Ra &lt; 1,2 µm", "",
		"470", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1899202548.htm",
		"", 1,
		"DissolvX50", "0",
		 0)
	
		Entry[192] = new Element(
		192, "",
		0, 0,
		"2393411", "Schaft R-MD/S-V, ohne Generator für Antrieb X40",
		"Eintauchtiefe mit Generator max. E=546 mm", "",
		"1045", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30",
		"", "pd1799683906.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD", "0",
		 0)
	
		Entry[193] = new Element(
		193, "",
		0, 0,
		"2393758", "Steuerung mit FU, X50/10, 380 - 480 V, Ex, 1,5 kW mit Vorortsteuerstelle",
		"Schaltschrank Stahl lackiert, Vorortsteuerstelle Edelstahl, FU Parametrierung für 87 Hz-Kennlinie", "",
		"3200", "0",
		"1", 1,
		"Stück", "52",
		"", "pd994885440.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[194] = new Element(
		194, "",
		0, 0,
		"2393759", "Steuerung mit FU, X50/10, 380 - 480 V, Ex, 1,5 kW mit Vorortsteuerstelle",
		"Schaltschrank und Vorortsteuerstelle Edelstahl, FU Parametrierung für 87 Hz-Kennlinie", "",
		"3510", "0",
		"1", 1,
		"Stück", "52",
		"", "pd716224366.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[195] = new Element(
		195, "",
		0, 0,
		"2393760", "Steuerung mit FU, X50/10, 200 - 240 V, Ex, 1,5 kW mit Vorortsteuerstelle",
		"Schaltschrank Stahl lackiert, Vorortsteuerstelle Edelstahl, FU Parametrierung für 87 Hz-Kennlinie", "",
		"3095", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1888904012.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[196] = new Element(
		196, "",
		0, 0,
		"2393761", "Steuerung mit FU, X50/10, 200 - 240 V, Ex, 1,5 kW mit Vorortsteuerstelle",
		"Schaltschrank und Vorortsteuerstelle Edelstahl, FU Parametrierung für 87 Hz-Kennlinie", "",
		"3400", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-258102694.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[197] = new Element(
		197, "",
		0, 0,
		"2394195", "Steuerung mit FU für Z66, 2,2 kW oder 3,0 kW 380 - 460 V Nicht-Ex 4,0 kW",
		"FU Modul, Steuerspannung 24 V DC, Gehäuse Edelstahl (Eingang 380 - 460 V, 50 - 60 Hz)", "",
		"4380", "0",
		"1", 1,
		"Stück", "52",
		"", "pd127320088.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[198] = new Element(
		198, "",
		0, 0,
		"2394198", "Steuerung mit FU für Z66 mit Antrieb 2,2 oder 3,0 kW, 380 - 460 V, Nicht-Ex 4,0 KW",
		"FU Modul Steuerspannung 24 V DC, SPS, Stahl lackiert", "",
		"3995", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-1565850618.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[199] = new Element(
		199, "",
		0, 0,
		"2394743", "Steuerung mit FU, X50/10, 380 - 480 V, Nicht-Ex, 1,5 kW",
		"Gehäuse Stahl lackiert", "",
		"2755", "0",
		"1", 1,
		"Stück", "52",
		"", "pd305193380.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[200] = new Element(
		200, "",
		0, 0,
		"2394744", "Steuerung mit FU, X50/10, 380 - 480 V, Nicht-Ex, 1,5 kW",
		"Gehäuse Edelstahl (Eingang 380 - 480 V 50/60 Hz AC)", "",
		"3055", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1277341810.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[201] = new Element(
		201, "",
		0, 0,
		"2394745", "Steuerung mit FU, X50/10, 200 - 240 V, Nicht-Ex, 1,5 kW",
		"Gehäuse Stahl lackiert (Eingang 200 - 240 V 50/60 Hz AC)", "",
		"2565", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1391498224.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[202] = new Element(
		202, "",
		0, 0,
		"2394746", "Steuerung mit FU, X50/10, 200 - 240 V, Nicht-Ex, 1,5 kW",
		"Gehäuse Edelstahl (Eingang 200 - 240 V 50/60 Hz AC)", "",
		"2870", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1680169886.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[203] = new Element(
		203, "",
		0, 0,
		"2395296", "Schaft 41 G/S ohne Generator, druckfest bis 6 bar, vakuumdicht",
		"Gleitringdichtung Chromguss/Kohle/EPDM, Eintauchtiefe max. E=600 mm", "",
		"995", "0",
		"1", 1,
		"Stück", "22",
		"", "pd521560828.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[204] = new Element(
		204, "",
		0, 0,
		"2396368", "Schaft 41G ohne Generator, druckfest bis 6 bar, vakuumdicht",
		"Gleitringdichtung Keramik/Kohle/FPM (Viton), Eintauchtiefe mit Generator max. E=320 mm", "",
		"860", "0",
		"1", 1,
		"Stück", "22",
		"", "pd781611402.htm",
		"", 1,
		"Schaft40G", "0",
		 0)
	
		Entry[205] = new Element(
		205, "",
		0, 0,
		"2397201", "Durchlaufdispergierer Z42 mit Spannverschluss, Flanschanschluss DN25 DIN2633 PN16, FDA Zulassung",
		"Gleitringdichtung Chromguss/Kohle/FPM (Viton), ohne Generator, Pumpflügel", "",
		"1995", "0",
		"1", 1,
		"Stück", "26",
		"", "pd352662688.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/2377948-1.jpg",
		149, 112,
		"2398401", "Schaft D-FLT-!/S, Dispermix Stator an Streben, m/M = 86/98 mm, Sb=2 mm, für Antrieb X50",
		"Elastomere FPM (Viton), mit Fußlager, Eintauchtiefe mit Generator max. E=600 mm", "",
		"2685", "0",
		"1", 1,
		"Stück", "50",
		"", "pd265570103.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[207] = new Element(
		207, "",
		0, 0,
		"2398759", "Schaft Y-MD, ohne Generator, Elastomere FPM (Viton) für Antrieb X40",
		"Eintauchtiefe mit Generator max. E=380 mm", "",
		"1165", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30,47,30",
		"", "pd-1467515843.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD,X50YMD,SchaftYMD", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/PB061016.JPG",
		149, 112,
		"2398810", "Technikumsantrieb Z66 Ex, 2.200S FUext, 2,2 kW, 230/400 V, 50 Hz, 3.000 upm",
		"EEx de IIC T4 ATEX II2G, 3 eingebaute Kaltleiterfühler, drehzahlregelbar 0 - 12.000 upm", "",
		"1495", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1683951795.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/PB060989.JPG",
		150, 113,
		"2402969", "Generator Dissolver D=30 mm für Schaft 30D",
		"bestehend aus Dissolverscheibe und Gewindeabdeckring", "",
		"420", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-340667879.htm",
		"", 1,
		"393602", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/PB060989.JPG",
		150, 113,
		"2402970", "Generator Dissolver D=30 mm für Schäfte Y-MD und Y-MD/R",
		"inklusive Gewindeabdeckring für Statorrohr", "",
		"395", "0",
		"1", 1,
		"Stück", "49",
		"", "pd196692463.htm",
		"", 1,
		"DissolYMD", "0",
		 0)
	
		Entry[211] = new Element(
		211, "",
		0, 0,
		"2403238", "Durchlaufdispergierer Z42 mit Spannverschluss, Clampstutzen DN32 DIN32676",
		"Gleitringdichtung Chromguss/Kohle, FPM (Viton), ohne Generator, Pumpflügel", "",
		"1965", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1623203253.htm",
		"", 1,
		"Z42Inline", "0",
		 0)
	
		Entry[212] = new Element(
		212, "",
		0, 0,
		"2403441", "Generator Dispermix D=60 mm für Schäfte LDT-1H und LDT-1H/S, High Shear Version",
		"bestehend aus Stator Sb=4 mm, Statorträger, L2 Ra &lt; 0,8 µm, für gekapselte Gleitringdichtung", "",
		"1685", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-646484245.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[213] = new Element(
		213, "",
		0, 0,
		"2404652", "Schaft LDT-RG/S-600 ohne Generator mit Reduziergetriebe für Antrieb X40",
		"Gleitringdichtung Keramik/Kohle/EPDM, Eintauchtiefe mit Generator max. E=600 mm", "",
		"1710", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1942698769.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/PB061018.JPG",
		149, 112,
		"2406050", "Technikumsantrieb X50/10, 2,2 kW, 230/400 V, 50 Hz, 3.000 upm, IP55",
		"3 eingebaute Kaltleiterfühler, drehzahlregelbar 0 - 6.000 upm, nicht für Netzbetrieb ohne FU geeignet", "",
		"920", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-347227225.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[215] = new Element(
		215, "",
		0, 0,
		"2407289", "Generator Dispergierer D=70 mm, grob, für Schäfte LDT-1H  oder LDT-1H/S",
		"offene Ausführung mit Vorschneidemesser, für gekapselte Gleitringdichtung", "",
		"1950", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30,47,30,44,45",
		"", "pd789693997.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD,X50YMD,SchaftYMD,X-H,Dis-H", "0",
		 0)
	
		Entry[216] = new Element(
		216, "",
		0, 0,
		"2410301", "Generator Dispermix D=102 mm, für Schäfte LDT-1H oder LDT-1H/S, mit O-Ringabdichtung",
		"bestehend aus Stator Sb=2 mm, Rotor, L2 Ra&lt;0,8µm", "",
		"1195", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-930337757.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[217] = new Element(
		217, "",
		0, 0,
		"2411883", "Generator Dispermix D=60 mm für Schaft LDT oder LDT-1",
		"bestehend aus Stator Sb=2 mm, Statorträger, Schrauben, L1 Ra&lt;1,2 µm", "",
		"1145", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-690742519.htm",
		"", 1,
		"Disperm50", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/Dispermix-04-150.gif",
		150, 140,
		"2400833", "Generator Dispermix D=87 mm für Schäfte LDT und LDT-1, High Shear Version ",
		"bestehend aus Stator Sb=4 mm, Statorträger, Rotor, Schauben, L1 Ra &lt; 1,2 µm", "",
		"1665", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-1485875065.htm",
		"", 1,
		"Disp-H", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/PB061016.JPG",
		149, 112,
		"2402028", "Technikumsantrieb X50/10 Ex, 2,2 kW, 230/400 V, 50 Hz, 3.000 upm IP66",
		"EEx de IIB T4, ATEX II2G/2D, 3 eingebaute Kaltleiterfühler, drehzahlregelbar 0 - 6.000 upm", "",
		"1598", "0",
		"1", 1,
		"Stück", "35",
		"", "pd730481905.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[220] = new Element(
		220, "",
		0, 0,
		"2399204", "Schaft LDT-RG-400 ohne Generator mit Reduziergetriebe",
		"Gleiringdichtung SiC/SiC/FPM (Viton) FDA-konform, Eintauchtiefe mit Generator max. E=400 mm", "",
		"2365", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-314298867.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/PB060959.JPG",
		115, 87,
		"2407531", "Generator Dispermix D=40 mm für Schaft 25T, Sb=4 mm",
		"bestehend aus Stator, Statorträger, Rotor und Schrauben", "",
		"765", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1141194042.htm",
		"", 1,
		"Gener1025", "0",
		 0)
	
		Entry[222] = new Element(
		222, "",
		0, 0,
		"2398461", "Generator Dissolver D=125 mm für Schaft Y-MD und Schaft Y-MD/R",
		"inklusive Gewindeabdeckring für Schaftrohr", "",
		"455", "0",
		"1", 1,
		"Stück", "49",
		"", "pd1159846706.htm",
		"", 1,
		"DissolYMD", "0",
		 0)
	
		Entry[223] = new Element(
		223, "",
		0, 0,
		"2394791", "Schaft LDT-RG-400 ohne Generator mit Reduziergetriebe für Antrieb X40",
		"Gleitringdichtung SiC/SiC/EPDM, Elastomere EPDM, Eintauchtiefe mit Generator max. E=400 mm", "",
		"2365", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-719930192.htm",
		"", 1,
		"SchaftLDT", "0",
		 0)
	
		Entry[224] = new Element(
		224, "",
		0, 0,
		"2389595", "Technikumsantrieb Z66, Ex, 3.000 Fuext, 3,0 kW, 230/400 V, 50 Hz, 3.000 upm",
		"EEx de IIC T4, ATEX II2G mit 3 Kaltleiterfühlern, mit Frequenzumrchter 0 - 12.000 1/min", "",
		"2320", "0",
		"1", 1,
		"Stück", "51",
		"", "pd1711452766.htm",
		"", 1,
		"X50Z66", "0",
		 0)
	
		Entry[225] = new Element(
		225, "",
		0, 0,
		"2409931", "Steuerelement &quot;NOT-AUS&quot; in Verbindung mit Antrieb mit integriertem Frequenzumformer",
		"für X50 und X100, Gehäuse Kunststoff 380-420 V, 50/60 Hz Drehstrom", "",
		"298", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1544957187.htm",
		"", 1,
		"FUX50", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/X50-Antrieb-0003K.JPG",
		150, 115,
		"2409810", "Technikumsantrieb X50/10, 0,55 kW, 400 V, 50 Hz, 3.000 upm, IP55, 3 Kaltleiterfühler",
		"mit integriertem Frequenzumformer, 300-6.000 1/min", "",
		"1870", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-2085255447.htm",
		"", 1,
		"KomplX50", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/2377948-1.jpg",
		149, 112,
		"2409731", "Schaft FLT-1/S, Dispermix-Stator an Streben m/M = 102/120 mm für Antrieb X50",
		"Elastomere EPDM mit Fusslager, Eintauchtiefe mit Generator max. E=600 mm", "",
		"2582", "0",
		"1", 1,
		"Stück", "50",
		"", "pd246238015.htm",
		"", 1,
		"X50Generat", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/X50-Teile-60972.gif",
		150, 113,
		"2409723", "Generator Dispergierer D=70 mm, fein, geschlossene Ausführung für Schaft LDT und LDT-1",
		"bestehend aus Rotor Sb=1 mm und Stator Sb=1 mm, L1 Ra &lt; 1,2 µm", "",
		"835", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-163627131.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/X10-Schaft-0009.JPG",
		150, 113,
		"2375093", "Schaft 30D ohne Generator, Gleitringdichtung Keramik/Siliciumkarbid/FPM (Viton)",
		"rostfreies Edelstahlkugellager, max 6 bar / 50% Vakuum, Eintauchtiefe max. E=190 mm", "",
		"679", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30,47,30,44,45,13,11",
		"", "pd1279697149.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD,X50YMD,SchaftYMD,X-H,Dis-H,Schaft,393602", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/X10-Schaft-0009.JPG",
		150, 113,
		"2369307", "Schaft 30D ohne Generator, Gleiringdichung Keramik/Kohle/FPM (Viton)",
		"rostfreies Edelstahlkugellager, max 6 bar / 50% Vakuum, Eintauchtiefe max. E=190 mm", "",
		"420", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30,47,30,44,45,13,11,13,11",
		"", "pd-772947085.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD,X50YMD,SchaftYMD,X-H,Dis-H,Schaft,393602,Schaft,393602", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/X10-Schaft-0009.JPG",
		150, 113,
		"2375773", "Schaft 30D ohne Generator, Gleitringdichtung Keramik/Kohle/FFKM (Kalrez)",
		"rostfreies Edelstahlkugellager, max 6 bar / 50% Vakuum, Eintauchtiefe max. E=190 mm", "",
		"495", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30,47,30,44,45,13,11,13,11,13,11",
		"", "pd1779614425.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD,X50YMD,SchaftYMD,X-H,Dis-H,Schaft,393602,Schaft,393602,Schaft,393602", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/X10-Schaft-0009.JPG",
		150, 113,
		"2396735", "Schaft 30D ohne Generator, Gleitringdichtung Keramik/Siliciumkarbid/FFKM (Kalrez)",
		"rostfreies Edelstahlkugellager, max 6 bar / 50% Vakuum, Eintauchtiefe max. E=190 mm", "",
		"775", "0",
		"1", 1,
		"Stück", "5,10,5,10,5,10,4,10,6,10,6,10,7,10,7,10,8,10,8,10,8,10,37,28,37,28,38,28,9,2,15,33,31,48,28,37,28,38,33,53,48,31,48,31,53,33,7,10,7,10,8,10,26,20,24,26,20,24,26,20,24,9,1,2,9,2,20,24,20,24,21,25,29,40,29,40,29,40,29,40,32,49,32,49,32,49,32,49,30,50,49,32,21,25,47,30,47,30,44,45,13,11,13,11,13,11,13,11",
		"", "pd1584310447.htm",
		"", 1,
		"3910,Disp750,3910,Disp750,3910,Disp750,3906,Disp750,3934,Disp750,3934,Disp750,3936,Disp750,3936,Disp750,3933,Disp750,3933,Disp750,3933,Disp750,KopfLSM,KopfLDT,KopfLSM,KopfLDT,Disperm50,KopfLDT,Misch20,Disp25,X10Zubeh,Zub40,MischMD,LSM-YMD,KopfLDT,KopfLSM,KopfLDT,Disperm50,Zub40,ZubX50,LSM-YMD,MischMD,LSM-YMD,MischMD,ZubX50,Zub40,3936,Disp750,3936,Disp750,3933,Disp750,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Z42Inline,Disp40,Disp41,Misch20,X10-25,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,SchaftYMD,X50Generat,DissolYMD,DissMD,Dis40,Dis41,X50YMD,SchaftYMD,X50YMD,SchaftYMD,X-H,Dis-H,Schaft,393602,Schaft,393602,Schaft,393602,Schaft,393602", "0",
		 0)
	
		Entry[233] = new Element(
		233, "",
		0, 0,
		"2350973", "Gefässhalterung für Stativ PS1 2369601 und Kreuzklemme SKL 1.1",
		"für Stative U1, U2, GU1,und GU2", "",
		"55", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1279627805.htm",
		"", 1,
		"Zub40", "0",
		 0)
	
		Entry[234] = new Element(
		234, "",
		0, 0,
		"2385614", "Schaft LDT-1H/S-1000 in Hygieneausführung ohne Generator für Antreib X50",
		"Gleitringdichtung Keramik/Kohle/gekapselt FPM (Viton), maximale Drehzahl 6.000 upm, Ra &lt; 0,8µm", "",
		"3195", "0",
		"1", 1,
		"Stück", "41",
		"", "pd567964130.htm",
		"", 1,
		"SchaftX50H", "0",
		 0)
	
		Entry[235] = new Element(
		235, "",
		0, 0,
		"2375642", "Schaft LDT-1H/S-1000 in Hygiene-Ausführung ohne Generator für Antrieb X50",
		"Gleitringdichtung Keramik/Kohle/gekapselt/EPDM, Eintauchtiefe mit Generator max. 1000 mm", "",
		"3195", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-1348430044.htm",
		"", 1,
		"SchaftX50H", "0",
		 0)
	
		Entry[236] = new Element(
		236, "",
		0, 0,
		"2399676", "Schaft LDT-1H/S-1000 ohne Generator, Gleitringdichtung SiC/SiC/gekapselt/FFKM, Elastomere FFKM",
		"Eintauchtiefe mit Generator max. E=1.000 mm, max. zulässige Drehzahl 6.000 1/min, für Antrieb X50", "",
		"3875", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-2132165020.htm",
		"", 1,
		"SchaftX50H", "0",
		 0)
	
		Entry[237] = new Element(
		237, "",
		0, 0,
		"2400550", "Generator Dispermix D=102/120 mm für Schaft LDT",
		"bestehend aus Stator Sb=4,0 mm und Rotor, Blattschränkung 35°", "",
		"895", "0",
		"1", 1,
		"Stück", "39",
		"", "pd1868584467.htm",
		"", 1,
		"DispegX50", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/HG10-0006.gif",
		150, 273,
		"HG10", "Fahrbares Stative HG10 mit Handkurbel für X50 Antrieb",
		"Hubhöhe ca. 1.100 mm, Platzbedarf ca. 800x800 mm, Stahl lackiert, zwei feste Rollen", "",
		"0", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-1024055413.htm",
		"", 1,
		"Stative", "0",
		 1)
	
		Entry[239] = new Element(
		239, "assets/thumb/HG19-X50-Verlauf.gif",
		150, 291,
		"HG10VA", "Fahrbares Stative HG19 mit Handkurbel für X50 Antrieb",
		"Hubhöhe ca. 1.000 mm, Platzbedarf ca. 680x900 mm, Edelstahl, zwei feste und eine lenkbare Rollen", "",
		"0", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-564714319.htm",
		"", 1,
		"Stative", "0",
		 1)
	
		Entry[240] = new Element(
		240, "assets/thumb/Labor-X50-0019.gif",
		150, 200,
		"SSU-X50", "Stative für X50 Antriebe",
		"Höhe 1.000 mm oder 1.500 mm, zulässige Last 25 kg", "",
		"0", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1292582926.htm",
		"", 1,
		"Stative", "0",
		 1)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};
