	// 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="99" height="24" 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/KS-ILA-2003_010_0001_q-line double.jpg",
		100, 123,
		"155022", "Q-Line Double",
		"", "KS Licht und Elektrotechnik GmbH",
		"199", "6.4",
		"1", 1,
		"Stück", "33",
		"", "pd1098524036.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/KS-ILA-2003_013_0004_i-line reflektor.jpg",
		100, 81,
		"157012", "i-line Pendel, horizontal,silber-grau",
		"Scheibe blau frosted, T5 2x39W", "KS Licht und Elektrotechnik GmbH",
		"86.54", "3.2",
		"1", 1,
		"Stück", "33",
		"Farbe;Blau@", "pd1098991412.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/KS-ILA-2003_034_0001_itwigla.gif",
		75, 100,
		"151621", "Twigla-Deckenleuchte",
		"150W max. R7s 78mm, ohne Leuchtmittel", "KS Licht und Elektrotechnik GmbH",
		"79.9", "3.5",
		"1", 1,
		"Stück", "33",
		"", "pd580886657.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/138032_nv-schiene_flips.gif",
		150, 135,
		"KS", "NV-Strahler Flips, silber-grau",
		"", "KS Licht und Elektrotechnik GmbH",
		"29.9", "0.14",
		"1", 1,
		"Stück", "36",
		"", "pd-392214932.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/KS-ILA-2003_085_0002_kardaframe.jpg",
		100, 282,
		"154402", "Stehleuchte Kardaframe, silber-grau",
		"4 x 50W GU10, ohne Leuchtmittel", "KS Licht und Elektrotechnik GmbH",
		"98", "2.7",
		"1", 1,
		"Stück", "39",
		"", "pd1098993760.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/KS-ILA-2003_089_0005_dewifloor.jpg",
		100, 281,
		"146509", "Dewi Floor, silber-grau",
		"max.50W, Stiftsockel, incl. Leuchtmittel", "KS Licht und Elektrotechnik GmbH",
		"95", "5.4",
		"1", 1,
		"Stück", "39",
		"", "pd1028050174.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/KS-ILA-2003_089_0004_dewidesk.jpg",
		100, 204,
		"146209", "Dewi Desk, silbergrau",
		"max.50W, Stiftsockel, incl. Leuchtmittel", "KS Licht und Elektrotechnik GmbH",
		"75", "3.7",
		"1", 1,
		"Stück", "39",
		"", "pd1099071056.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/ufobeamblau.jpg",
		150, 98,
		"151757", "Wandleuchte &quot;Ufo Beam&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"34.45", "0.45",
		"1", 1,
		"Stück", "40",
		"Farbe;Blau@", "pd-482329729.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/KS-ILA-2003_236_0005_nv-seilleuchte qrb.jpg",
		150, 75,
		"186462", "NV-Seilstrahler &quot;QRB&quot;",
		"chrom", "KS Licht und Elektrotechnik GmbH",
		"13.99", "0.1",
		"1", 1,
		"Stück", "36",
		"", "pd1030904840.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/KS-ILA-2003_nv-seilleuchte segelleuchte.jpg",
		150, 129,
		"186451", "NV-Seilstrahler &quot;Segelleuchte&quot;",
		"chrom", "KS Licht und Elektrotechnik GmbH",
		"11.99", "0.15",
		"1", 1,
		"Stück", "36",
		"", "pd1178228550.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/KS-ILA-2003_nv-seilleuchte konvex.jpg",
		90, 150,
		"186402", "NV-Seilstrahler &quot;Konvex&quot;",
		"chrom", "KS Licht und Elektrotechnik GmbH",
		"11.99", "0.07",
		"1", 1,
		"Stück", "36",
		"", "pd2138400484.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/KS-ILA-2003_nv-seilleuchte vampir.jpg",
		150, 94,
		"182047", "NV-Seil-Lampenschirm &quot;Vampir&quot;",
		"Schirm blau", "KS Licht und Elektrotechnik GmbH",
		"3.5", "0",
		"1", 1,
		"Stück", "36",
		"Farbe;Blau@", "pd-823877430.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/KS-ILA-2003_nv-seilleuchte segel.jpg",
		150, 98,
		"182037", "NV-Seil-Lampenschirm &quot;Segel&quot;",
		"Lampenschirm blau", "KS Licht und Elektrotechnik GmbH",
		"2.5", "0.1",
		"1", 1,
		"Stück", "36",
		"Farbe;Blau@", "pd275901744.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/KS-ILA-2003_nv-lampenhalterschwenkb.jpg",
		150, 71,
		"181110", "NV-Seilsystem &quot;lampenhalter&quot;",
		"schwarz", "KS Licht und Elektrotechnik GmbH",
		"5.49", "0.35",
		"1", 1,
		"Stück", "36",
		"", "pd-1039968546.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/KS-ILA-2003_nv-seilleuchte saluna.jpg",
		150, 89,
		"181180", "NV-Seilstrahler &quot;Saluna&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"18.49", "0.18",
		"1", 1,
		"Stück", "36",
		"", "pd1099821572.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/KS-ILA-2003_nv-seilleuchte saluna25.jpg",
		75, 150,
		"181190", "NV-Seilstrahler &quot;Saluna 25&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"18.49", "0",
		"1", 1,
		"Stück", "36",
		"", "pd2027665362.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/KS-ILA-2003_239_0002_nv-wandhalt lang m spannvorr.jpg",
		150, 171,
		"186312", "NV-Seil-Wandhalter",
		"", "KS Licht und Elektrotechnik GmbH",
		"12.45", "0.45",
		"1", 1,
		"Stück", "36",
		"Länge;10 cm@", "pd-1427904618.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/KS-ILA-2003_238_0007_nv-seil.jpg",
		150, 120,
		"139004", "NV-Seil",
		"Querschnitt 4 mm²", "KS Licht und Elektrotechnik GmbH",
		"0.49", "0",
		"1", 1,
		"Stück", "36",
		"Grösse;4 mm²@", "pd2080589034.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/KS-ILA-2003_wallqrb111.jpg",
		150, 110,
		"154262", "Wandstrahler &quot;Wall QRB111&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"34.95", "0.7",
		"1", 1,
		"Stück", "38",
		"", "pd1099513140.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/KS-ILA-2003_wallmr16.jpg",
		150, 101,
		"154272", "Wandstrahler &quot;Wall MR16&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"48.95", "0.4",
		"1", 1,
		"Stück", "38",
		"", "pd-1874927397.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/KS-ILA-2003_furniture2.jpg",
		150, 110,
		"1472118", "&quot;Unterbauleuchte &quot;Furniture 2&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"34.9", "0.8",
		"1", 1,
		"Stück", "38",
		"Farbe;brushed metal@", "pd-305265118.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/KS-ILA-2003_furniture.jpg",
		150, 107,
		"1473011", "Unterbauleuchte &quot;Furniture 3&quot;",
		"", "KS Licht und Elektrotechnik GmbH",
		"39.9", "1.4",
		"1", 1,
		"Stück", "38",
		"Farbe;brushed metal@", "pd1225629111.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/images/nopicture.gif",
		77, 52,
		"147320", "Verbindungsset",
		"", "KS Licht und Elektrotechnik GmbH",
		"2.49", "0",
		"1", 1,
		"Stück", "38",
		"Farbe;Schwarz@Länge;100 cm@", "pd-380243857.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/allgebrauchslampe.jpg",
		100, 121,
		"RAD-11103320", "Allgebrauchslampe",
		"", "Radium® ",
		"0.36", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;60W matt@", "pd-1937515959.htm",
		"", 10,
		"14", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/stiftsockellampe.jpg",
		75, 75,
		"RAD-22311200", "Niedervolt-Halogen-Leuchte",
		"", "Radium® ",
		"1.09", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;10W-12V-G4@", "pd-1990427338.htm",
		"", 10,
		"14", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/nv-halogen.jpg",
		66, 80,
		"RAD-22310176", "Niedervolt-Halogen-Leuchte",
		"", "Radium® ",
		"1.89", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;20W FL-38°@", "pd-822887640.htm",
		"", 10,
		"14", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/hochvolthalogen.jpg",
		100, 100,
		"RAD-22313857", "Hochvolt-Halogen-Lampen",
		"", "Radium® ",
		"4.99", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;35W - Flood@", "pd-156072910.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/kerzenlampematt.jpg",
		100, 100,
		"RAD-12412302", "Kerzenlampe, standard",
		"", "Radium® ",
		"0.69", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;25W matt@", "pd1093101046.htm",
		"", 10,
		"14", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/birnlampeklar.jpg",
		100, 100,
		"RAD-12301217", "Backofenlampe",
		"", "Radium® ",
		"1.95", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;15W klar@", "pd-599615775.htm",
		"", 5,
		"14", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/images/nopicture.gif",
		77, 52,
		"KS-519425", "Hochvolt-Halogen-Leuchtmittel G9",
		"", "KS Licht und Elektrotechnik GmbH",
		"8.9", "0",
		"1", 1,
		"Stück", "42",
		"Wattage;25W@", "pd1096380748.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/66017fr01.jpg",
		120, 120,
		"PAU-660.16", "ALUMBRA Arcade",
		"260x260x60mm, 2x9W G23", "Paulmann",
		"92.9", "0",
		"1", 1,
		"Stück", "40",
		"Grösse;260x260x60mm@", "pd1104066657.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/97188fr01.jpg",
		100, 58,
		"PAU-971.88", "NV-Seilsystem Comte 150",
		"", "Paulmann",
		"124.9", "0",
		"1", 1,
		"Stück", "36",
		"", "pd-800419905.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/97189fr01.jpg",
		100, 58,
		"PAU-971.89", "NV-Seilsystem Arco 105",
		"", "Paulmann",
		"108.9", "0",
		"1", 1,
		"Stück", "36",
		"", "pd419714921.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/97198fr01.jpg",
		100, 58,
		"PAU-971.98", "NV-Seilsystem Tangens 150",
		"", "Paulmann",
		"92.9", "0",
		"1", 1,
		"Stück", "36",
		"", "pd740300805.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/97200fr01.jpg",
		100, 58,
		"PAU-972.00", "NV-Seilsystem Arco 60",
		"", "Paulmann",
		"85.9", "0",
		"1", 1,
		"Stück", "36",
		"", "pd1104062851.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/66020fr01.jpg",
		120, 120,
		"PAU-660.20", "ALUMBRA Pavillon",
		"", "Paulmann",
		"124.5", "0",
		"1", 1,
		"Stück", "40",
		"", "pd239792038.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/62311fr012x40.jpg",
		120, 70,
		"PAU-623.11", "ALUMBRA Balcon 2x40W",
		"", "Paulmann",
		"92.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd632584414.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/61311fr011x40.jpg",
		120, 70,
		"PAU-613.11", "ALUMBRA Balcon",
		"", "Paulmann",
		"58.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd1104068400.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/99353fr01.jpg",
		120, 120,
		"PAU-993.53", "NV-Einbauleuchten, 4er-Set, weiss",
		"", "Paulmann",
		"55.88", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1127667103.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/99354fr01.jpg",
		120, 120,
		"PAU-993.54", "NV-Einbauleuchten, 4er-Set, Titan",
		"", "Paulmann",
		"62", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1577418777.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/99355fr01.jpg",
		120, 120,
		"PAU-993.55", "NV-Einbauleuchten, 4er-Set, messing-matt",
		"", "Paulmann",
		"62", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1153162569.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/99356fr01.jpg",
		120, 120,
		"PAU-993.56", "NV-Einbauleuchten, 4er-Set, chrom",
		"", "Paulmann",
		"62", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1946848267.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/99358fr01.jpg",
		120, 120,
		"PAU-993.58", "NV-Einbauleuchten, 4er-Set, gold",
		"", "Paulmann",
		"62", "0",
		"1", 1,
		"Stück", "35",
		"", "pd620300531.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/99373fr01.jpg",
		120, 120,
		"PAU-993.73", "NV-Einbauleuchten, 6er-Set, weiss",
		"", "Paulmann",
		"86.9", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-438273161.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/99374fr01.jpg",
		120, 120,
		"PAU-993.74", "NV-Einbauleuchten, 6er-Set, titan",
		"", "Paulmann",
		"93.1", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1364534381.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/99375fr01.jpg",
		120, 120,
		"PAU-993.75", "NV-Einbauleuchten, 6er-Set, messing-matt",
		"", "Paulmann",
		"91.9", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1618409313.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/99376fr01.jpg",
		120, 120,
		"PAU-993.76", "NV-Einbauleuchten, 6er-Set, chrom",
		"", "Paulmann",
		"93.1", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1300082475.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/99378fr01.jpg",
		120, 120,
		"PAU-993.78", "NV-Einbauleuchten, 6er-Set, gold",
		"", "Paulmann",
		"93.1", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-67795879.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/17943fr01.jpg",
		120, 120,
		"PAU-179.43", "NV-Einbauleuchte, weiss",
		"", "Paulmann",
		"4.64", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1872305733.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/17944fr01.jpg",
		120, 120,
		"PAU-179.44", "NV-Einbauleuchte, titan",
		"", "Paulmann",
		"5.51", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1970566481.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/17946fr01.jpg",
		120, 120,
		"MATIC 10", "Rohrmotor ",
		"m. mech. Ends.", "Paulmann",
		"79.9", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1701135919.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/17948fr01.jpg",
		120, 120,
		"PAU-179.48", "NV-Einbauleuchte, gold",
		"", "Paulmann",
		"5.51", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1191720323.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/17960fr01.jpg",
		120, 120,
		"PAU-179.60", "NV-Einbaustrahler, messing-matt",
		"", "Paulmann",
		"5.51", "0",
		"1", 1,
		"Stück", "35",
		"", "pd695186531.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/97202fr01.jpg",
		80, 80,
		"PAU-972.02", "NV-Seilsystem Conus 105",
		"", "Paulmann",
		"93.5", "0",
		"1", 1,
		"Stück", "36",
		"", "pd1104341967.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/images/nopicture.gif",
		77, 52,
		"PAU-971.80", "NV-Seilsystem Powerline 300",
		"", "Paulmann",
		"141.5", "0",
		"1", 1,
		"Stück", "36",
		"", "pd1377702549.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/97111fr01.jpg",
		100, 100,
		"PAU-971.11", "NV-Seilsystem Verbier",
		"", "Paulmann",
		"116.9", "0",
		"1", 1,
		"Stück", "36",
		"", "pd1839066827.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/97112fr01.jpg",
		100, 58,
		"PAU-971.12", "NV-Seilsystem Montreux",
		"", "Paulmann",
		"123.2", "0",
		"1", 1,
		"Stück", "36",
		"", "pd1104345927.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/97206fr01.jpg",
		100, 58,
		"PAU-972.06", "NV-Seilsystem Pipeline Quadro 150   4x35W",
		"", "Paulmann",
		"109", "0",
		"1", 1,
		"Stück", "36",
		"", "pd-901542195.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/97205fr01.jpg",
		100, 58,
		"PAU-972.05", "NV-Seilsystem Pipeline Quadro 105  5x20W",
		"", "Paulmann",
		"101.5", "0",
		"1", 1,
		"Stück", "36",
		"", "pd-163469885.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/97154fr01.jpg",
		100, 58,
		"PAU-971.54", "NV-Seilsystem Monte Carlo",
		"", "Paulmann",
		"171.5", "0",
		"1", 1,
		"Stück", "36",
		"", "pd1482206633.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/138202_nv-schiene_längsverbinder.gif",
		150, 95,
		"138202", "NV-Schienen-Verbinder",
		"silber-grau", "KS Licht und Elektrotechnik GmbH",
		"8.9", "0.08",
		"1", 1,
		"Stück", "37",
		"", "pd-393476615.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/138221_nv-schiene_1mtr.gif",
		150, 84,
		"138221", "NV-Schiene LINUX LIGHT",
		"1 m Schiene, silber-grau", "KS Licht und Elektrotechnik GmbH",
		"13.5", "0.5",
		"1", 1,
		"Stück", "37",
		"Länge;1 mtr.@", "pd2144127871.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/KS-ILA-2003_113_0006_orionjojo.jpg",
		100, 165,
		"138237", "Orion JoJo",
		"", "KS Licht und Elektrotechnik GmbH",
		"44.55", "1",
		"1", 1,
		"Stück", "37",
		"Farbe;Blau@", "pd-1325211995.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/138252_nv-schiene_einspeiser.gif",
		150, 145,
		"138252", "NV-Schienen-Einspeiser",
		"silber-grau", "KS Licht und Elektrotechnik GmbH",
		"14.5", "0.24",
		"1", 1,
		"Stück", "37",
		"", "pd1099340179.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/KS-ILA-2003_108_0002_stratos.jpg",
		100, 75,
		"138297", "Strahler Stratos, silber-grau",
		"Schirm Echtglas blau", "KS Licht und Elektrotechnik GmbH",
		"15.75", "0.16",
		"1", 1,
		"Stück", "37",
		"Farbe;Blau@", "pd669848888.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/138302_nv-schiene_aero.gif",
		150, 150,
		"138302", "NV-Strahler Aero, silber-grau",
		"max.50W MR16", "KS Licht und Elektrotechnik GmbH",
		"27.5", "0.13",
		"1", 1,
		"Stück", "37",
		"", "pd-1883755122.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/138402_nv-schiene_flexverbinder.gif",
		150, 77,
		"138402", "NV-Schienen-Flexverbinder",
		"silber-grau", "KS Licht und Elektrotechnik GmbH",
		"14.9", "0.06",
		"1", 1,
		"Stück", "37",
		"", "pd-875421489.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/834010fr01.jpg",
		120, 70,
		"PAU-834.010", "Halogenstab 230V 250W",
		"", "Paulmann",
		"4.9", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1104433525.htm",
		"", 2,
		"14", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/66211fr01.jpg",
		42, 70,
		"PAU-662.11", "Halogenspot Hilke 1-fach",
		"", "Paulmann",
		"12.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1104615706.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/66212fr01.jpg",
		27, 70,
		"PAU-662.12", "Halogenspot Hilke 2-fach",
		"", "Paulmann",
		"25.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1360055512.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/66213fr01.jpg",
		120, 70,
		"PAU-662.13", "Halogenspot Hilke 3-fach",
		"", "Paulmann",
		"31.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1022435642.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/66214fr01.jpg",
		120, 70,
		"PAU-662.14", "Halogenspot Hilke 3-fach, rund",
		"", "Paulmann",
		"39.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1997224548.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/66360fr01.jpg",
		120, 70,
		"PAU-663.60", "Halogenspot Iowa 1-fach",
		"", "Paulmann",
		"9.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd714061618.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/66361fr01.jpg",
		120, 70,
		"PAU-663.61", "Halogenspot Iowa 2-fach",
		"", "Paulmann",
		"15.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1071122256.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/66362fr01.jpg",
		120, 70,
		"PAU-663.62", "Halogenspot Iowa 3-fach",
		"", "Paulmann",
		"24.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-790213026.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/79114fr01.jpg",
		120, 70,
		"PAU-791.14", "Halogenspot Focus 1-fach",
		"", "Paulmann",
		"31", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1104613334.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/79115fr01.jpg",
		120, 70,
		"PAU-791.15", "Halogenspot Focus 2-fach",
		"", "Paulmann",
		"46.6", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-905899532.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/66280fr01.jpg",
		120, 70,
		"PAU-662.80", "Halogenspot Tangens 1-fach",
		"", "Paulmann",
		"31", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1104771781.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/66282fr01.jpg",
		120, 70,
		"PAU-662.82", "Halogenspot Tangens 2-fach",
		"", "Paulmann",
		"46.6", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1840098693.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/66284fr01.jpg",
		120, 70,
		"PAU-662.84", "Halogenspot Tangens 3-fach",
		"", "Paulmann",
		"62.2", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1743976159.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/66286fr01.jpg",
		120, 70,
		"PAU-662.86", "Halogenspot Tangens 4-fach",
		"", "Paulmann",
		"85.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-735414217.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/66349fr01.jpg",
		120, 70,
		"PAU-663.49", "Halogenspot Tina 1-fach",
		"", "Paulmann",
		"9.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-59960003.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/66350fr01.jpg",
		120, 70,
		"PAU-663.50", "Halogenspot Tina 2-fach",
		"", "Paulmann",
		"20.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1425911373.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/66351fr01.jpg",
		120, 70,
		"PAU-663.51", "Halogenspot Tina 3-fach",
		"", "Paulmann",
		"31.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1827339033.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/66064fr01.jpg",
		120, 70,
		"PAU-660.64", "Halogenspot Queen 2-fach",
		"", "Paulmann",
		"54.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-333800721.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/66069fr01.jpg",
		120, 70,
		"PAU-660.69", "Halogenspot Queen 3-fach",
		"", "Paulmann",
		"70.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1742350667.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/66061fr01.jpg",
		120, 70,
		"PAU-660.61", "Halogenspot Queen 3-fach, rund",
		"", "Paulmann",
		"70.5", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1276628971.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/66096fr01.jpg",
		120, 70,
		"PAU-660.96", "Deckenleuchte Toulouse",
		"", "Paulmann",
		"109.9", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-238648303.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/627fr01.jpg",
		120, 120,
		"PAU-627", "Halogenspot Pumuckl 2-fach",
		"", "Paulmann",
		"39.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1730638203.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/566fr01.jpg",
		120, 70,
		"PAU-566", "Wandspot Pumuckl 1-fach",
		"", "Paulmann",
		"18.7", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1105002636.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/567fr01.jpg",
		120, 70,
		"PAU-567", "Spot Pumuckl 2-fach",
		"", "Paulmann",
		"31", "0",
		"1", 1,
		"Stück", "34",
		"", "pd139626906.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/569fr01.jpg",
		120, 70,
		"PAU-569", "Spot Pumuckl 3-fach",
		"", "Paulmann",
		"46.6", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1105007487.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/638fr01.jpg",
		120, 70,
		"PAU-638", "Wandleuchte Pumuckl",
		"", "Paulmann",
		"26.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd445089591.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/637fr01.jpg",
		120, 70,
		"PAU-637", "Tischleuchte Pumuckl",
		"", "Paulmann",
		"26.9", "0",
		"1", 1,
		"Stück", "39",
		"", "pd470743430.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/639fr01.jpg",
		120, 70,
		"PAU-639", "Pendelleuchte Pumuckl",
		"", "Paulmann",
		"26.9", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1105009048.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/640fr01.jpg",
		120, 70,
		"PAU-640", "Pendelleuchte Flieger Pumuckl",
		"", "Paulmann",
		"34.9", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1417887777.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/97701fr01.jpg",
		120, 70,
		"PAU-997.01", "Profi Trafo 105VA 230/12V",
		"", "Paulmann",
		"29.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-889228652.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/images/nopicture.gif",
		77, 52,
		"PAU-997.02", "ECO Trafo 105VA 230/12V",
		"", "Paulmann",
		"17.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd661220066.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/97715fr01.jpg",
		120, 70,
		"PAU-997.15", "Profi Trafo 150VA 230/12V",
		"", "Paulmann",
		"37.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd1751225312.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/97715fr01.jpg",
		120, 70,
		"PAU-997.16", "ECO Trafo 150VA 230/12V",
		"", "Paulmann",
		"29.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-1114656905.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/97720fr01.jpg",
		120, 70,
		"PAU-977.20", "Profi Trafo 200VA 230/12V",
		"", "Paulmann",
		"53.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-225829251.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/97725fr01.jpg",
		120, 70,
		"PAU-977.25", "Profi Trafo 250VA 230/12V",
		"", "Paulmann",
		"59.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd1537441011.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/626fr01.jpg",
		120, 70,
		"PAU-626", "Halogenspot Pumuckl 1-fach ",
		"", "Paulmann",
		"25.9", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1749893573.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/97728fr01.jpg",
		120, 70,
		"PAU-977.28", "Disc Trafo 70VA 230/12V",
		"", "Paulmann",
		"19.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd1105022050.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/97729fr01.jpg",
		120, 70,
		"PAU-977.29", "Disc Trafo 105VA 230/12V",
		"", "Paulmann",
		"22.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-355577504.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/97730fr01.jpg",
		120, 70,
		"PAU-977.30", "Disc Trafo 70VA 230/12V m. Ltg.u. Stecker",
		"", "Paulmann",
		"22.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd1655772814.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/97731fr01.jpg",
		120, 70,
		"PAU-977.31", "Disc Trafo 105VA 230/12V m. Ltg. u. Stecker",
		"", "Paulmann",
		"25.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd935745388.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/97736fr01.jpg",
		120, 70,
		"PAU-977.36", "Profi Trafo 50VA 230/12V",
		"", "Paulmann",
		"25.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-1086637190.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/97717fr01.jpg",
		120, 70,
		"PAU-977.17", "Flach Trafo 120VA 230/12V m. AMP-Anschl.",
		"", "Paulmann",
		"27.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-282118600.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/images/nopicture.gif",
		77, 52,
		"PAU-977.18", "Flach Trafo 80VA 230/12V m. AMP-Anschl.",
		"", "Paulmann",
		"19.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-2085820634.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/97717fr01.jpg",
		120, 70,
		"PAU-977.19", "Flach Trafo 105VA 230/12V m. AMP-Anschl.",
		"", "Paulmann",
		"25.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-741475900.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/97786fr01.jpg",
		120, 70,
		"PAU-977.86", "Trafo 105VA 230/12V IP65",
		"", "Paulmann",
		"48.5", "0",
		"1", 1,
		"Stück", "41",
		"", "pd993029648.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/9799919fr01.jpg",
		120, 70,
		"PAU-979.9969", "Feinsicherungen",
		"", "Paulmann",
		"1.99", "0",
		"1", 1,
		"Stück", "41",
		"Grösse;0,63 Amp.@", "pd1078387971.htm",
		"", 4,
		"20", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/1812fr01.jpg",
		120, 70,
		"PAU-181.2", "Deckenverteilerdose, weiss, 71mm",
		"", "",
		"25.95", "0",
		"1", 1,
		"Stück", "41",
		"", "pd1105041881.htm",
		"", 10,
		"20", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/95230fr01.jpg",
		120, 70,
		"PAU-952.30", "Deckenverteilerdose, weiss, 60mm",
		"", "",
		"0.99", "0",
		"1", 1,
		"Stück", "41",
		"", "pd246503343.htm",
		"", 10,
		"20", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/79026fr01.jpg",
		200, 200,
		"PAU-790.26", "Deckenleuchte Flirt, 10-fach",
		"", "Paulmann",
		"169.9", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1105043109.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/79030fr01.jpg",
		120, 70,
		"PAU-790.29", "Deckenleuchte Flirt, 7-fach",
		"", "Paulmann",
		"159.9", "0",
		"1", 1,
		"Stück", "33",
		"", "pd593926491.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/HD7810_weiss.jpg",
		80, 80,
		"PHI-HD 7810/10", "Kaffe-Pad-Automat Senseo",
		"", "",
		"72.99", "0",
		"1", 1,
		"Stück", "62",
		"Farbe;Weiss@", "pd-2094646559.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/senseo pads_entkoff_gross.jpg",
		80, 63,
		"PHI-Pads mild", "Senseo Kaffepads, entkoffeiniert",
		"", "",
		"2.49", "0",
		"1", 1,
		"Stück", "62",
		"", "pd1110652303.htm",
		"", 10,
		"22", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/senseo pads_milano_gross.jpg",
		63, 80,
		"PHI-Pads milano", "Senseo Kaffepads, milano",
		"", "",
		"2.49", "0",
		"1", 1,
		"Stück", "62",
		"", "pd-1238994347.htm",
		"", 10,
		"22", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/senseo pads_de janero_gross.jpg",
		63, 80,
		"PHI-Pads dejanero", "Senseo Kaffepads, De Janero",
		"", "",
		"2.49", "0",
		"1", 1,
		"Stück", "62",
		"", "pd1110730145.htm",
		"", 10,
		"22", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/melitta_mycup_maschine_und_kaffees.jpg",
		131, 80,
		"MEL-E901", "Kaffee-Pad-Automat My Cup",
		"", "",
		"99.99", "0",
		"1", 1,
		"Stück", "62",
		"", "pd954372652.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/pads mild.jpg",
		40, 80,
		"MEL-Kaffee-Pad, mild", "Kaffee-Pad, mild",
		"", "",
		"2.99", "0",
		"1", 1,
		"Stück", "62",
		"", "pd1110732308.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/6044543 M630-1.jpg",
		80, 80,
		"MEL-M640-1", "Kaffee-Automat",
		"", "",
		"34.5", "0",
		"1", 1,
		"Stück", "62",
		"Farbe;Weiss@", "pd1601274234.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/6044785 M622-12.jpg",
		80, 80,
		"MEL-M622-1/2", "Kaffee-Automat",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "62",
		"", "pd-1733891016.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Abb_WeihnPaket2_215_1100510187.jpg",
		107, 80,
		"GIR-Radio 0315 27", "Radio UP für Schalterdose",
		"", "GIRA",
		"124.5", "0",
		"1", 1,
		"Stück", "50",
		"Farbe;reinweiss@", "pd1047919644.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/609vw.jpg",
		82, 80,
		"JUN-609VW-1", "Jalousieschalter AP/FR",
		"", "JUNG",
		"24.9", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-1836769209.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/609va.jpg",
		85, 80,
		"JUN-609VA-1", "Jalousieschalter AP",
		"", "JUNG",
		"14.9", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-147440691.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/804.18w.jpg",
		85, 80,
		"JUN-804.18 W-1", "Schlüsselschalter AP/FR ohne Zylinder",
		"", "JUNG",
		"35.9", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1921522371.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/809vw.jpg",
		86, 80,
		"JUN-809VW-1", "Jalousieschalter AP/FR",
		"", "JUNG",
		"24.9", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-231200087.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/809vw.jpg",
		86, 80,
		"JUN-809VW-2", "Jalousieschalter AP/FR",
		"", "JUNG",
		"24.9", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-305687297.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/9200bild.jpg",
		29, 80,
		"RAD-RO 9200", "Rolltron (ohne Display)",
		"", "Rademacher",
		"159.9", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-1668463671.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/ir_f_rade.jpg",
		113, 80,
		"RAD-IR F", "IR Fernbedienung f. Troll und Modi",
		"(9490)", "Rademacher",
		"92.5", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-1442284953.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/images/nopicture.gif",
		77, 52,
		"RAD-DUO", "Zeitschaltuhr &quot;Duomatic&quot;",
		"708250GUWKPL", "Rademacher",
		"59.99", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-1354178325.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/sdm3710bild.jpg",
		150, 80,
		"RAD-SD M", "Sonnen- und Dämmerungssensor für Modi",
		"", "Rademacher",
		"17.95", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-341420317.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/9600c-bild.jpg",
		29, 80,
		"RAD-RO 9600 C", "Rolltron (mit Display)",
		"", "Rademacher",
		"209.9", "0",
		"1", 1,
		"Stück", "20",
		"", "pd755159839.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/SD_T_sonnensensor.jpg",
		67, 80,
		"RAD-SD T", "Sonnen- und Dämmerungssensor für Troll - 0,75 m lang",
		"(3720)", "Rademacher",
		"22.5", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1099598801.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/troll2610-01.jpg",
		86, 80,
		"RAD-TR2610C", "Zeitschaltuhr &quot;Troll&quot; m . Sonnen-Dämmerungsfunktion",
		"", "Rademacher",
		"82.5", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1870789905.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Ergo1n.jpg",
		150, 108,
		"NIC-ERGO 1", "Handsender, 1 Kanal &quot;ERGO 1&quot;",
		"", "NICE",
		"35", "0",
		"1", 1,
		"Stück", "19",
		"", "pd-1639336264.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/plano1.jpg",
		72, 80,
		"NIC-PLANO 1", "Wandsender, 1 Kanal &quot;PLANO 1&quot;",
		"", "NICE",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"", "pd-1054424558.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/plano1.jpg",
		72, 80,
		"NIC-PLANO 6", "Wandsender, 6 Kanal &quot;PLANO 6&quot;",
		"", "NICE",
		"62", "0",
		"1", 1,
		"Stück", "19",
		"", "pd-629487810.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/volo_windundsonnenwaechterftt0klein.jpg",
		100, 83,
		"NIC-VOLO", "Windwächter",
		"passend für TT0", "NICE",
		"49.9", "0",
		"1", 1,
		"Stück", "18,19",
		"", "pd-1350053900.htm",
		"", 1,
		"33,34", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/plano1.jpg",
		72, 80,
		"NIC-PLANO 4", "Wandsender, 4 Kanal &quot;PLANO 4&quot;",
		"", "NICE",
		"52", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1271234192.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/tt1nklein.jpg",
		150, 111,
		"NIC-TT1L", "Funkempfänger, extern, klein &quot;TT1L&quot;",
		"für Licht", "NICE",
		"79.9", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1617370582.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/very.jpg",
		72, 80,
		"NIC-Very", "Handsender, 1 Kanal KLEIN &quot;Very&quot;",
		"", "NICE",
		"34.5", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1099163642.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/tt1nklein.jpg",
		150, 111,
		"NIC-TT1N", "Funkempfänger, extern, klein &quot;TT1N&quot;",
		"Für Markisen und Rolladen", "NICE",
		"64.9", "0",
		"1", 1,
		"Stück", "19",
		"", "pd785831722.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/Ergo1n.jpg",
		150, 108,
		"NIC-ERGO 4", "Handsender, 4 Kanal &quot;ERGO 4&quot;",
		"", "NICE",
		"44", "0",
		"1", 1,
		"Stück", "19",
		"", "pd482171814.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/Ergo1n.jpg",
		150, 108,
		"NIC-ERGO 6", "Handsender, 6 Kanal &quot;ERGO 6&quot;",
		"", "NICE",
		"56", "0",
		"1", 1,
		"Stück", "19",
		"", "pd85295684.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/tt1nklein.jpg",
		150, 111,
		"NIC-TT1V", "Funkempfänger, extern, klein &quot;TT1V&quot;",
		"für Jalousien", "NICE",
		"69.9", "0",
		"1", 1,
		"Stück", "19",
		"", "pd446495080.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/planotime.jpg",
		100, 105,
		"NIC-PLANOTIME", "Funk-Zeitschaltuhr &quot;PLANOTIME&quot;",
		"", "NICE",
		"105.9", "0",
		"1", 1,
		"Stück", "19",
		"", "pd902051740.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/som_keasy_l.jpg",
		100, 100,
		"SOM-1215004", "Garagentorantrieb KEASY S",
		"", "SOMFY",
		"179.9", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-1976103544.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/som_keasy_l.jpg",
		100, 100,
		"SOM-1215005", "Garagentorantrieb KEASY L",
		"", "SOMFY",
		"210", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1344148150.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/som_keasy_xl.jpg",
		80, 80,
		"SOM-1215006", "Garagentorantrien KEASY XL",
		"", "SOMFY",
		"270", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1502681204.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/Schusselschalterap.jpg",
		100, 108,
		"SOM-9000021", "Schlüsseltaster, Auf-, Unterputz",
		"", "SOMFY",
		"34.9", "0",
		"1", 1,
		"Stück", "26",
		"", "pd696000205.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/innentastergross.jpg",
		63, 80,
		"SOM-9000008", "Innentaster",
		"", "SOMFY",
		"9.99", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1354566471.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/9000028.jpg",
		76, 80,
		"SOM-9000028", "Codetaster",
		"", "SOMFY",
		"82.9", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1102259339.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/9000028.jpg",
		100, 105,
		"SOM-9000815", "Funk-Codetaster",
		"", "SOMFY",
		"115.75", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1890609585.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/prod_proline_aerotec.jpg",
		80, 80,
		"ELE-281400001", "Steuerung Aero Tec",
		"", "elero",
		"99", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1829931576.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/prod_proline_aero.jpg",
		80, 80,
		"ELE-281600001", "Licht- und Windsensor Aero",
		"", "elero",
		"79.9", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-1156555994.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/aero_tec+aero1.jpg",
		100, 48,
		"ELE-281400002", "Steuerung und Licht-Windsensor",
		"AERO TEC", "elero",
		"179.9", "0",
		"1", 1,
		"Stück", "16",
		"", "pd2066004370.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/soliris_ib.jpg",
		94, 80,
		"SOM-1818190", "Steuerung und Wind-Sonnenfühler",
		"SOLIRIS IB", "SOMFY",
		"199.9", "0",
		"1", 1,
		"Stück", "22",
		"", "pd1818378768.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/modi1.jpg",
		45, 80,
		"MO 2650", "Gurtkastenuhr Modi inc. IR Empf.",
		"(Modi 2650)", "Rademacher",
		"99.9", "0",
		"1", 1,
		"Stück", "20",
		"", "pd221094637.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/tr-s_reg_trennrelais.jpg",
		100, 100,
		"JUN-TR UP 2", "Trennrelais UP 2",
		"", "JUNG",
		"39.99", "0",
		"1", 1,
		"Stück", "24,14",
		"", "pd-357673959.htm",
		"", 1,
		"40,36", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/tr-s_reg_trennrelais.jpg",
		80, 80,
		"JUN-TR UP", "Trennrelais UP",
		"", "JUNG",
		"35.95", "0",
		"1", 1,
		"Stück", "24,14",
		"", "pd745554611.htm",
		"", 1,
		"40,36", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/tr-s_trennrelais.jpg",
		80, 80,
		"JUN-TR AP", "Trennrelais AP",
		"z.Steuerung v. 2 Motoren/ 1 St. pro Antrieb", "JUNG",
		"35.95", "0",
		"1", 1,
		"Stück", "24,14",
		"", "pd1099554365.htm",
		"", 1,
		"40,36", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/609vw.jpg",
		82, 80,
		"JUN-609VW", "Jalousieschalter AP/FR",
		"", "JUNG",
		"24.9", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1100362049.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/609va.jpg",
		85, 80,
		"JUN-609VA", "Jalousieschalter AP",
		"", "JUNG",
		"14.9", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1100363363.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/804.18w.jpg",
		85, 80,
		"JUN-804.18 W", "Schlüsselschalter AP/FR ohne Zylinder",
		"", "JUNG",
		"35.9", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1326734679.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/809vw.jpg",
		86, 80,
		"JUN-809VW", "Jalousieschalter AP/FR",
		"", "JUNG",
		"24.9", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1553145070.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/834.10w.jpg",
		84, 80,
		"JUN-834.10W", "Jalousie-Drehschalter AP/FR",
		"", "JUNG",
		"28.9", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1945763677.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/leuchte_terrasse1.jpg",
		117, 80,
		"L111-0GR", "Markisenleuchte  ",
		"Zeitloses Design - einfache Montage", "S-QUADRAT",
		"224.9", "0",
		"1", 1,
		"Stück", "31",
		"Farbe;lichtgrau (RAL 7035)@Länge;2000 mm@", "pd1237833639.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/beleucht2.jpg",
		82, 80,
		"L112", "Endkappe, farbig",
		"", "S-QUADRAT",
		"7.95", "0",
		"1", 1,
		"", "31",
		"", "pd1036654754.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/prod_bedftastmitlcd.jpg",
		100, 82,
		"SOM-2400508", "Bedientastenfeld mit LCD-Anzeige",
		"", "SOMFY",
		"229", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1222193789.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/prod_fernbedteilodgesamt.jpg",
		97, 80,
		"SOM-2400427", "Fernbedienung für Teil- oder Gesamtschutz",
		"", "SOMFY",
		"89", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1298928225.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/prod_telefonwaehlg.jpg",
		100, 107,
		"SOM-2400490", "Telefonwählgerät",
		"", "SOMFY",
		"389", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1039638024.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/prod_fernbedmanh.jpg",
		97, 80,
		"SOM-2400428", "Fernbedienung mit Schlüsselanhänger",
		"", "SOMFY",
		"79", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1101629883.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/prod_innensirene.jpg",
		81, 80,
		"SOM-2400430", "Innensirene",
		"", "SOMFY",
		"259", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1416734695.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/prod_rauchmelder.jpg",
		114, 80,
		"SOM-2400443", "Rauchmelder",
		"", "SOMFY",
		"159", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1738168107.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/prod_oeffuglasmeld.jpg",
		128, 80,
		"SOM-2400435", "Öffnungs- und Glasbruchmelder ",
		"", "SOMFY",
		"119", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1878879321.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/prod_aussensirmleucht.jpg",
		88, 80,
		"SOM-2400431", "Außensirene mit Warnleuchte",
		"", "SOMFY",
		"399", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1518375626.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/prod_bewegsmeld.jpg",
		111, 80,
		"SOM-2400439", "Mini-Bewegungsmelder",
		"", "SOMFY",
		"139", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1717621622.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/prod_bewegsmeldhund.jpg",
		100, 67,
		"SOM-2400440", "Bewegungsmelder bei Haustieren",
		"", "SOMFY",
		"179", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1201996140.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/prod_wassermelder.jpg",
		128, 80,
		"SOM-2400509", "Wassermelder",
		"", "SOMFY",
		"159", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1031709359.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/prod_aussensirene.jpg",
		88, 80,
		"SOM-2400432", "Außensirene ohne Warnleuchte",
		"", "SOMFY",
		"329", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-2009035667.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/prod_bedtastfmanzeig..jpg",
		100, 107,
		"SOM-Bedienfeld 2 SW", "Bedientastfeld mit Anzeige",
		"", "SOMFY",
		"199", "0",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd-1970386716.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/prod_minioeff.jpg",
		128, 80,
		"SOM-2400433", "Mini-Öffnungsmelder",
		"", "SOMFY",
		"89", "0",
		"1", 1,
		"Stück", "44",
		"", "pd408465651.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/prod_akustglas.jpg",
		105, 80,
		"SOM-2400437", "Akustischer Glasbruchmelder",
		"", "SOMFY",
		"224", "0",
		"1", 1,
		"Stück", "44",
		"", "pd592408111.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/prod_oeffrolladenmeld.jpg",
		97, 80,
		"SOM-2400438", "Öffnungsmelder für Rollläden",
		"", "SOMFY",
		"159", "0",
		"1", 1,
		"Stück", "44",
		"", "pd663477237.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/prod_multifunktionki.jpg",
		97, 80,
		"SOM-2400453", "Multifunktions-Kit",
		"", "SOMFY",
		"129", "0",
		"1", 1,
		"Stück", "44",
		"", "pd501064567.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/p25packung.jpg",
		67, 80,
		"SOM-Protexiom 25", "Alarmanlage Protexiom ",
		"", "SOMFY",
		"479", "0",
		"1", 1,
		"Stück", "44",
		"Typ;Protexion 25@", "pd1101503304.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/prod_bedtastf.jpg",
		100, 107,
		"SOM-Bedienfeld 1 SW", "Bedientastfeld",
		"", "SOMFY",
		"174.0005", "0",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd-1159385319.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/produkte_soliris_rts.jpg",
		79, 80,
		"SOM-1818028", "Funk-Wind-/Sonnensteuerung",
		"Soliris RTS", "SOMFY",
		"299", "0",
		"1", 1,
		"Stück", "23",
		"", "pd813141932.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/produkte_eolis_rts.jpg",
		79, 80,
		"SOM-1816045", "Funk-Windsteuerung",
		"Elolis RTS", "SOMFY",
		"219", "0",
		"1", 1,
		"Stück", "23",
		"", "pd2053647802.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/centralis_receiver_rts.jpg",
		77, 80,
		"SOM-1810163", "Funk-Steuerung",
		"Centralis Receiver RTS", "SOMFY",
		"199", "0",
		"1", 1,
		"Stück", "23",
		"", "pd-1427737992.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/produkte_solaris_sensor_rts.jpg",
		118, 80,
		"SOM-9000830", "Funk-Wind-/Sonnensensor",
		"Soliris Sensor RTS", "SOMFY",
		"129", "0",
		"1", 1,
		"Stück", "23",
		"", "pd-455115418.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/produkte_solaris_sensor_rts.jpg",
		118, 80,
		"SOM-9000827", "Funk-Windsensor",
		"Eolis Sensor RTS", "SOMFY",
		"99", "0",
		"1", 1,
		"Stück", "23",
		"", "pd1526497234.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/produkte_inis_uno_vb.jpg",
		118, 80,
		"SOM-1800270", "Schalter",
		"Inis Uno", "SOMFY",
		"13.9", "0",
		"1", 1,
		"Stück", "22",
		"", "pd294679120.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/GONG-065_44065.jpg",
		80, 80,
		"GRO-44065", "Gong, mechanisch, zweiklang",
		"", "Grothe",
		"25", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-994109283.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/SET-1127-402_74322.jpg",
		80, 80,
		"GRO-74322", "Sprechanlagen-Set für Zweifamilienhaus",
		"", "Grothe",
		"123.8", "0",
		"1", 1,
		"Stück", "46",
		"", "pd539129473.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/SET-952-1_74550.jpg",
		80, 80,
		"GRO-74550", "Video-Sprechanlagen-Set für Einfamilienhaus",
		"", "Grothe",
		"699.4", "0",
		"1", 1,
		"Stück", "46",
		"", "pd1596400791.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/SET-1137-1_74311.jpg",
		80, 80,
		"GRO-74311", "Sprechanlagen-Set für Einfamilienhaus",
		"", "Grothe",
		"123.8", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-1900441982.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/Set_zfh_gross.jpg",
		80, 80,
		"SIE-SET711/2W", "Sprechanlagen-Set für Einfamilienhaus",
		"", "Siedle",
		"189", "0",
		"1", 1,
		"Stück", "48",
		"Farbe;Weiss@", "pd26752327.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/Set_efh_gross.jpg",
		80, 80,
		"SIE-SET711/1W", "Sprechanlagen-Set für Einfamilienhaus",
		"", "Siedle",
		"189", "0",
		"1", 1,
		"Stück", "48",
		"Farbe;Weiss@", "pd1111600779.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/Set1.jpg",
		54, 80,
		"RIT-16731/70", "Sprechanlagen-Set für Einfamilienhaus",
		"weiss", "Ritto",
		"89.5", "0",
		"1", 1,
		"Stück", "47",
		"Farbe;Weiss@", "pd1132797242.htm",
		"", 1,
		"46", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/Set2.jpg",
		54, 80,
		"RIT-16732/70", "Sprechanlagen-Set für Zweifamilienhaus",
		"weiss", "Ritto",
		"119.9", "0",
		"1", 1,
		"Stück", "47",
		"Farbe;Weiss@", "pd-1640390663.htm",
		"", 1,
		"46", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/311200.jpg",
		81, 80,
		"MER-311200", "Wippschalter-Einsatz, Aus 2polig",
		"", "",
		"9.71", "0",
		"1", 1,
		"Stück", "57",
		"", "pd226266546.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/311200.jpg",
		81, 80,
		"MER-311300", "Wippschalter-Einsatz, Aus 3polig",
		"", "",
		"17.29", "0",
		"1", 1,
		"Stück", "57",
		"", "pd685340122.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/311500.jpg",
		81, 80,
		"MER-311500", "Wippschalter-Einsatz, Serien",
		"", "",
		"7.26", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-34950352.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/311501.jpg",
		79, 80,
		"MER-311501", "Wippschalter-Einsatz, Rolladen",
		"", "",
		"12.91", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-1266578210.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/311600.jpg",
		81, 80,
		"MER-311600", "Wippschalter-Einsatz, Wechsel",
		"", "",
		"4.79", "0",
		"1", 1,
		"Stück", "57",
		"", "pd23213770.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/311601.jpg",
		79, 80,
		"MER-311601", "Wippschalter-Einsatz, Doppelwechsel",
		"", "",
		"12.65", "0",
		"1", 1,
		"Stück", "57",
		"", "pd329971260.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/311700.jpg",
		81, 80,
		"MER-311700", "Wippschalter-Einsatz, Kreuz",
		"", "",
		"9.71", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-2050891256.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/315000.jpg",
		81, 80,
		"MER-315000", "Wipptaster-Einsatz, Schließer 1polig ",
		"", "",
		"5.42", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-406538378.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/315500.jpg",
		79, 80,
		"MER-315500", "Wipptaster-Einsatz, Rolladen",
		"", "",
		"12.91", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-243959912.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/315000.jpg",
		81, 80,
		"MER-315900", "Wipptaster-Einsatz, Schließer 1polig ",
		"m. sep. Meldekontakt", "",
		"7.37", "0",
		"1", 1,
		"Stück", "57",
		"", "pd1111743170.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/315000.jpg",
		81, 80,
		"MER-315901", "Wipptaster-Einsatz, Wechsel 1polig ",
		"", "",
		"5.49", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-605747520.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/315000.jpg",
		81, 80,
		"MER-315902", "Doppel-Wipptaster-Einsatz, 2 Schließer",
		"", "",
		"12.59", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-1592359034.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/317200.jpg",
		81, 80,
		"MER-317200", "Rolladen-Tast-Rastschalter-Einsatz, 2polig",
		"", "",
		"18.51", "0",
		"1", 1,
		"Stück", "57",
		"", "pd228987172.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/318501.jpg",
		79, 80,
		"MER-318501", "Rolladen-Tast-Rastschalter-Einsatz, 2polig",
		"", "",
		"29.05", "0",
		"1", 1,
		"Stück", "57",
		"", "pd417950706.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/318501.jpg",
		79, 80,
		"MER-318901", "Rolladen-Tastschalter-Einsatz, 2polig",
		"", "",
		"29.05", "0",
		"1", 1,
		"Stück", "57",
		"", "pd1645460336.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/311200.jpg",
		81, 80,
		"MER-325200", "Wippkontrollschalter-Einsatz, Aus 2polig",
		"", "",
		"16.86", "0",
		"1", 1,
		"Stück", "57",
		"", "pd1118849774.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/311200.jpg",
		81, 80,
		"MER-325600", "Wippkontrollschalter-Einsatz, Wechsel",
		"", "",
		"11.87", "0",
		"1", 1,
		"Stück", "57",
		"", "pd1040065228.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/tr-s_trennrelais.jpg",
		80, 80,
		"JUN-TR AP-1", "Trennrelais AP",
		"z.Steuerung v. 2 Motoren/ 1 St. pro Antrieb", "JUNG",
		"35.95", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-2129690638.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/tr-s_reg_trennrelais.jpg",
		100, 100,
		"JUN-TR UP 2-1", "Trennrelais UP 2",
		"", "JUNG",
		"39.99", "0",
		"1", 1,
		"Stück", "53",
		"", "pd132602758.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/tr-s_reg_trennrelais.jpg",
		80, 80,
		"JUN-TR UP-1", "Trennrelais UP",
		"", "JUNG",
		"35.95", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-575470300.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/310219.jpg",
		81, 80,
		"MER-310219", "Wippe mit Kennzeichnung",
		"polarweiß", "",
		"2.59", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-5292996.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/310519.jpg",
		83, 80,
		"MER-310519", "Wippe für Serienschalter",
		"polarweiß", "",
		"3.19", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd1992722440.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/310319.jpg",
		39, 80,
		"MER-310119", "Wippe mit Schriftfeld",
		"polarweiß", "",
		"3.7", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd1228703892.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/310819.jpg",
		82, 80,
		"MER-310119", "Wippe mit ovalem Symbolfenster",
		"polarweiß", "",
		"2.59", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd2001471968.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/310899.jpg",
		82, 80,
		"MER-310899", "Wippe  für Heizungs-Notschalter",
		"polarweiß", "",
		"3.24", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd1154783212.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/234419.jpg",
		80, 80,
		"MER-234419", "Schuko-Steckdosen-Einsatz",
		"", "",
		"2.95", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd589725368.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/234419.jpg",
		80, 80,
		"MER-234619", "Schuko-Steckdosen-Einsatz mit Kinderschutz",
		"", "",
		"4.87", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd581816126.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/3971.jpg",
		79, 80,
		"MER-397119", "M1-Rahmen, 1fach",
		"polarweiß", "",
		"1.35", "0",
		"1", 1,
		"Stück", "59",
		"Farbe;polarweiß@", "pd1003872990.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/3972.jpg",
		110, 59,
		"MER-397219", "M1-Rahmen, 2fach",
		"polarweiß", "",
		"2.25", "0",
		"1", 1,
		"Stück", "59",
		"Farbe;polarweiß@", "pd-1197267498.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/3973.jpg",
		162, 59,
		"MER-397319", "M1-Rahmen, 3fach",
		"polarweiß", "",
		"3.75", "0",
		"1", 1,
		"Stück", "59",
		"Farbe;polarweiß@", "pd773787458.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/3974.jpg",
		209, 59,
		"MER-397419", "M1-Rahmen, 4fach",
		"polarweiß", "",
		"6.45", "0",
		"1", 1,
		"Stück", "59",
		"Farbe;polarweiß@", "pd-1882470546.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/3975.jpg",
		260, 59,
		"MER-397519", "M1-Rahmen, 5fach",
		"polarweiß", "",
		"11.85", "0",
		"1", 1,
		"Stück", "59",
		"Farbe;polarweiß@", "pd-1509311910.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/332600.jpg",
		79, 80,
		"MER-332600", "Pushdown-Kontrollschalter-Einsatz, Wechsel",
		"", "",
		"13.41", "0",
		"1", 1,
		"Stück", "57",
		"", "pd1111756743.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/330600.jpg",
		79, 80,
		"MER-330600", "Pushdown-Schalter-Einsatz, Wechsel",
		"", "",
		"6.29", "0",
		"1", 1,
		"Stück", "57",
		"", "pd1079818061.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/332200.jpg",
		79, 80,
		"MER-332200", "Pushdown-Kontrollschalter-Einsatz, Aus 2polig",
		"", "",
		"17.34", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-1676606909.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/330500.jpg",
		79, 80,
		"MER-330500", "Pushdown-Schalter-Einsatz, Serien",
		"", "",
		"9.56", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-1961271767.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/330700.jpg",
		79, 80,
		"MER-330700", "Pushdown-Schalter-Einsatz, Kreuz",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-1721109377.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/319016.jpg",
		81, 80,
		"MER-319016", "Lichtsignal-Einsatz",
		"", "",
		"9.01", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-150402363.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/396576.jpg",
		110, 62,
		"MER-396576", "Steckfassung E10",
		"", "",
		"1.25", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-414424453.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/395100.jpg",
		110, 45,
		"MER-395100", "Glimmlampe E10",
		"", "",
		"1.9", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-338323167.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/396376.jpg",
		110, 80,
		"MER-396376", "Leuctanhänger",
		"", "",
		"5.11", "0",
		"1", 1,
		"Stück", "57",
		"", "pd761628727.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/536302.jpg",
		81, 80,
		"MER-536302", "Raumtemperaturregler-Einsatz",
		"mit Ein-/Aus-Schalter AC 230V", "",
		"48.76", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-765549251.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/images/nopicture.gif",
		77, 52,
		"MER-536304", "Raumtemperaturregler-Einsatz",
		"mit Ein-/Aus-Schalter AC 24V", "",
		"52.69", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-695311949.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/234319.jpg",
		82, 80,
		"MER-234319", "Schuko-Steckdosen-Einsatz mit Schriftfeld",
		"polarweiß", "",
		"5.17", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-2120905959.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/273702.jpg",
		80, 80,
		"MER-273702", "Schuko-Steckdosen-Einsatz ",
		"mit Schriftfeld und Kontrolleuchte", "",
		"15.93", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;orange@", "pd-309128175.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/234219.jpg",
		80, 80,
		"MER-234219", "Schuko-Steckdosen-Einsatz",
		"mit Klappdeckel", "",
		"7.02", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd2132253590.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/273519.jpg",
		79, 80,
		"MER-273519", "Schuko-Steckdosen-Einsatz",
		"mit Feinsicherung", "",
		"10.44", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd1706715905.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/234402.jpg",
		80, 80,
		"MER-234404", "Schuko-Steckdosen-Einsatz für",
		"Sonderstromkreise", "",
		"6.54", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;grün/SV@", "pd722317272.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/539654.jpg",
		85, 80,
		"MER-539656", "Ettiketten für Sicherheitsstromversorgung",
		"", "",
		"2.43", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;grün/SV@", "pd-1991598607.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/297019.jpg",
		80, 80,
		"MER-297019", "Potentialausgleich-Steckdosen-Einsatz",
		"", "",
		"18.18", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-511437043.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/315519.jpg",
		82, 80,
		"MER-315519", "Wippe für Rolladenschalter- u. Taster",
		"", "",
		"4.9", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd1689532905.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/297190.jpg",
		110, 52,
		"MER-297190", "Potentialausgleich-Winkel-Buchsenstecker",
		"", "",
		"14.16", "0",
		"1", 1,
		"Stück", "58",
		"", "pd348078139.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/317239.jpg",
		79, 80,
		"MER-317239", "Zentralplatte für Rolladenschalter- u. Taster",
		"", "",
		"3.88", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd389920627.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/images/nopicture.gif",
		77, 52,
		"MER-318518", "Zentralplatte für Rolladen-Tast-Rastschalter-",
		"Einsatz mit Profil-Halbzylinderschloss", "",
		"4.88", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-775377493.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/310119.jpg",
		82, 80,
		"MER-310119", "Wippe",
		"", "",
		"1.75", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-1994718493.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/294819.jpg",
		79, 80,
		"MER-294819", "Zentralplatte für Antennensteckdosen",
		"", "",
		"2.97", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-978610405.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/292719.jpg",
		81, 80,
		"MER-292719", "Zentralplatte für UAE-Einsätze",
		"", "",
		"2.9", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd609486045.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/292819.jpg",
		79, 80,
		"MER-292819", "Zentralplatte für Fernmeldeanschußdose TAE",
		"", "",
		"2.9", "0",
		"1", 1,
		"Stück", "58",
		"Farbe;polarweiß@", "pd-99918449.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/cat1.jpg",
		80, 80,
		"WIE-1303404", "CEE Stecker 5x16A",
		"", "",
		"3.3", "0",
		"1", 1,
		"Stück", "60",
		"", "pd1112977656.htm",
		"0::10::3.1;", 1,
		"52", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/cat3_1.jpg",
		80, 80,
		"WIE-1303407", "CEE Steckdose 5x16A",
		"", "",
		"4.38", "0",
		"1", 1,
		"Stück", "60",
		"", "pd326361062.htm",
		"0::10::4.1;", 1,
		"52", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/9430402.jpg",
		110, 80,
		"WIE-1303437", "CEE Kompaktverteiler",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "60",
		"", "pd679618477.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/images/nopicture.gif",
		77, 52,
		"WIE-1303406", "CEE Wanddose 3x16A",
		"", "",
		"6.38", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-812645464.htm",
		"0::10::6.12;", 1,
		"52", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/213_6.jpg",
		95, 80,
		"WIE-1303411", "CEE Kupplung 3x16A",
		"", "",
		"5.18", "0",
		"1", 1,
		"Stück", "60",
		"", "pd1741853151.htm",
		"0::10::4.96;", 1,
		"52", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/cat3.jpg",
		80, 80,
		"WIE-1303427", "CEE Combidose CEE 16A + Schuko 16A",
		"", "",
		"18.7", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-1118216318.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/cat3_1.jpg",
		80, 80,
		"WIE-1303408", "CEE Steckdose 5x32A",
		"", "",
		"6.38", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-1953858687.htm",
		"0::10::6.22;", 1,
		"52", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/cat2.jpg",
		80, 80,
		"WIE-1303412", "CEE Kupplung 5x32A",
		"", "",
		"5.8", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-150543988.htm",
		"0::10::5.6;", 1,
		"52", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/cat1.jpg",
		80, 80,
		"WIE-1303401", "CEE Stecker 5x32A",
		"", "",
		"4.98", "0",
		"1", 1,
		"Stück", "60",
		"", "pd410771731.htm",
		"0::10::4.76;", 1,
		"52", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/cat1.jpg",
		80, 80,
		"WIE-1303402", "CEE Stecker 5x63A",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "60",
		"", "pd1112990981.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/cat2.jpg",
		80, 80,
		"WIE-1303413", "CEE Kupplung 5x63A",
		"", "",
		"23.46", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-1291521824.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/cat3_1.jpg",
		80, 80,
		"WIE-1303409", "CEE Steckdose 5x63A",
		"", "",
		"35.54", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-1835487113.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/images/nopicture.gif",
		77, 52,
		"WIE-1303429", "CEE Combidose CEE 32A + Schuko 16A",
		"", "",
		"22.02", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-1511088390.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/013_6.jpg",
		95, 80,
		"WIE-1303400", "CEE Stecker 3x16A",
		"", "",
		"4.18", "0",
		"1", 1,
		"Stück", "60",
		"", "pd-1871539879.htm",
		"0::10::3.94;", 1,
		"52", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/som_ls_40_aries.jpg",
		100, 22,
		"SOM-1021", "Standard-Rolladen-Motor",
		"LS 40 Aries", "SOMFY",
		"139", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd344633151.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/som_ls_40_mars.jpg",
		100, 67,
		"SOM-1023", "Standard-Rolladen-Motor",
		"LS 40 Mars", "SOMFY",
		"139", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd-328514683.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/som_ls_40_vulkan.jpg",
		100, 22,
		"SOM-1024", "Standard-Rolladen-Motor",
		"LS 40 Vulcan", "SOMFY",
		"154", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd1113150626.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/som_lt_50_jet.jpg",
		100, 20,
		"SOM-1035", "Standard-Rolladen-Motor",
		"HiPro LT 50 Jet", "SOMFY",
		"125", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd-738028640.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/som_lt_50_ceres.jpg",
		100, 20,
		"SOM-1037", "Standard-Rolladen-Motor",
		"HiPro LT 50 Ceres", "SOMFY",
		"139", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd1493831204.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/images/nopicture.gif",
		77, 52,
		"ACM-HELIOS", "Windmesser mit Sonnenstation für Rohrmotor &quot;ACM&quot;",
		"", "ACM",
		"39.9", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1100281766.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/images/nopicture.gif",
		77, 52,
		"ACM-TX M 1", "Handsender 4 Kanal",
		"für RADIOMATIC Motoren", "ACM",
		"24.9", "0",
		"1", 1,
		"Stück", "14",
		"", "pd992482775.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/images/nopicture.gif",
		77, 52,
		"ACM-TX M 2", "Wandsender 2 Kanal",
		"für RADIOMATIC Motoren", "ACM",
		"19.49", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-2107419199.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/som_lt_50_atlas.jpg",
		100, 20,
		"SOM-1039", "Standard-Rolladen-Motor",
		"HiPro LT 50 Atlas", "SOMFY",
		"144", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd1126217839.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/som_lt_50_meteor.jpg",
		100, 20,
		"SOM-1041", "Standard-Rolladen-Motor",
		"HiPro LT 50 Meteor", "SOMFY",
		"149", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd-1087790080.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/som_lt_50_gemini.jpg",
		100, 20,
		"SOM-1043", "Standard-Rolladen-Motor",
		"HiPro LT 50 Gemini", "SOMFY",
		"159", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd-835411516.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/som_lt_50_apollo.jpg",
		100, 20,
		"SOM-1045", "Standard-Rolladen-Motor",
		"HiPro LT 50 Apollo", "SOMFY",
		"164", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;40x1,0 Rund@", "pd-1988515256.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/som_lt_50_helios.jpg",
		100, 20,
		"SOM-1047", "Standard-Rolladen-Motor",
		"HiPro LT 50 Helios", "SOMFY",
		"169", "0",
		"1", 1,
		"Stück", "11",
		"Adapter/ Mitnehmer f. Welle;K76 Rundwelle@", "pd511304076.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/ttoklein.jpg",
		150, 115,
		"NIC-TT0", "Funkempfänger TT0",
		"", "NICE",
		"89.9", "0",
		"1", 1,
		"Stück", "18,19",
		"", "pd694599534.htm",
		"", 1,
		"33,34", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/lumero.jpg",
		50, 50,
		"ELE-281800001", "Lichtsensor Lumero",
		"", "elero",
		"35.9", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1113741002.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/aquerogross.jpg",
		60, 74,
		"ELE-138034601", "Regenwächter Aquero",
		"", "elero",
		"298", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1262420488.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/images/nopicture.gif",
		77, 52,
		"ELE-248890001", "Windwächter",
		"", "elero",
		"39.9", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-934812737.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/prod_garage_gr_1.jpg",
		100, 90,
		"ELE-33341.00011", "Garagentorantrieb",
		"duo 650 SL", "elero",
		"349.99", "0",
		"1", 1,
		"Stück", "27",
		"Typ;DUO 650 SL@", "pd1242476129.htm",
		"", 1,
		"54", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/506u.jpg",
		80, 80,
		"JUN-506U", "Wippschalter",
		"Aus-Wechsel", "JUNG",
		"3.77", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-1916957059.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/505u.jpg",
		80, 80,
		"JUN-505U", "Wippschalter",
		"Serien", "JUNG",
		"5.7", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-104567565.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/502u.jpg",
		80, 80,
		"JUN-502U", "Wippschalter",
		"Aus, 2polig", "JUNG",
		"7.62", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1113744001.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/507u.jpg",
		80, 80,
		"JUN-507U", "Wippschalter",
		"Kreuz", "JUNG",
		"7.62", "0",
		"1", 1,
		"Stück", "54",
		"", "pd697888919.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/506KOU.jpg",
		80, 80,
		"JUN-506KOU", "Wippschalter",
		"Aus-Wechsel", "JUNG",
		"9.3", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1580582045.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/509u.jpg",
		80, 80,
		"JUN-509U", "Wippschalter",
		"Doppel-Wechsel", "JUNG",
		"9.93", "0",
		"1", 1,
		"Stück", "54",
		"", "pd900468755.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/531u.jpg",
		80, 80,
		"JUN-531U", "Taster",
		"1polig Schließer", "JUNG",
		"4.26", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-2001182599.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/531u.jpg",
		80, 80,
		"JUN-533U", "Taster",
		"1polig Wechsler", "JUNG",
		"4.32", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1785724751.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/531u.jpg",
		80, 80,
		"JUN-533-2U", "Taster",
		"2polig Wechsler", "JUNG",
		"10.64", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-413183467.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/a520.jpg",
		80, 79,
		"JUN-A520", "Schuko-Steckdose",
		"weiß", "JUNG",
		"2.64", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1473793910.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/a520.jpg",
		80, 79,
		"JUN-A520WW", "Schuko-Steckdose",
		"alpinweiß", "JUNG",
		"2.64", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-713887288.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/as520.jpg",
		80, 80,
		"JUN-AS520WW", "Schuko-Steckdose, volle Platte",
		"alpinweiß", "JUNG",
		"2.88", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-740078282.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/as520.jpg",
		80, 80,
		"JUN-AS520", "Schuko-Steckdose, volle Platte",
		"weiß", "JUNG",
		"2.88", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-2129588652.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/as520ki.jpg",
		80, 80,
		"JUN-AS520KI", "Schuko-Steckdose, mit Berührungsschutz, volle Platte",
		"weiß", "JUNG",
		"4.09", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1300982946.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/as520ki.jpg",
		80, 80,
		"JUN-AS520KIWW", "Schuko-Steckdose, mit Berührungsschutz, volle Platte",
		"alpinweiß", "JUNG",
		"4.09", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1340238752.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/a520.jpg",
		80, 79,
		"JUN-A520KI", "Schuko-Steckdose, mit Berührungsschutz",
		"weiß", "JUNG",
		"3.86", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-633095474.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/a520.jpg",
		80, 79,
		"JUN-A520KIGN", "Schuko-Steckdose, mit Berührungsschutz",
		"grün  (für SV)", "JUNG",
		"5.32", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1088591276.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/a520.jpg",
		80, 79,
		"JUN-A520KIO", "Schuko-Steckdose, mit Berührungsschutz",
		"orange (für ZSV)", "JUNG",
		"5.32", "0",
		"1", 1,
		"Stück", "55",
		"", "pd170042298.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/520-45.jpg",
		80, 80,
		"JUN-A520-45", "Schuko-Steckdose",
		"weiß", "JUNG",
		"3.52", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1245567096.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/520-45.jpg",
		80, 80,
		"JUN-A520-45WW", "Schuko-Steckdose",
		"alpinweiß", "JUNG",
		"3.52", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1562553498.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/as520kl.jpg",
		80, 80,
		"JUN-AS520KL", "Schuko-Steckdose, mit Klappdeckel",
		"weiß", "JUNG",
		"5.59", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-203603964.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/volo_windundsonnenwaechterftt0klein.jpg",
		149, 124,
		"NIC-VOLOST", "Wind-und Sonnenwächter - Sonnens. abschaltbar",
		"passend für TT0", "NICE",
		"79.9", "0",
		"1", 1,
		"Stück", "18,19",
		"", "pd-1143525237.htm",
		"", 1,
		"33,34", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/as520kl.jpg",
		80, 80,
		"JUN-AS520KLWW", "Schuko-Steckdose, mit Klappdeckel",
		"alpinweiß", "JUNG",
		"5.59", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1832105426.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/A10HNA.jpg",
		80, 80,
		"JUN-A10HNAWW", "HNA-Steckdose",
		"alpinweiß", "JUNG",
		"10.69", "0",
		"1", 1,
		"Stück", "55",
		"", "pd313694288.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/A10HNA.jpg",
		80, 80,
		"JUN-A10HNA", "HNA-Steckdose",
		"weiß", "JUNG",
		"10.69", "0",
		"1", 1,
		"Stück", "55",
		"", "pd287078142.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/as581.jpg",
		80, 80,
		"JUN-AS581WW", "Rahmen, 1-fach",
		"alpinweiß", "JUNG",
		"1.14", "0",
		"1", 1,
		"Stück", "55",
		"", "pd818179420.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/as581.jpg",
		80, 80,
		"JUN-AS581", "Rahmen, 1-fach",
		"weiß", "JUNG",
		"1.14", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1823539946.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/as582.jpg",
		80, 151,
		"JUN-AS582WW", "Rahmen, 2-fach",
		"alpinweiß", "JUNG",
		"1.96", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-302380248.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/as582.jpg",
		80, 151,
		"JUN-AS582", "Rahmen, 2-fach",
		"weiß", "JUNG",
		"1.96", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1848015466.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/as583.jpg",
		80, 222,
		"JUN-AS583WW", "Rahmen, 3-fach",
		"alpinweiß", "JUNG",
		"3.26", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1705475508.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/as583.jpg",
		80, 222,
		"JUN-AS583", "Rahmen, 3-fach",
		"weiß", "JUNG",
		"3.26", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1454959362.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/as590.jpg",
		80, 80,
		"JUN-AS590", "Abdeckung, volle Platte",
		"weiß", "JUNG",
		"2.67", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1691980032.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/as590.jpg",
		80, 80,
		"JUN-AS590WW", "Abdeckung, volle Platte",
		"alpinweiß", "JUNG",
		"2.67", "0",
		"1", 1,
		"Stück", "55",
		"", "pd618192686.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/as590-5.jpg",
		80, 80,
		"JUN-AS590-5", "Abdeckung, Serie, volle Platte",
		"weiß", "JUNG",
		"3.93", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-43921140.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/as590-5.jpg",
		80, 80,
		"JUN-AS590-5WW", "Abdeckung, Serie, volle Platte",
		"alpinweiß", "JUNG",
		"3.93", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1930808858.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/as591.jpg",
		66, 64,
		"JUN-AS591", "Wippe",
		"weiß", "JUNG",
		"1.54", "0",
		"1", 1,
		"Stück", "55",
		"", "pd374006726.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/as591.jpg",
		66, 64,
		"JUN-AS591WW", "Wippe",
		"alpinweiß", "JUNG",
		"1.54", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1256536220.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/as591-5.jpg",
		66, 64,
		"JUN-AS591-5", "Wippe, Serie",
		"weiß", "JUNG",
		"2.79", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1112386128.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/as591-5.jpg",
		66, 64,
		"JUN-AS591-5WW", "Wippe, Serie",
		"alpinweiß", "JUNG",
		"2.79", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1749807966.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/534u.jpg",
		80, 80,
		"JUN-534U", "Taster, 1polig Schließer",
		"m. sep. Meldekontakt", "JUNG",
		"6.19", "0",
		"1", 1,
		"Stück", "54",
		"", "pd501991693.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/535u.jpg",
		80, 80,
		"JUN-535U", "Doppel-Taster",
		"2 Schließer", "JUNG",
		"6.75", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1795516931.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/509vu.jpg",
		80, 80,
		"JUN-509VU", "Jalousie-Wippschalter",
		"Schalter, 1polig", "JUNG",
		"10.13", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-494203927.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/509vu.jpg",
		80, 80,
		"JUN-539VU", "Jalousie-Wippschalter",
		"Taster, 1polig", "JUNG",
		"10.13", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-135112641.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/67k.jpg",
		80, 80,
		"JUN-67K", "Klingel-Einsatz",
		"", "JUNG",
		"11.55", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1688147077.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/240-10.jpg",
		80, 80,
		"JUN-240-10", "Elektronisches Potentiometer",
		"", "JUNG",
		"29.89", "0",
		"1", 1,
		"Stück", "54",
		"", "pd1518371387.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/225nvde.jpg",
		80, 80,
		"JUN-225NVDE", "NV-Drehdimmer mit Druck-Wechselschalter",
		"", "JUNG",
		"54.81", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-1586643231.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/266gde.jpg",
		80, 80,
		"JUN-266GDE", "Drehdimmer mit Druck-Wechselschalter",
		"", "JUNG",
		"48.17", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-1185340425.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/225TDE.jpg",
		80, 80,
		"JUN-225TDE", "Tronic-Drehdimmer mit Druck-Wechselschalter",
		"", "JUNG",
		"86.07", "0",
		"1", 1,
		"Stück", "54",
		"", "pd-971949709.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/as5544.jpg",
		80, 80,
		"JUN-AS540", "Abdeckung für Drehdimmer",
		"weiß", "JUNG",
		"3.62", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-2013583143.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/as5544.jpg",
		80, 80,
		"JUN-AS540WW", "Abdeckung für Drehdimmer",
		"alpinweiß", "JUNG",
		"3.62", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1332248260.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/images/nopicture.gif",
		77, 52,
		"JUN-AS590-5P", "Abdeckung für Jalousie-Schalter, volle Platte",
		"weiß", "JUNG",
		"4.95", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-617189461.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/images/nopicture.gif",
		77, 52,
		"JUN-AS590-5PWW", "Abdeckung für Jalousie-Schalter, volle Platte",
		"alpinweiß", "JUNG",
		"4.95", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-11720239.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/as591-5.jpg",
		66, 64,
		"JUN-AS591-5P", "Wippe für Jalousieschalter",
		"weiß", "JUNG",
		"3.81", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-2092556051.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/as591-5.jpg",
		66, 64,
		"JUN-AS591-5PWW", "Wippe für Jalousieschalter",
		"alpinweiß", "JUNG",
		"3.81", "0",
		"1", 1,
		"Stück", "55",
		"", "pd933954787.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/images/nopicture.gif",
		77, 52,
		"JUN-A540", "Abdeckung für Drehdimmer",
		"weiß", "JUNG",
		"3.62", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1836630.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/images/nopicture.gif",
		77, 52,
		"JUN-A540WW", "Abdeckung für Drehdimmer",
		"alpinweiß", "JUNG",
		"3.62", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1331227764.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/as590ko5.jpg",
		80, 80,
		"JUN-AS590KO5", "Abdeckung für Kontrollschalter, volle Platte",
		"weiß", "JUNG",
		"3.18", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1429564352.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/as591ko5.jpg",
		66, 64,
		"JUN-AS591KO5", "Wippe für Kontrollschalter",
		"weiß", "JUNG",
		"2.04", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1167378450.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/as591ko5.jpg",
		66, 64,
		"JUN-AS591KO5WW", "Wippe für Kontrollschalter",
		"alpinweiß", "JUNG",
		"2.04", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1531369420.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/as590ko5.jpg",
		80, 80,
		"JUN-AS590KO5WW", "Abdeckung für Kontrollschalter, volle Platte",
		"alpinweiß", "JUNG",
		"3.18", "0",
		"1", 1,
		"Stück", "55",
		"", "pd1283797722.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/as590h.jpg",
		80, 80,
		"JUN-AS590-H", "Abdeckung für Heizungsnotschalter, volle Platte",
		"weiß", "JUNG",
		"3.69", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-941615994.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/as590h.jpg",
		80, 80,
		"JUN-AS590-HWW", "Abdeckung für Heizungsnotschalter, volle Platte",
		"alpinweiß", "JUNG",
		"3.69", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-149002716.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/images/nopicture.gif",
		77, 52,
		"SOM-1805070", "Programmschaltuhr mit Helligkeitsautomatik",
		"CHRONIS UNO L", "SOMFY",
		"128", "0",
		"1", 1,
		"Stück", "22",
		"Länge Helligkeitssensor;1 mtr.@", "pd1114335028.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/neo-mat.jpg",
		72, 80,
		"NIC-NEOMAT 15 MA", "Motor mit FUNK und elektronischem Endschalter D.:45mm, für Rolladen",
		"Länge 60,7 cm (16 U/min)", "NICE",
		"154.9", "2",
		"1", 1,
		"Stück", "7",
		"Grösse;15 Nm/ Last 28 kg@Adapter/ Mitnehmer f. Welle;52 Achtkant@", "pd805313609.htm",
		"", 1,
		"58", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/neo-plus.jpg",
		72, 80,
		"NIC-NEOPLUS 15", "Motor mit  FUNK und mechanischem Endschalter D.:45mm,  für Markisen",
		"Länge 65,7 cm (16 U/min)", "NICE",
		"149.9", "1.8",
		"1", 1,
		"Stück", "7",
		"Grösse;15 Nm/ Last 28 kg@Adapter/ Mitnehmer f. Welle;40x1,5 Rund@", "pd1100344469.htm",
		"", 1,
		"58", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/neo-mat.jpg",
		72, 80,
		"NIC-NEOMAT 15 MT", "Motor mit  FUNK und elektronischem Endschalter D.:45mm,  für Markisen",
		"Länge 60,7 cm (16 U/min)", "NICE",
		"159.9", "2",
		"1", 1,
		"Stück", "7",
		"Grösse;15 Nm/ Last 28 kg@Adapter/ Mitnehmer f. Welle;50x1,5 Rund@", "pd1297853260.htm",
		"", 1,
		"58", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/neo-mat.jpg",
		72, 80,
		"NIC-NEO 8", "Motor D.:45mm, mit mechanischem Endschalter",
		"Länge 60,7 cm (16 U/min)", "NICE",
		"86.9", "0",
		"1", 1,
		"Stück", "6",
		"Grösse;8 Nm/ Last 15 kg@Adapter/ Mitnehmer f. Welle;78 Rund@", "pd-1517412343.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/neo-star.jpg",
		72, 80,
		"NEOSTAR 15ST", "Motor mit elektronischem Endschalter",
		"", "NICE",
		"129.9", "1.8",
		"1", 1,
		"Stück", "6",
		"Grösse;15 Nm@", "pd-1269154586.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/neo-star.jpg",
		72, 80,
		"NEOSTAR 15SA", "Motor mit elektronischem Endschalter",
		"", "NICE",
		"123.9", "2",
		"1", 1,
		"Stück", "6",
		"Grösse;15 Nm@", "pd-1084134612.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/neo-mh.jpg",
		72, 80,
		"NIC-NEO 15 MH", "Motor D.: 45mm, mit mechanischem Endschalter und Nothandbedienung",
		"Länge: 66,1 cm (16 U/min)", "NICE",
		"159.9", "0",
		"1", 1,
		"Stück", "6",
		"Grösse;15 Nm/ Last 28 kg@Adapter/ Mitnehmer f. Welle;50x1,5 Rund@", "pd-233518748.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/Einstellkabel f. neomotorewn.jpg",
		150, 131,
		"NIC-TT U", "Einstellkabel für Endlagenjustierung",
		"bei NEOSTAR", "NICE",
		"21.9", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1100335500.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/radiomatic.jpg",
		118, 80,
		"RADIOMATIC 30", "Motor mit integriertem FUNK",
		"u. mech. Endschalter", "ACM",
		"159.9", "2.9",
		"1", 1,
		"Stück", "3",
		"Grösse;30 Nm@", "pd-820414949.htm",
		"", 1,
		"60", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/matic9_13.jpg",
		118, 80,
		"MATIC 13", "Motor mit mechanischem Endschalter",
		"", "ACM",
		"99.9", "1.4",
		"1", 1,
		"Stück", "2",
		"Grösse;13 Nm@", "pd-1832019792.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/matic_10_50.jpg",
		118, 80,
		"MATIC 10", "Motor mit mechanischem Endschalter",
		"", "ACM",
		"79.9", "0",
		"1", 1,
		"Stück", "2",
		"Grösse;10 Nm@", "pd-1882578754.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/matic_30m_50m.jpg",
		118, 80,
		"MATIC 30 M", "Motor mit Nothandbedienung",
		"", "ACM",
		"119.9", "2.5",
		"1", 1,
		"Stück", "2",
		"Grösse;30 Nm@", "pd-2115364028.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/KU_1441001.jpg",
		170, 115,
		"ACM-KU", "Kupplung aus Alu",
		"", "ACM",
		"7.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1116089323.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/VG_1441002.jpg",
		170, 115,
		"ACM-VG45", "Verbindungsgelenk 45 Grad",
		"", "ACM",
		"21.6", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-942915567.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/VG_1441002.jpg",
		170, 115,
		"ACM-VG90", "Verbindungsgelenk 90 Grad",
		"", "ACM",
		"28.8", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1951774553.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/KK_1441005.jpg",
		170, 115,
		"ACM-KK", "Knickgelenk-Kurbel",
		"", "ACM",
		"29.99", "0",
		"1", 1,
		"Stück", "2",
		"", "pd408230701.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/FK_1441004.jpg",
		170, 115,
		"ACM-FK", "Feste Kurbel",
		"", "ACM",
		"18", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1328777507.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/OES_1441006.jpg",
		170, 115,
		"ACM-OESK", "Öse, kurz",
		"60mm", "ACM",
		"13.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-258031607.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/1435340.jpg",
		170, 115,
		"ACM-3034", "Motorkopf 16 x 16mm",
		"für Motor mit D.: 55mm", "ACM",
		"12.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1964803765.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/1435370.jpg",
		170, 115,
		"ACM-3037", "Motorkopf rund 20mm",
		"für Motor mit D.: 55mm", "ACM",
		"9.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1881944975.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/1439820.jpg",
		170, 115,
		"ACM-3082", "Wand Lager",
		"für Motoren mit D.: 55 mm", "ACM",
		"14.4", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1354233157.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/1435350.jpg",
		170, 115,
		"ACM-3035", "Markisen Lager für Motorkopf 16x16mm",
		"für Motoren mit D.: 55 mm", "ACM",
		"4.5", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1001146263.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/images/nopicture.gif",
		77, 52,
		"ACM-3031", "Wand Lager für Motorkopf 16x16mm",
		"für Motoren mit D.: 55 mm", "ACM",
		"4.5", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-905223549.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/1439202.jpg",
		170, 115,
		"ACM-3020/CE", "Universal Lager",
		"für Motoren mit D.: 45 mm", "ACM",
		"3.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-637023331.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/1433300.jpg",
		170, 115,
		"ACM-4030", "Motorkopf 10 x 10mm",
		"", "ACM",
		"3.12", "0",
		"1", 1,
		"Stück", "4",
		"", "pd63274975.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/1435360.jpg",
		170, 115,
		"ACM-3036", "Wand Lager Motorkopf rund 20mm",
		"für Motoren mit D.: 55 mm", "ACM",
		"4.5", "0",
		"1", 1,
		"Stück", "4",
		"", "pd125971463.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/1435490.jpg",
		170, 115,
		"ACM-3049", "Wand Lager Motorkopf 16 x 16mm",
		"für Motoren mit D.: 55 mm", "ACM",
		"5.4", "0",
		"1", 1,
		"Stück", "4",
		"", "pd311220415.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/images/nopicture.gif",
		77, 52,
		"ACM-4040S", "Clip Lager für MATIC 9 + 13",
		"für Motoren mit D.: 35 mm", "ACM",
		"5.52", "0",
		"1", 1,
		"Stück", "4",
		"", "pd896689115.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/1433440.jpg",
		170, 115,
		"ACM-4044", "Blendkappenlager",
		"für Motoren mit D.: 35 mm", "ACM",
		"5.52", "0",
		"1", 1,
		"Stück", "4",
		"", "pd946930981.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/1434600.jpg",
		170, 115,
		"ACM-3060", "Element Lager",
		"für Motoren mit D.: 45 mm", "ACM",
		"6", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1321548053.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/1434220.jpg",
		170, 115,
		"ACM-3022", "Wand Lager",
		"für Motoren mit D.: 45 mm", "ACM",
		"5.4", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1342795539.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/1435530.jpg",
		170, 115,
		"ACM-3053", "Fertigkasten Lager Motorkopf rund 20mm",
		"für Motoren mit D.: 55 mm", "ACM",
		"6", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1429178629.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/1434230.jpg",
		170, 115,
		"ACM-3023", "Markisen Lager (48/60mm TK)",
		"für Motoren mit D.: 45 mm", "ACM",
		"3", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1592842105.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/images/nopicture.gif",
		77, 52,
		"ACM-3052", "Aufsteck Lager",
		"für Motoren mit D.: 45 mm", "ACM",
		"6.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1633242703.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/1439270.jpg",
		170, 115,
		"ACM-3027", "Wand Lager für M-Motoren",
		"für Motoren mit D.: 55 mm", "ACM",
		"9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1710304653.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/1439440.jpg",
		170, 115,
		"ACM-3044", "Blendkappenlager",
		"für Motoren mit D.: 45 + 55 mm", "ACM",
		"5.52", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1855545239.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/1433300.jpg",
		170, 115,
		"ACM-3030", "Motorkopf 10 x 10mm",
		"für MATIC 10 - 50", "ACM",
		"3.12", "0",
		"1", 1,
		"Stück", "4",
		"", "pd2133129601.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/neo-mh.jpg",
		72, 80,
		"NIC-NEOMAT 15 MH", "Motor mit integriertem FUNK/Nothand und elektronischem Endschalter",
		"für Markisen", "NICE",
		"199", "2",
		"1", 1,
		"Stück", "7",
		"Grösse;15 Nm@", "pd1116163773.htm",
		"", 1,
		"58", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/images/nopicture.gif",
		77, 52,
		"NIC-10029", "Universal Lager",
		"Max. 120 Nm", "",
		"7.05", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1116268131.htm",
		"", 1,
		"610", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/ga_antrieb.jpg",
		132, 80,
		"BER-GA201", "Garagentorantrieb GA201 ",
		"500N incl. Funksender + SK-K", "Berner",
		"266.99", "0",
		"1", 1,
		"Stück", "28",
		"Typ;Kette 3100mm, Bew-Hub 2350mm@", "pd-1329014557.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/zube_handsender.jpg",
		76, 80,
		"BER-RC4", "Handsender Midi",
		"4 - Kanal", "Berner",
		"45", "0",
		"1", 1,
		"Stück", "28",
		"", "pd759929838.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/zube_funk.jpg",
		76, 80,
		"BER-FCT-868", "Funk-Codetaster",
		"drahtlos, beleuchtet", "Berner",
		"114", "0",
		"1", 1,
		"Stück", "28",
		"", "pd841866188.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/zube_empfaenger.jpg",
		105, 80,
		"BER-E100L", "Funk-Empfänger",
		"40MHz", "Berner",
		"149.9", "0",
		"1", 1,
		"Stück", "28",
		"Ausführung;1-Kanal@", "pd-1923885350.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/zube_schluessel.jpg",
		94, 80,
		"BER-STAP", "Schlüsseltaster",
		"Impuls/Auf-Zu", "Berner",
		"34", "0",
		"1", 1,
		"Stück", "28",
		"Ausführung;Schlüsseltaster AP@", "pd-589643624.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/zube_transponder.jpg",
		87, 80,
		"BER-TTR1", "Transponder-Taster",
		"1 Kanal (berührungslos)", "Berner",
		"139.99", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-1006569338.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/ga_antrieb.jpg",
		132, 80,
		"BER-GA301", "Garagentorantrieb GA301 ",
		"800N incl. Funksender + SK-K", "Berner",
		"344.99", "0",
		"1", 1,
		"Stück", "28",
		"Typ;Kette 3100mm, Bew-Hub 2350mm@", "pd-13711753.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/ga_antrieb.jpg",
		132, 80,
		"BER-GA401", "Garagentorantrieb GA401 ",
		"500N incl. Funksender + SK-K", "Berner",
		"409.99", "0",
		"1", 1,
		"Stück", "28",
		"Typ;Kette 3100mm, Bew-Hub 2350mm@", "pd-1469845201.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/berner_solar_antrieb.jpg",
		132, 94,
		"BER-TS50", "Garagentorantrieb S50 Solar",
		"500N incl. Funksender", "Berner",
		"739.99", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-191526169.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/images/nopicture.gif",
		77, 52,
		"BER-DA400SA-2", "Drehtorantrieb",
		"für 2-flüglige Tore", "Berner",
		"1299", "0",
		"1", 1,
		"Stück", "28",
		"", "pd19690399.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/zube_funk.jpg",
		76, 80,
		"BER-CTR1", "Codeschloss",
		"drahtgebunden, 1-Kanal", "Berner",
		"114", "0",
		"1", 1,
		"Stück", "28",
		"", "pd999870956.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/zube_funk.jpg",
		76, 80,
		"BER-CTR2", "Codeschloss",
		"drahtgebunden, 2-Kanal", "Berner",
		"139.99", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-563332614.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/zube_handsender.jpg",
		76, 80,
		"BER-B1S40L", "Handsender Midi selbstlernend",
		"40MHz", "Berner",
		"42", "0",
		"1", 1,
		"Stück", "28",
		"Ausführung;1-Kanal@", "pd193600360.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/images/nopicture.gif",
		77, 52,
		"BER-DA400SA", "Drehtorantrieb",
		"für 1-flüglige Tore", "Berner",
		"769.99", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-762255040.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/berner_solar_antrieb.jpg",
		132, 94,
		"BER-SB", "Trockenbatterie 12V, 24Ah",
		"für S50 Solar", "Berner",
		"129.99", "0",
		"1", 1,
		"Stück", "28",
		"", "pd-1681838772.htm",
		"", 1,
		"64", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/neo-s.jpg",
		72, 80,
		"NIC-NEO 6", "Motor D.:35mm, mit mechanischem Endschalter",
		"Länge 52,5cm (12 U/min)", "NICE",
		"109.9", "0",
		"1", 1,
		"Stück", "6",
		"Grösse;6 Nm/ Last 12 kg@Adapter/ Mitnehmer f. Welle;40 Achtkant@", "pd1117090218.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/OES_1441006.jpg",
		170, 115,
		"ACM-OESL", "Öse, lang",
		"165mm", "ACM",
		"15.6", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-380503879.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/volo_windundsonnenwaechterftt0klein.jpg",
		100, 83,
		"NIC-VOLOS", "Windwächter",
		"passend für TT0", "NICE",
		"69.9", "0",
		"1", 1,
		"Stück", "18,19",
		"", "pd1832266751.htm",
		"", 1,
		"33,34", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/volo_windundsonnenwaechterftt0klein.jpg",
		149, 124,
		"NIC-VOLOSR", "Wind-und Sonnenwächter FUNK",
		"passend für TT1 und Funk-Motoren", "NICE",
		"89.9", "0",
		"1", 1,
		"Stück", "19",
		"", "pd329624352.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/handsender4kanalklein.jpg",
		120, 191,
		"NIC-FLOR", "Handsender, 4 Kanal KLEIN &quot;Flor&quot;&quot;",
		"", "NICE",
		"38.9", "0",
		"1", 1,
		"Stück", "19",
		"", "pd-1079627849.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/som_ls_40_aries.jpg",
		100, 22,
		"SOM-1 049 345", "Standard-Markisen-Motor m. mechanischem Endschalter",
		"LT 50 Marnier 40Nm", "SOMFY",
		"168", "2",
		"1", 1,
		"Stück", "12",
		"", "pd1123431415.htm",
		"", 1,
		"66", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/som_ls_40_aries.jpg",
		100, 22,
		"SOM-1 049 345-1", "Standard-Markisen-Motor m. elektronischem Endschalter",
		"SLT 50 Marnier 40Nm", "SOMFY",
		"179", "2",
		"1", 1,
		"Stück", "12",
		"", "pd-766414561.htm",
		"", 1,
		"66", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/som_ls_40_aries.jpg",
		100, 22,
		"SOM-1 045 252", "Standard-Markisen-Motor m. mechanischem Endschalter",
		"LT 50 Apollo 30Nm", "SOMFY",
		"157", "2",
		"1", 1,
		"Stück", "12",
		"", "pd1572558949.htm",
		"", 1,
		"66", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/images/nopicture.gif",
		77, 52,
		"NIC-Spido", "Torantrieb für Sektionaltore und Schwingtor",
		"", "NICE",
		"0", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-359183015.htm",
		"", 1,
		"67", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};