	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="114" height="14" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Preis vorher:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Jetzt nur noch:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/bl2200.jpg",
		100, 86,
		"110", "Blaue LED 5mm, 2200mcd, 32°",
		"", "",
		"0.68", "0.3",
		"1", 1,
		"Stück", "40",
		"", "pd233552759.htm",
		"1::100::5;1::500::10;1::1000::20;", 1,
		"7", "0",
		 2)
	
		Entry[1] = new Element(
		1, "assets/thumb/bl5000.jpg",
		100, 70,
		"111", "Blaue LED 5mm, 5000mcd, 18°",
		"Spitzenqualität zum kleinen Preis", "",
		"0.68", "0.3",
		"1", 1,
		"Stück", "40",
		"", "pd1029053538.htm",
		"1::100::5;1::500::10;1::1000::20;1::2000::30;", 1,
		"7", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/GN14000.jpg",
		100, 79,
		"121", "Grüne LED 5mm, 14000mcd, 18°",
		"", "",
		"0.85", "0.3",
		"1", 1,
		"Stück", "38",
		"", "pd741581152.htm",
		"1::100::5;1::500::10;1::1000::20;", 1,
		"6", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/rd7500.jpg",
		100, 96,
		"133", "Rote LED 5mm, 8000mcd,  18°",
		"", "",
		"0.34", "0.3",
		"1", 1,
		"Stück", "39",
		"", "pd-1609589279.htm",
		"1::100::5;1::500::10;1::1000::20;", 1,
		"5", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/uv200.jpg",
		100, 77,
		"151", "Ultraviolette LED 5mm, 7mW/sr, 395nm, 15°",
		"", "",
		"0.85", "0.3",
		"1", 1,
		"Stück", "36",
		"", "pd1457776601.htm",
		"1::100::5;1::250::10;1::500::15;1::1000::20;", 1,
		"11", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/620.jpg",
		100, 101,
		"620", "10m Ring blaue Schaltlitze, 0,14mm²",
		"", "",
		"0.68", "30",
		"1", 1,
		"Stück", "17",
		"", "pd1033292799.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/621.jpg",
		100, 96,
		"621", "10m Ring rote Schaltlitze, 0,14mm²",
		"", "",
		"0.68", "30",
		"1", 1,
		"Stück", "17",
		"", "pd-1819740716.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/622.jpg",
		100, 98,
		"622", "10m Ring schwarze Schaltlitze, 0,14mm²",
		"", "",
		"0.68", "30",
		"1", 1,
		"Stück", "17",
		"", "pd1290776133.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/630.jpg",
		100, 68,
		"630-19", "Vorwiderstand Metalloxid 1% Toleranz, 1/4W 10 Ohm bis 100k Ohm",
		"Wählen Sie den gewünschten Wert aus (10 Ohm - 100k Ohm)", "",
		"0.06", "0.2",
		"1", 1,
		"Stück", "16",
		"Wert;470 Ohm@", "pd-1459440147.htm",
		"0::2000::0.04;", 10,
		"20", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/720.jpg",
		100, 75,
		"720", "Luxeon Lumiled &quot;Star-Emitter&quot; royal blau 100.000mcd",
		"inkl. zum Betrieb nötigen Kühlkörper", "",
		"9.47", "25",
		"1", 1,
		"Stück", "32",
		"", "pd1037556409.htm",
		"1::16::5;1::32::10;1::64::15;1::96::20;", 1,
		"22", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/721.jpg",
		100, 75,
		"721", "Luxeon Lumiled &quot;Star-Emitter&quot; weiß, 180.000mcd, 110°",
		"inkl. zum Betrieb nötigen Kühlkörper", "",
		"9.47", "25",
		"1", 1,
		"Stück", "32",
		"", "pd1038775837.htm",
		"1::16::5;1::32::10;1::64::15;1::96::20;", 1,
		"22", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/images/nopicture.gif",
		100, 60,
		"311", "0603 SMD-LED, superblau, 45mcd, 140°",
		"", "",
		"1.03", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd1510709461.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/images/nopicture.gif",
		100, 60,
		"310", "0603 SMD-LED, superrot, 62mcd, 140°",
		"", "",
		"0.3", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-673718517.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/images/nopicture.gif",
		100, 60,
		"321", "0805 SMD-LED, superblau, 45mcd, 140°",
		"", "",
		"1.03", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-1417828303.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/images/nopicture.gif",
		100, 60,
		"320", "0805 SMD-LED, superrot, 62mcd, 140°",
		"", "",
		"0.3", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-1510576697.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/images/nopicture.gif",
		100, 60,
		"331", "1206 SMD-LED, superblau, 45mcd, 140°",
		"", "",
		"1.03", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-1089583795.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/images/nopicture.gif",
		100, 60,
		"330", "1206 SMD-LED, superrot, 75mcd, 140°",
		"", "",
		"0.3", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1265287101.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/images/nopicture.gif",
		100, 60,
		"340", "1206 SMD-LED, weiß, 440mcd, 100°, Nichia NSCW100",
		"", "",
		"1.46", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd913296425.htm",
		"1::50::5;1::100::10;1::500::15;1::1000::20;", 1,
		"23", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/ESRLED.jpg",
		100, 85,
		"711", "Edelstahlschrauben M6x20 &quot;rot&quot;",
		"", "",
		"0.83", "70",
		"1", 1,
		"Stück", "29",
		"", "pd1039352215.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/33.JPG",
		100, 75,
		"636", "Vorwiderstand 33 Ohm 5W",
		"", "",
		"0.83", "10",
		"1", 1,
		"Stück", "16",
		"", "pd1135936972.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/617.jpg",
		49, 80,
		"617", "1m schwarzer Schrumpfschlauch 3,2mm",
		"", "",
		"1.77", "10",
		"1", 1,
		"Stück", "19",
		"", "pd1029780782.htm",
		"1::2::15;", 1,
		"29", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/ISOSOR.jpg",
		100, 206,
		"618", "15-teiliges Schrumpfschlauchsortiment, schwarz",
		"", "",
		"3.23", "20",
		"1", 1,
		"Stück", "19",
		"", "pd1039887771.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/KBBSOR.jpg",
		75, 222,
		"619", "Kabelbinder-Sortiment, 40-teilig",
		"", "",
		"0.85", "20",
		"1", 1,
		"Stück", "19",
		"", "pd1921259841.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/626.jpg",
		100, 84,
		"626", "Verchromte LED-Fassung für 3mm LEDs - Innenreflektor",
		"", "",
		"0.51", "3",
		"1", 1,
		"Stück", "19",
		"", "pd1035877219.htm",
		"1::100::10;", 10,
		"29", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/626.jpg",
		100, 84,
		"627", "Verchromte LED-Fassung für 5mm LEDs - Innenreflektor",
		"", "",
		"0.51", "4",
		"1", 1,
		"Stück", "19",
		"", "pd-1978739310.htm",
		"1::100::10;", 10,
		"29", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/724.jpg",
		100, 75,
		"724", "Luxeon Lumiled &quot;Star-Emitter&quot; rot, 750.000mcd 110°",
		"", "",
		"7.75", "25",
		"1", 1,
		"Stück", "32",
		"", "pd-1894838122.htm",
		"1::32::5;1::48::10;1::96::15;", 1,
		"22", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/725.jpg",
		100, 75,
		"725", "Luxeon Lumiled &quot;Star-Emitter&quot; grün, 500.000mcd 110°",
		"", "",
		"9.47", "25",
		"1", 1,
		"Stück", "32",
		"", "pd1369702580.htm",
		"1::16::5;1::32::10;1::64::15;1::96::20;", 1,
		"22", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/LED-ClLIP.JPG",
		100, 61,
		"645", "LED Montageclip, schwarz - für 5mm LEDs",
		"(Die LED ist im Lieferumfang nicht enthalten)", "",
		"0.06", "0.1",
		"1", 1,
		"Stück", "19",
		"", "pd-1954888838.htm",
		"", 10,
		"29", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/images/nopicture.gif",
		100, 60,
		"312", "0603 SMD-LED, gelb, 80mcd, 130°",
		"", "",
		"0.3", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-895877576.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/643.JPG",
		100, 102,
		"643", "12V-Steckernetzteil 0,5A/max. 6VA",
		"", "",
		"3.83", "350",
		"1", 1,
		"Stück", "20",
		"", "pd-525328754.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/images/nopicture.gif",
		100, 60,
		"332", "1206 SMD-LED, gelb, 80mcd, 130°",
		"", "",
		"0.3", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-1747474229.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/images/nopicture.gif",
		100, 60,
		"322", "0805 SMD-LED, gelb. 80mcd, 130° ",
		"", "",
		"0.3", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd1045937301.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/646.jpg",
		100, 121,
		"646", "100 Kabelbinder 100x2,5mm natur, im Beutel",
		"", "",
		"0.83", "25",
		"1", 1,
		"Stück", "19",
		"", "pd1046609967.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/647.JPG",
		100, 85,
		"647", "Leiterplatte für eigene Schaltungen, mit Streifenraster",
		"Größe: 160 x 100 mm", "",
		"2.23", "20",
		"1", 1,
		"Stück", "15",
		"", "pd1046610807.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/3mg.jpg",
		100, 85,
		"649", "Isolierband schwarz, 10m Rolle, 3M Temflex 1500",
		"", "",
		"0.83", "25",
		"1", 1,
		"Stück", "19",
		"", "pd-1032547715.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/0.jpg",
		100, 99,
		"350", "Tief-rote Super-Flux LED 1570mlm, 70°",
		"", "",
		"0.44", "0.5",
		"1", 1,
		"Stück", "34",
		"", "pd1046630829.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/0.jpg",
		100, 99,
		"351", "Rote Super-Flux LED 2090mlm, 70°",
		"", "",
		"0.44", "0.5",
		"1", 1,
		"Stück", "34",
		"", "pd1046631237.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/0.jpg",
		100, 99,
		"352", "Orange Super-Flux LED 2090mlm, 70°",
		"", "",
		"0.44", "0.5",
		"1", 1,
		"Stück", "34",
		"", "pd1046632559.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/0.jpg",
		100, 99,
		"353", "Grüne Super-Flux LED 1000mlm, 75°",
		"", "",
		"1.28", "0.5",
		"1", 1,
		"Stück", "34",
		"", "pd146356050.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/0.jpg",
		100, 99,
		"354", "Blaue Super-Flux LED 450mlm, 75°",
		"", "",
		"1.28", "0.5",
		"1", 1,
		"Stück", "34",
		"", "pd789181904.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/533-035.jpg",
		100, 127,
		"650", "Elektronik-Seitenschneider, 150mm lang",
		"", "",
		"4.3", "100",
		"1", 1,
		"Stück", "18",
		"", "pd1047061786.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/BL2200.jpg",
		100, 85,
		"112", "Blaue LED 5mm, 5000mcd, 30°",
		"", "",
		"1.11", "0.3",
		"1", 1,
		"Stück", "40",
		"", "pd1048757782.htm",
		"1::100::5;1::500::10;", 1,
		"7", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/YE3600.jpg",
		100, 89,
		"164", "Gelbe LED 5mm 2200mcd, 16° 587nm",
		"", "",
		"0.47", "0.3",
		"1", 1,
		"Stück", "37",
		"", "pd422843788.htm",
		"1::50::5;1::100::10;1::500::15;1::1000::25;", 1,
		"9", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/640.JPG",
		100, 77,
		"640", "Molex-Buchse, 4-polig mit Steckverbinder in Crimp-Technik",
		"", "",
		"0.42", "5",
		"1", 1,
		"Stück", "1",
		"", "pd1776556525.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/639.JPG",
		100, 78,
		"639", "Molex-Stecker, 4-polig mit Steckverbinder in Crimp-Technik",
		"", "",
		"0.42", "5",
		"1", 1,
		"Stück", "1",
		"", "pd1043585383.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/135big.jpg",
		100, 57,
		"135", "Duo-LED &quot;grün/orange&quot; 5mm",
		"", "",
		"0.51", "0.3",
		"1", 1,
		"Stück", "28",
		"", "pd-883256377.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/651.jpg",
		100, 126,
		"651", "Wippschalter 20mm rund, 1xEIN, schwarz",
		"max. Belastbarkeit: 10A (125VAC)/6A (250VAC)", "",
		"1.28", "10",
		"1", 1,
		"Stück", "21",
		"", "pd-1223746751.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/647.JPG",
		100, 84,
		"648", "Leiterplatte für eigene Schaltungen, mit Lötpunkten",
		"Raster 2,54mm, Große: 100x160mm", "",
		"2.23", "20",
		"1", 1,
		"Stück", "15",
		"", "pd1050091419.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/smd_allg.jpg",
		100, 89,
		"364", "PLCC SMD-LED, grün, 60mcd, 120°",
		"", "",
		"0.47", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-557076795.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/smd_allg.jpg",
		100, 89,
		"363", "PLCC SMD-LED, orange, 100mcd, 120°",
		"", "",
		"0.39", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-886769537.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/smd_allg.jpg",
		100, 89,
		"362", "PLCC SMD-LED, gelb, 100mcd, 120°",
		"", "",
		"0.39", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd1638777385.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/smd_allg.jpg",
		100, 89,
		"361", "PLCC SMD-LED, blau, 90mcd, 120°",
		"", "",
		"0.85", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd1404552771.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/MK1UM.jpg",
		100, 100,
		"623", "Miniatur-Kippschalter1-polig Umschalter",
		"", "",
		"0.85", "5",
		"1", 1,
		"Stück", "21",
		"", "pd1029835565.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/MK1UM.jpg",
		100, 100,
		"624", "Miniaturkippschalter 1-polig 1-0-1/Ein-Aus-Ein",
		"", "",
		"0.94", "5",
		"1", 1,
		"Stück", "21",
		"", "pd-330005161.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/625.jpg",
		100, 159,
		"625", "Miniatur-Kippschalter 2-polig Umschalter",
		"", "",
		"1.03", "8",
		"1", 1,
		"Stück", "21",
		"", "pd1040806453.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/625.jpg",
		100, 159,
		"638", "Miniatur-Kippschalter 2-polig 1-0-1/Ein-Aus-Ein",
		"", "",
		"1.11", "7",
		"1", 1,
		"Stück", "21",
		"", "pd1043583394.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/649-038b.jpg",
		100, 149,
		"609", "3,5-stelliges Digital-Multimeter",
		"Marken-Meßgerät der Spitzenklasse mit 32 Meßbereichen u.v.m.", "",
		"25.82", "300",
		"1", 1,
		"Stück", "14",
		"", "pd1051428649.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Loetset.jpg",
		100, 97,
		"613", "3-teiliges Lötset, 230V",
		"Lötkolben, Entlötpumpe und Lötkolbenständer", "",
		"6.03", "430",
		"1", 1,
		"Stück", "22",
		"", "pd1035980093.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/KLEBST.jpg",
		100, 143,
		"637", "Klebesticks 11mm für Klebepistole Art. Nr. 641",
		"", "",
		"1.11", "50",
		"1", 1,
		"Stück", "22",
		"", "pd-524255417.htm",
		"1::2::5;1::5::10;", 1,
		"40", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/heissklebepistole.jpg",
		100, 66,
		"641", "Heißklebepistole 230V/40W für 11mm Klebepatronen",
		"", "",
		"4.3", "200",
		"1", 1,
		"Stück", "22",
		"", "pd1043578289.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/smd_allg.jpg",
		100, 89,
		"360", "PLCC SMD-LED, rot, 100mcd, 120°",
		"", "",
		"0.39", "0.1",
		"1", 1,
		"Stück", "33",
		"", "pd-857285811.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/600.jpg",
		100, 153,
		"600", "9V-Blockbatterie Alkali",
		"&quot;Alkaline Long Life Battery&quot;", "",
		"1.72", "40",
		"1", 1,
		"Stück", "20",
		"", "pd1308523599.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/622.jpg",
		100, 98,
		"6203", "10m Ring schwarzer Schaltdraht, 0,5mm",
		"", "",
		"0.77", "50",
		"1", 1,
		"Stück", "17",
		"", "pd-88527133.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/620.jpg",
		100, 101,
		"6200", "10m Ring blauer Schaltdraht, 0,5mm",
		"", "",
		"0.77", "50",
		"1", 1,
		"Stück", "17",
		"", "pd1054200423.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/311-133.jpg",
		100, 139,
		"601", "Mignon Batterie Alkali, Typ AA, 4 Stück",
		"", "",
		"1.63", "90",
		"1", 1,
		"Stück", "20",
		"", "pd1055361966.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/803.jpg",
		100, 79,
		"803", "Y-Kabel mit 4-pol. Molexstecker/-buchsen",
		"1x Stecker, 2x Buchse", "",
		"0.83", "20",
		"1", 1,
		"Stück", "1",
		"", "pd262526948.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/KR100BL.jpg",
		100, 66,
		"404", "SONDERPREIS: CCFL-Set &quot;blau&quot; bestehend aus 300mm Röhre + Inverter",
		"Komplettset &amp; betriebsbereit für 12V (bzw. 13,8V im KFZ)", "",
		"1.67", "200",
		"1", 1,
		"Stück", "27",
		"", "pd1044711469.htm",
		"1::10::5;1::40::10;", 1,
		"43", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/6131.jpg",
		100, 34,
		"6131", "Lötkolben mit Feinlötspitze, zunderfrei, 230V/30W",
		"", "",
		"3.44", "150",
		"1", 1,
		"Stück", "22",
		"", "pd-598559262.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/rgb_v10b.gif",
		100, 75,
		"118", "Rainbow-LED &quot;blinking&quot;",
		"Die Grundfarben rot, grün, blau wechseln kontinuierlich, auch Mischfarben!", "",
		"1.46", "0.3",
		"1", 1,
		"Stück", "28",
		"", "pd511680895.htm",
		"1::100::5;1::500::10;1::1000::20;", 1,
		"36", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/BL5000.jpg",
		100, 69,
		"113", "Blaue Low-Budged LED 5mm, 4000mcd, 20°",
		"", "",
		"0.16", "0.3",
		"1", 1,
		"Stück", "40",
		"", "pd-1235510522.htm",
		"1::100::5;1::500::7.5;1::1000::10;", 10,
		"7", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/630.jpg",
		100, 68,
		"63022", "220 Ohm-Vorwiderstand (Metalloxid), 1%, Belastbarkeit 0,6W",
		"z.B. für Superflux LEDs (blau &amp; grün) an 13,8V", "",
		"0.06", "0.2",
		"1", 1,
		"Stück", "16",
		"", "pd430297662.htm",
		"0::1000::0.04;", 10,
		"20", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/BL2200.jpg",
		100, 85,
		"114", "Blaue LED 5mm, 1600mcd, 40°",
		"", "",
		"0.68", "0.3",
		"1", 1,
		"Stück", "40",
		"", "pd1068056634.htm",
		"1::50::5;1::100::10;1::500::15;1::1000::25;", 1,
		"7", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/KR100RD.jpg",
		100, 68,
		"512", "CCFL-Set &quot;rot&quot; bestehend aus 100mm Röhre + Inverter",
		"", "",
		"1.67", "180",
		"1", 1,
		"Stück", "26",
		"", "pd1992611257.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/KR100UV.jpg",
		100, 65,
		"513", "CCFL-Set &quot;ultraviolett&quot; bestehend aus 100mm Röhre + Inverter",
		"", "",
		"1.67", "180",
		"1", 1,
		"Stück", "26",
		"", "pd1162690519.htm",
		"0::10::7.49;0::40::6.99;", 1,
		"42", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/KR100UV.jpg",
		100, 65,
		"517", "CCFL-Set &quot;ultraviolett&quot; bestehend aus 300mm Röhre + Inverter",
		"", "",
		"1.67", "200",
		"1", 1,
		"Stück", "27",
		"", "pd1664544705.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/3mg.JPG",
		100, 85,
		"654", "Isolierband blau, 10m Rolle, 3M Temflex 1500",
		"", "",
		"0.83", "20",
		"1", 1,
		"Stück", "19",
		"", "pd1073900277.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/0.jpg",
		100, 99,
		"355", "Weiße Super-Flux LED 780mlm, 50°",
		"", "",
		"2.41", "0.5",
		"1", 1,
		"Stück", "34",
		"", "pd-943123825.htm",
		"0::25::2.59;0::100::1.99;0::500::1.89;0::1000::1.69;", 1,
		"32", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/755-145.jpg",
		100, 74,
		"729", "LED-Lampe, Sockel BA9S 12V, Farbe: blau, Paarpreis",
		"***lieferbar solange Vorrat reicht", "",
		"0.83", "20",
		"1", 1,
		"Stück", "12",
		"", "pd1071395443.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/721.jpg",
		100, 75,
		"728", "Luxeon Star 3 Watt &quot;LXHL-LW3C&quot; weiß, 80 lumen, 140°",
		"", "",
		"12.06", "25",
		"1", 1,
		"Stück", "32",
		"", "pd1078407608.htm",
		"1::16::3;1::32::6;1::64::10;1::96::15;", 1,
		"22", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/863-075.jpg",
		75, 74,
		"1002", "Ab 25 EUR Warenwert gratis: Scan-Radio",
		"(solange Vorrat)", "",
		"0", "75",
		"1", 1,
		"Stück", "4",
		"", "pd-1728422923.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/P5270014.jpg",
		100, 86,
		"652", "Wippschalter rechteckig, 1xEIN, schwarz",
		"max. Belastbarkeit: 10A (125VAC)/6A (250VAC)", "",
		"1.03", "10",
		"1", 1,
		"Stück", "21",
		"", "pd-475663629.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/311-134.jpg",
		100, 141,
		"6011", "Micro-Batterie Alkali, Typ AAA, 4 Stück in Blister",
		"", "",
		"1.72", "60",
		"1", 1,
		"Stück", "20",
		"", "pd1085570587.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/LED-ClLIP.JPG",
		100, 61,
		"645-100", "LED Montageclip, schwarz - für 5mm LEDs 100 Stück",
		"(Die LED ist im Lieferumfang nicht enthalten)", "",
		"3.44", "10",
		"1", 1,
		"Stück", "19",
		"", "pd-942911448.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/images/nopicture.gif",
		100, 60,
		"726", "Luxeon Lumiled &quot;Star-Emitter&quot; amber (gelb), 600.000mcd 110°",
		"", "",
		"7.75", "25",
		"1", 1,
		"Stück", "32",
		"", "pd1086519252.htm",
		"1::16::5;1::32::10;1::64::15;1::96::20;", 1,
		"22", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/210.JPG",
		100, 75,
		"210", "Blaue LED 3mm, 3000mcd, 30°",
		"", "",
		"0.85", "0.3",
		"1", 1,
		"Stück", "31",
		"", "pd-869762023.htm",
		"1::50::5;1::100::10;1::500::15;1::1000::25;", 1,
		"53", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/210.JPG",
		100, 75,
		"211", "Blaue LED 3mm, 1920mcd, 30° (Nichia NSPB310A-wT)",
		"", "",
		"1.28", "0.3",
		"1", 1,
		"Stück", "31",
		"", "pd160766030.htm",
		"1::100::5;1::1000::10;", 1,
		"53", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/220.jpg",
		100, 75,
		"220", "Grüne LED 3mm, 2800mcd, 40°",
		"", "",
		"0.85", "0.3",
		"1", 1,
		"Stück", "31",
		"", "pd-567237274.htm",
		"1::50::5;1::100::10;1::500::15;1::1000::20;", 1,
		"53", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/240.JPG",
		100, 75,
		"240", "Weiße LED 3mm, 1700mcd, 40° x=0,31/y=0,31",
		"", "",
		"0.85", "0.3",
		"1", 1,
		"Stück", "31",
		"", "pd-1773381040.htm",
		"1::100::10;1::500::15;1::1000::20;", 1,
		"53", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/P6170018.jpg",
		100, 66,
		"143", "Warmweiße LED, 3600mcd, 40° (Yoldal YZ-WS5N40N)",
		"Höchste Qualität zum niedrigen Preis!", "",
		"1.28", "0.3",
		"1", 1,
		"Stück", "41",
		"", "pd1833432794.htm",
		"0::50::1.2;0::100::1.16;0::500::1.11;0::1000::1.03;", 1,
		"8", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/wt7000.jpg",
		100, 86,
		"144", "Weiße LED 5mm, 12000mcd, 20°",
		"", "",
		"0.25", "0.3",
		"1", 1,
		"Stück", "41",
		"", "pd-67844023.htm",
		"1::100::5;1::500::10;", 1,
		"8", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/751-232s.jpg",
		100, 71,
		"2002", "Car-Amplifier McHammer &quot;Mystic 5.1&quot; 4x 675 Watt + 1x 850Watt, schwarz, weißes Backlight",
		"", "",
		"109.4", "4000",
		"1", 1,
		"Stück", "7",
		"", "pd450166048.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/530633.jpg",
		100, 73,
		"2005", "Micro-Kamera McVoice &quot;MK-4 color&quot; ",
		"Miniatur Farbkamera", "",
		"30.13", "100",
		"1", 1,
		"Stück", "8",
		"", "pd1089205302.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/1534154.jpg",
		122, 80,
		"2009", "Powerkabel 16mm², rot",
		"", "",
		"2.19", "100",
		"1", 1,
		"Meter", "9",
		"", "pd339971746.htm",
		"0::10::1.99;0::100::1.39;", 1,
		"60", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/1840522.jpg",
		115, 80,
		"2007", "CarHifi Anschlußkit &quot;CPK-1 pro&quot; 10mm²",
		"Versandfertig in ca. 72h", "",
		"21.9", "1000",
		"1", 1,
		"Stück", "9",
		"", "pd-1300257848.htm",
		"", 1,
		"60", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/1840522.jpg",
		100, 70,
		"2008", "CarHifi Anschlußkit &quot;CPK-2 LC&quot; 6mm²",
		"versandfertig in ca. 72h", "",
		"13.99", "1200",
		"1", 1,
		"Stück", "9",
		"", "pd-297316554.htm",
		"", 1,
		"60", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/1534154.jpg",
		100, 66,
		"2010", "Powerkabel 16mm², schwarz",
		"", "",
		"2.19", "100",
		"1", 1,
		"Meter", "9",
		"", "pd400730028.htm",
		"0::10::1.99;0::100::1.39;", 1,
		"60", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/1534154.jpg",
		100, 66,
		"2011", "Powerkabel 25mm², rot",
		"", "",
		"2.49", "100",
		"1", 1,
		"Stück", "9",
		"", "pd-1611462024.htm",
		"0::10::2.29;0::100::1.89;", 1,
		"60", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/1534154.jpg",
		100, 66,
		"2012", "Powerkabel 25mm², schwarz",
		"", "",
		"2.49", "100",
		"1", 1,
		"Stück", "9",
		"", "pd-1495690748.htm",
		"0::10::2.29;0::100::1.89;", 1,
		"60", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/1534154.jpg",
		100, 66,
		"2013", "Powerkabel 35mm², rot",
		"", "",
		"4.19", "100",
		"1", 1,
		"Stück", "9",
		"", "pd-1633154480.htm",
		"0::10::3.99;0::50::3.19;", 1,
		"60", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/1534154.jpg",
		100, 66,
		"2014", "Powerkabel 35mm², schwarz",
		"", "",
		"4.19", "100",
		"1", 1,
		"Stück", "9",
		"", "pd-1065025700.htm",
		"0::10::3.99;0::50::3.19;", 1,
		"60", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/1840070.jpg",
		45, 80,
		"2015", "Power-Kondensator MEGAKICK &quot;PowerTank 50&quot; ",
		"", "",
		"49.9", "200",
		"1", 1,
		"Stück", "7",
		"", "pd-1921532632.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/1840070.jpg",
		100, 178,
		"2016", "Power-Kondensator MEGAKICK &quot;PowerTank 100&quot; ",
		"", "",
		"59.9", "250",
		"1", 1,
		"Stück", "7",
		"", "pd-669612138.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/1840072.jpg",
		56, 80,
		"2017", "Power-Kondensator MEGAKICK &quot;PowerTank 200&quot; ",
		"", "",
		"119.9", "450",
		"1", 1,
		"Stück", "7",
		"", "pd1408520116.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/1861063.jpg",
		100, 84,
		"2018", "TFT-Farbmonitor &quot;TFT-70D&quot; 7&quot;/178mm für Deckenmontage",
		"", "",
		"199", "600",
		"1", 1,
		"Stück", "8",
		"", "pd-2044230912.htm",
		"0::3::189;0::6::179;", 1,
		"57", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/1861077.jpg",
		100, 125,
		"2019", "TFT-Farbmonitor &quot;TFT-V600 tv&quot; silver ",
		"integrierter TV-Tuner", "",
		"169", "600",
		"1", 1,
		"Stück", "8",
		"", "pd979378478.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/968-130.jpg",
		100, 67,
		"2020", "Spannungswandler McVoice SPW-12-150",
		"für 230V-Geräte bis max. 150W", "",
		"29.9", "500",
		"1", 1,
		"Stück", "10",
		"", "pd1216262429.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/1968131.jpg",
		125, 80,
		"2021", "Spannungswandler McVoice SPW12-350",
		"für 230V-Geräte bis max. 350W", "",
		"69.95", "800",
		"1", 1,
		"Stück", "10",
		"", "pd-977219437.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/1968131.jpg",
		125, 80,
		"2022", "Spannungswandler McVoice SPW12-500",
		"für 230V-Geräte bis max. 500W", "",
		"89.95", "1200",
		"1", 1,
		"Stück", "10",
		"", "pd-867363591.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/1968132.jpg",
		98, 80,
		"2023", "Spannungswandler McVoice SPW12-1000",
		"für 230V-Geräte bis max. 1000W", "",
		"169", "3000",
		"1", 1,
		"Stück", "10",
		"", "pd316000207.htm",
		"", 1,
		"61", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/1968113.jpg",
		104, 80,
		"2024", "Tönungsfolien-Set I",
		"51x152cm Seite, 76x152cm Heck ", "",
		"22.9", "500",
		"1", 1,
		"Stück", "6",
		"", "pd-959689067.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/1968113.jpg",
		100, 77,
		"2025", "Tönungsfolien-Set II ",
		"51x250cm Seite, 76x152cm Heck ", "",
		"29.7", "500",
		"1", 1,
		"Stück", "6",
		"", "pd1332120267.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/1755164.jpg",
		113, 80,
		"2026", "UnderCar Leuchtkit &quot;LED Magic&quot;",
		"", "",
		"59.48", "2500",
		"1", 1,
		"Stück", "6",
		"", "pd295909873.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/1755162.jpg",
		100, 80,
		"2027", "Neon-Leuchtstab &quot;AquaBlue 36&quot; 90cm",
		"", "",
		"17.23", "250",
		"1", 1,
		"Stück", "6",
		"", "pd962942343.htm",
		"", 1,
		"59", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/1751081.jpg",
		97, 80,
		"2028", "Car-Amplifier McHammer &quot;Tornado1200&quot;",
		"", "",
		"64.57", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1092832233.htm",
		"", 1,
		"56", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/images/nopicture.gif",
		100, 60,
		"642", "230V Konstantstromquelle für Luxeon LEDs, max. 3W (=3 Stück)",
		"", "",
		"6.51", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1094112203.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/images/nopicture.gif",
		100, 60,
		"644", "5-20VDC Konstantstromquelle für Luxeon LEDs 350mA",
		"", "",
		"6.51", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-1490906530.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/537-347.jpg",
		100, 100,
		"707", "LED-Strahler in MR16-Bauform mit 15 LEDs, rot",
		"", "",
		"0.83", "0.01",
		"1", 1,
		"Stück", "29",
		"", "pd-1997531655.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/537-348.jpg",
		100, 100,
		"708", "LED-Strahler in MR16-Bauform mit 15 LEDs, grün",
		"", "",
		"0.83", "0.01",
		"1", 1,
		"Stück", "29",
		"", "pd-1055608625.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/311-301.jpg",
		100, 125,
		"604", "2400mAh Mignon Akku, 4er Pack in Blister",
		"Der Power-Akku für Digitalkamera u.v.m.", "",
		"5.6", "80",
		"1", 1,
		"Stück", "20",
		"", "pd1100870167.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/1539122.jpg",
		100, 11,
		"8201", "Laufschrift-Board LSB-100R",
		"", "",
		"99", "3000",
		"1", 1,
		"Stück", "29",
		"", "pd-1864497607.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/1539121.jpg",
		80, 13,
		"8202", "Laufschrift-Board LSB-700C",
		"", "",
		"172.37", "2000",
		"1", 1,
		"Stück", "29",
		"", "pd-1850926321.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/images/nopicture.gif",
		100, 60,
		"8203", "Software-Kit für Laufschriftboards",
		"", "",
		"85.34", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1600597035.htm",
		"", 1,
		"3", "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();
			};
		};
