	// 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="83" height="24" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on demand";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/295x3.6.jpg",
		80, 61,
		"160010025N", "100 mm x 2.5 mm White/Black nylon cable ties. Pack 100",
		"", "Manufac",
		"0.3", "0.05",
		"1", 1,
		"Single Pack", "8",
		"Color;White@", "pd85507186.htm",
		"StageDiscount", 1,
		"2.5", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/295x3.6.jpg",
		80, 61,
		"160012025N", "120 mm x 2.5 mm White/Black nylon cable ties. Pack 100",
		"", "Davico",
		"0.36", "0.06",
		"1", 1,
		"Pieces", "8",
		"Color;White@", "pd-51107938.htm",
		"", 1,
		"2.5", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/295x3.6.jpg",
		80, 61,
		"160020025N", "200 mm x 2.5 mm White/black nylon Cable ties. Pack 100",
		"", "Davico",
		"0.7", "0.1",
		"1", 1,
		"Single Pack", "8",
		"Color;White@", "pd1548352906.htm",
		"", 1,
		"2.5", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/images/nopicture.gif",
		55, 38,
		"160029536N", "295 mm x 3.6mm White/black nylon cable ties. Pack 100",
		"", "Davico",
		"0.98", "0.2",
		"1", 1,
		"Pieces", "9",
		"Color;White@", "pd-1333241438.htm",
		"", 1,
		"3.6", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/images/nopicture.gif",
		55, 38,
		"160020048N", "200 mm x 4.8 mm White/Black nylon cable ties. Pack 100",
		"", "Davico",
		"1.39", "0.2",
		"1", 1,
		"Pieces", "10",
		"Color;White@", "pd827422670.htm",
		"", 1,
		"4.8", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/images/nopicture.gif",
		55, 38,
		"160025048N", "250 mm x 4.8 mm White/Black nylon cable ties. Pack 100",
		"", "Davico",
		"1.69", "0.2",
		"1", 1,
		"Pieces", "10",
		"Color;White@", "pd1852715194.htm",
		"", 1,
		"4.8", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/295x3.6.jpg",
		80, 61,
		"1600200362N", "200 mm x 3.6mm White/black nylon cable ties. Pack 100",
		"", "Davico",
		"0.74", "0.12",
		"1", 1,
		"Single Pack", "9",
		"Color;White@", "pd1067793949.htm",
		"", 1,
		"3.6", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/pvctape_thumb.jpg",
		80, 83,
		"150001191", "General purpose non-migratory plasticized insulation tape supplied in 9 different colours",
		"19mm width.", "Davico",
		"0.6", "0.1",
		"1", 1,
		"Single Roll", "31",
		"Color;Black@", "pd1522904751.htm",
		"0::1::0.6;0::50::0.55;", 1,
		"8", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/pvctape_thumb.jpg",
		80, 83,
		"150001251", "General purpose non-migratory plasticized insulation tape supplied in 9 different colours",
		"25mm width.", "Davico",
		"0.6", "0.1",
		"1", 1,
		"Single Roll", "31",
		"Color;Black@", "pd1067880294.htm",
		"0::1::0.7;0::10::0.65;0::50::0.6;", 1,
		"8", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/foambig.JPG",
		80, 80,
		"AERO-SERVIS-FOAM30", "Servisol Anti-static Foam Cleaner 30 - Supplied in a 400ml aerosol spray",
		"Manufactured by Servisol. General purpose form cleaner for all hard surfaces.", "Manufac",
		"3.95", "0.5",
		"1", 1,
		"400 ml Can", "0",
		"", "pd-61095107.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/super 10 big.jpg",
		132, 132,
		"AERO-SERVIS-SUPER10", "Servisol Super 10 Switch cleaning Lubricant.",
		"Manufactured by Servisol and supplied in a 200 ml aerosol spray", "Manufac",
		"3.95", "0.22",
		"1", 1,
		"200 ml can", "0",
		"", "pd394833843.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/aerobig.JPG",
		80, 61,
		"AERO-SERVIS-KLEANE50", "Servisol Aero Klene 50 Electronics cleaning solvent",
		"Manufactured by Servisol and supplied in a 200 ml aerosol spray", "Manufac",
		"4.96", "0.22",
		"1", 1,
		"200 ml can", "0",
		"", "pd1099760730.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/freezer small.JPG",
		80, 80,
		"AERO-FREEZEIT21", "Low Static, Freeze it 21 aerosol spray. Freezes down to -50 degrees.",
		"Manufactured by Servisol and supplied in a 200 ml aerosol spray", "Manufac",
		"6.95", "0.25",
		"1", 1,
		"200 ml can", "0",
		"", "pd2108192313.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Heatsink-25g.jpg",
		132, 132,
		"HEATSINK-COMP-25G", "Servisol Heatsink commpound supplied in a 25g tube.",
		"For thermal coupling  and heat dissipation.  Heat sink commound is a highly thermally conductive silicone grease", "Manufac",
		"3.85", "0.03",
		"1", 1,
		"Single item", "18",
		"", "pd1102074212.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/boot lace white.JPG",
		114, 65,
		"Bootlace_16_Ivory_F", "Insulated Boot Lace Ferrules. 16.0 mm cable size. Ivory. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 12mm Pin Length", "Manufac",
		"3.01", "0.06",
		"1", 1,
		"Pieces", "2",
		"", "pd-1017191983.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Black.jpg",
		114, 76,
		"Bootlace_10_Brown_F", "Insulated Boot Lace Ferrules. 10.0 mm cable size. Brown. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 12mm Pin Length", "Manufac",
		"2.41", "0.05",
		"1", 1,
		"Pieces", "2",
		"", "pd54486955.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Boot lace Green.JPG",
		114, 60,
		"Bootlace_6.0_Green_F", "Insulated Boot Lace Ferrules. 6.0mm cable size. Green. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 12mm Pin Length", "Manufac",
		"2.11", "0.04",
		"1", 1,
		"Pieces", "2",
		"", "pd1648400501.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/boot lace orange.JPG",
		114, 59,
		"Bootlace_4.0_Orang_F", "Insulated Boot Lace Ferrules. 4.0mm cable size. Orange. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 9mm Pin Length", "Manufac",
		"1.87", "0.03",
		"1", 1,
		"Pieces", "2",
		"", "pd-1633225041.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/boot lace grey.JPG",
		114, 65,
		"Bootlace_2.5_Grey_F", "Insulated Boot Lace Ferrules. 2.5mm cable size. Grey. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 8mm Pin Length", "Manufac",
		"1.45", "0.02",
		"1", 1,
		"Pieces", "2",
		"", "pd144564441.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Black.jpg",
		80, 53,
		"Bootlace_1.5_Black_F", "Insulated Boot Lace Ferrules. 1.5mm cable size. Black. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 8mm Pin Length", "Manufac",
		"1.41", "0.02",
		"1", 1,
		"Single Pack", "2",
		"", "pd1831736207.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Red.jpg",
		114, 75,
		"Bootlace_1.0_Red_F", "Insulated Boot Lace Ferrules. 1.0mm cable size. Red. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 8mm Pin Length", "Manufac",
		"1.41", "0.02",
		"1", 1,
		"Single Pack", "2",
		"", "pd1097007246.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/boot lace blue.JPG",
		114, 65,
		"Bootlace_0.75_Blue_F", "Insulated Boot Lace Ferrules. 0.75mm cable size. Blue. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 8mm Pin Length", "Manufac",
		"1.41", "0.02",
		"1", 1,
		"Pieces", "2",
		"", "pd-528273037.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/boot lace white.JPG",
		114, 65,
		"Bootlace_0.5_White_F", "Insulated Boot Lace Ferrules. 0.5mm cable size. White. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 8mm Pin Length", "Manufac",
		"1.41", "0.02",
		"1", 1,
		"Pieces", "2",
		"", "pd-1045307651.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/boot lace orange.JPG",
		114, 59,
		"Bootlace_0.3_Pink_F", "Insulated Boot Lace Ferrules. 0.3mm  cable size. Pink. Single pack of 100",
		"French colour code - Insulated - Single Wire Entry - 6mm Pin Length", "Manufac",
		"1.51", "0.02",
		"1", 1,
		"Pieces", "2",
		"", "pd1098095607.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/IMG_0754.jpg",
		132, 99,
		"Ferrule 1.0mm", "Non-insulated cord end ferrules. 1.0mm cable size. Single pack of 100",
		"Non-insulated - Single Wire Entry - 10mm Pin Length", "Manufac",
		"1.37", "0.02",
		"1", 1,
		"Single Pack", "3",
		"", "pd1107691881.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Thumb025.jpg",
		132, 99,
		"CRIMP-BUTT-4.5-BLUE", "Insulated crimp butt connector. Internal diamter 4.5mm BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.95", "0.175",
		"1", 1,
		"Single Pack", "21",
		"", "pd1005498690.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Thumb027.jpg",
		132, 99,
		"CRIMP-BUTT-4.0-RED", "Insulated crimp butt connector. Internal diamter 4.0mm RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.95", "0.15",
		"1", 1,
		"Single Pack", "21",
		"", "pd1108722847.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/Thumb028.jpg",
		132, 99,
		"CRIMP-BUTT-6.8-YELL", "Insulated crimp butt connector. Internal diamter 6.8mm YELLOW  insulation. Pack 100",
		"Conductor size 4.0 - 6.0mm / 12 - 10 awg.", "Manufac",
		"3.85", "0.28",
		"1", 1,
		"Single Pack", "21",
		"", "pd1184219456.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Cable ties silver.jpg",
		132, 99,
		"CABLETIE-300-4.8 SIL", "300 mm x 4.8 mm Silver nylon cable ties. Pack 100",
		"Ideal for securing wheel trims", "Manufac",
		"1.95", "0.23",
		"1", 1,
		"Single Pack", "13",
		"", "pd846748193.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Cable ties silver.jpg",
		132, 99,
		"CABLETIE-370-4.8-SIL", "370mm x 4.8mm Silver nylon cable ties. Pack 100",
		"Ideal for securing wheel trims", "Manufac",
		"2.55", "0.25",
		"1", 1,
		"Single Pack", "13",
		"", "pd1224014334.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/Label 130.jpg",
		80, 80,
		"AERO-LABEL130", "A highly effective solvent for removing self-adhesive labels and stickers.",
		"Manufactured by Servisol and supplied in a 200 ml aerosol spray", "Manufac",
		"5.49", "0.3",
		"1", 1,
		"200 ml can", "0",
		"", "pd1111500644.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Piggy Red 132001.jpg",
		127, 132,
		"CRIMP-PIGGY-6.3-RED", "Insulated crimp piggy back terminal. Female / Male. 6.3 mm RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.81", "0.2",
		"1", 1,
		"Single Pack", "25",
		"", "pd-687814922.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/PiggyBack Blue with insert.JPG",
		132, 99,
		"CRIMP-PIGGY-6.3-BLUE", "Insulated crimp piggy back  terminal. Female / male 6.3mm BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.88", "0.2",
		"1", 1,
		"Single Pack", "25",
		"", "pd-455467500.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/BLUE FEMALE 132001.jpg",
		132, 104,
		"CRIMP-FEMALE-6.6-BLU", "Insulated crimp female push on  terminal 6.6mm. BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg. (Suitable for male tab size of 6.3mm)", "Manufac",
		"2.36", "0.15",
		"1", 1,
		"Single Pack", "22",
		"", "pd1112174358.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/BLUE FEMALE 132001.jpg",
		132, 104,
		"CRIMP-FEMALE-4.8-BLU", "Insulated crimp female push on  terminal 5.0mm.  BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg. (Suitable for makle tab size of 4.8mm)", "Manufac",
		"2.34", "0.15",
		"1", 1,
		"Single Pack", "22",
		"", "pd1769505588.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/BLUE FEMALE 132001.jpg",
		132, 104,
		"CRIMP-FEMALE-8.0-BLU", "Insulated crimp female push on  terminal 8.0mm.BLUE insulation.  Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg. Suitable for male tab size of 8.0mm", "Manufac",
		"3.75", "0.2",
		"1", 1,
		"Single Pack", "22",
		"", "pd634875010.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/solder pump pro small.JPG",
		218, 58,
		"SOLDER-PUMP-PRO", "High Quality Desoldering Pump.  High Suction. Metal/ABS Construction ",
		"", "Manufac",
		"4.95", "0.1",
		"1", 1,
		"Single item", "33",
		"", "pd1621442330.htm",
		"", 1,
		"24", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/RED RING 132001.jpg",
		132, 116,
		"CRIMP-RING-5.3-RED", "Insulated crimp ring terminal. Hole size 5.3mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.86", "0.1",
		"1", 1,
		"Single Pack", "28",
		"", "pd1116235146.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/RED RING 132001.jpg",
		132, 116,
		"CRIMP-RING-4.3-RED", "Insulated crimp ring terminal. Hole size 4.3mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.45", "0.1",
		"1", 1,
		"Single Pack", "28",
		"", "pd-407366138.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/BLUE RING 132001.jpg",
		132, 123,
		"CRIMP-RING-4.3-BLUE", "Insulated crimp ring terminal. Hole size 4.3mm. BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.55", "0.1",
		"1", 1,
		"Single Pack", "27",
		"", "pd-1442036828.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/RED RING 132001.jpg",
		132, 116,
		"CRIMP-RING-3.2-RED", "Insulated crimp ring terminal. Hole size 3.2mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.35", "0.1",
		"1", 1,
		"Single Pack", "28",
		"", "pd-497973866.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/Glass 185 big.JPG",
		27, 77,
		"AERO-GLASS-185", "Servisol Glass Cleaner 185 - Supplied in a 400ml aerosol spray",
		"Manufactured by Servisol. ", "Manufac",
		"4.95", "0.5",
		"1", 1,
		"400 ml Can", "0",
		"", "pd1116618427.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/RED RING 132001.jpg",
		132, 116,
		"CRIMP-RING-6.4-RED", "Insulated crimp ring terminal. Hole size 6.4mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.95", "0.1",
		"1", 1,
		"Single Pack", "28",
		"", "pd1116940705.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/RED RING 132001.jpg",
		132, 116,
		"CRIMP-RING-8.4-RED", "Insulated crimp ring terminal. Hole size 8.4mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.98", "0.1",
		"1", 1,
		"Single Pack", "28",
		"", "pd823102647.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/BLUE RING 132001.jpg",
		132, 123,
		"CRIMP-RING-6.4-BLUE", "Insulated crimp ring terminal. Hole size 6.4mm. BLUE  insulation. Pack 100",
		"Conductor size 1.5  - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.85", "0.1",
		"1", 1,
		"Single Pack", "27",
		"", "pd1270968568.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/BLUE RING 132001.jpg",
		132, 123,
		"CRIMP-RING-3.2-BLUE", "Insulated crimp ring terminal. Hole size 3.2mm. BLUE  insulation. Pack 100",
		"Conductor size 1.5  - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.45", "0.1",
		"1", 1,
		"Single Pack", "27",
		"", "pd1947876797.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/YELLOW RING 132001.jpg",
		132, 123,
		"CRIMP-RING-6.4-YELL", "Insulated crimp ring terminal. Hole size 6.4mm. YELLOW insulation. Pack 100",
		"Conductor size 4.0 - 6.0 mm / 12  - 10 awg.", "Manufac",
		"3.65", "0.2",
		"1", 1,
		"Single Pack", "29",
		"", "pd1924457074.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/YELLOW RING 132001.jpg",
		132, 123,
		"CRIMP-RING-8.4-YEL", "Insulated crimp ring terminal. Hole size 8.4mm. YELLOW insulation. Pack 100",
		"Conductor size 4.0 - 6.0mm  sq. / 12 - 10 awg.", "Manufac",
		"4.95", "0.1",
		"1", 1,
		"Single Pack", "29",
		"", "pd826096747.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/RED FEMALE 132001.jpg",
		132, 116,
		"CRIMP-FEMALE-6.6-RED", "Insulated crimp female push on  terminal 6.6mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg. (Suitable for male tab size of 6.3mm)", "Manufac",
		"2.59", "0.12",
		"1", 1,
		"Single Pack", "22",
		"", "pd1933789261.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/RED FEMALE 132001.jpg",
		132, 116,
		"CRIMP-FEMALE-3.2-RED", "Insulated crimp female push on  terminal 3.2mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg. (Suitable for male tab size of 2.8mm)", "Manufac",
		"2.08", "0.12",
		"1", 1,
		"Single Pack", "22",
		"", "pd-346428400.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/RED FORK 132001.jpg",
		132, 107,
		"CRIMP-FORK-3.2-RED", "Insulated crimp fork terminal 3.2mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"1.78", "0.1",
		"1", 1,
		"Single Pack", "23",
		"", "pd1117281561.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/RED FORK 132001.jpg",
		132, 107,
		"CRIMP-FORK-4.3-RED", "Insulated crimp fork terminal 4.3mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"1.83", "0.1",
		"1", 1,
		"Single Pack", "23",
		"", "pd-1932604177.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/RED FORK 132001.jpg",
		132, 107,
		"CRIMP-FORK-6.4-RED", "Insulated crimp fork terminal 6.4mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.1", "0.1",
		"1", 1,
		"Single Pack", "23",
		"", "pd1283283125.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/BLUE FORK 132001.jpg",
		132, 112,
		"CRIMP-FORK-4.3-BLUE", "Insulated crimp fork terminal 4.3mm. BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.21", "0.12",
		"1", 1,
		"Single Pack", "23",
		"", "pd1117282360.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/BLUE FORK 132001.jpg",
		132, 112,
		"CRIMP-FORK-3.7-BLUE", "Insulated crimp fork terminal 3.7mm. BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"1.92", "0.12",
		"1", 1,
		"Single Pack", "23",
		"", "pd-1230888666.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/BLUE FORK 132001.jpg",
		132, 112,
		"CRIMP-FORK-6.4-BLUE", "Insulated crimp fork terminal 6.4mm. BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.22", "0.12",
		"1", 1,
		"Single Pack", "23",
		"", "pd-278019132.htm",
		"", 1,
		"48", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/RED MALE 132001.jpg",
		127, 132,
		"CRIMP-MALE-4.8-RED", "Insulated crimp male (spade) terminal 4.8mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.24", "0.1",
		"1", 1,
		"Single Pack", "24",
		"", "pd-334482060.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/BLUE MALE 132001.jpg",
		132, 129,
		"CRIMP-MALE-4.8-BLUE", "Insulated male (spade) terminal 4.8mm. BLUE  insulation. Pack 100",
		"Conductor size 1.5  - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.4", "0.1",
		"1", 1,
		"Single Pack", "24",
		"", "pd-283396581.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/RED MALE 132001.jpg",
		127, 132,
		"CRIMP-MALE-6.3-RED", "Insulated crimp male (spade) terminal 6.3mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.22", "0.1",
		"1", 1,
		"Single Pack", "24",
		"", "pd-618088210.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/BLUE MALE 132001.jpg",
		132, 129,
		"CRIMP-MALE-6.3-BLUE", "Insulated male (spade) terminal 6.3mm. BLUE  insulation. Pack 100",
		"Conductor size 1.5  - 2.5mm / 16 - 14 awg.", "Manufac",
		"2.28", "0.1",
		"1", 1,
		"Single Pack", "24",
		"", "pd-795431971.htm",
		"", 1,
		"49", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/Blue FM Bullet 132001.jpg",
		132, 128,
		"CRIMP-FMBUL-BLUE", "Insulated crimp female bullet connector.  BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"3.35", "0.1",
		"1", 1,
		"Single Pack", "20",
		"", "pd2088867873.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Cabletie_base2.JPG",
		80, 74,
		"CABLETIE-BASE-28-N", "2 Way Self Adhesive Cable Tie Base 28mm x 28mm - Pack quantity 100. Available in Black or White.",
		"Nylon 6/6  with centre hole for screw fixing. To accept 4.8mm maximum width cable ties.", "Manufac",
		"2.99", "0.18",
		"1", 1,
		"Pieces", "5",
		"Color;Black@", "pd-1240048330.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Cabletie_base2.JPG",
		80, 74,
		"CABLETIE-BASE-19-N", "2 Way Self Adhesive Cable Tie Base 19mm x 19mm - Pack quantity 100. Available in Black or White.",
		"Nylon 6/6  - Available in Black or White.  To accept 4.8mm maximum width cable ties.", "Manufac",
		"2.29", "0.1",
		"1", 1,
		"Pieces", "5",
		"Color;Black@", "pd-1097219958.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/saddle black 132001.jpg",
		130, 132,
		"SADDLEMOUNT-8.0-BLK", "Cable Tie saddle mount. To suit ties up to 8.0mm. BLACK  - Pack quantity 100",
		"Nylon 6.6  - Colour: Black  To accept 8.0mm maximum width cable ties.", "Manufac",
		"3.69", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd-76036177.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/saddle white 132001.jpg",
		132, 121,
		"SADDLEMOUNT-8.0-NAT", "Cable Tie saddle mount. To suit ties up to 8.0mm. WHITE (Natual)  - Pack quantity 100",
		"Nylon 6.6  -   To accept 8.0mm maximum width cable ties.", "Manufac",
		"3.69", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd-1807267669.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/saddle black 132001.jpg",
		130, 132,
		"SADDLEMOUNT-4.8-BLK", "Cable Tie saddle mount. To suit ties up to 4.8mm. BLACK  - Pack quantity 100",
		"Nylon 6.6  - Colour: Black  To accept 4.8mm maximum width cable ties.", "Manufac",
		"2.9", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd1117982666.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/saddle white 132001.jpg",
		132, 121,
		"SADDLEMOUNT-4.8-NAT", "Cable Tie saddle mount. To suit ties up to 4.8mm. WHITE  - Pack quantity 100",
		"Nylon 6.6  - Colour: WHITE  To accept 4.8mm maximum width cable ties.", "Manufac",
		"2.9", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd-1103994104.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/IPA 132001.jpg",
		132, 132,
		"AERO-SERVIS-IPA", "Servisol Isopropyl Alcohol (IPA), Aerosol 400ml ",
		"Manufactured by Servisol and supplied in a 400 ml aerosol spray", "Manufac",
		"3.95", "0.3",
		"1", 1,
		"400 ml Can", "0",
		"", "pd1118053035.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-1.0A-SB", "SLOW BLOW glass fuse. 5 x 20mm, 250V 1.0 Amp. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd1118150892.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-2.5A-SB", "SLOW BLOW glass fuse. 5 x 20mm, 250V 2.5 Amp. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd1889640698.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-5.0A-SB", "SLOW BLOW glass fuse. 5 x 20mm, 250V 5.0 Amp. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd-1352525896.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-0.1A-QB", "QUICK BLOW glass fuse. 5 x 20mm, 250V 100mA. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd1039180966.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-0.25A-QB", "QUICK BLOW glass fuse. 5 x 20mm, 250V 250mA. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd-897715388.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-10A-QB", "QUICK BLOW glass fuse. 5 x 20mm, 250V 10 Amp. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd1030265618.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-15A-QB", "QUICK BLOW glass fuse. 5 x 20mm, 250V 15 Amp. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd455016336.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-20A-QB", "QUICK BLOW glass fuse. 5 x 20mm, 250V 20 Amp. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd1683238974.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Fuse 132001.jpg",
		132, 132,
		"FUSE-20-0.5A-QB", "QUICK BLOW glass fuse. 5 x 20mm, 250V 500mA. Pack 10",
		"", "",
		"1.95", "0.02",
		"1", 1,
		"Pieces", "16",
		"", "pd1118151539.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Clip white 132001.jpg",
		80, 63,
		"CLIP-16-BLK", " Self adhesive cable clip. 16mm x 16mm. Maximum cable dia. 5mm  Pack 100 WHITE / BLACK",
		"Nylon 6.6.  -20 deg. + 60 temp range", "",
		"3.19", "0.15",
		"1", 1,
		"Single item", "5",
		"Color;Black@", "pd1118331416.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/Blue Male Bullet 132001.jpg",
		174, 130,
		"CRIMP-MBUL-BLUE", "Insulated crimp male bullet connector.  BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg.", "Manufac",
		"3.45", "0.125",
		"1", 1,
		"Single Pack", "20",
		"", "pd1308941880.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Red Female Bullt 132.jpg",
		132, 99,
		"CRIMP-FMBUL-RED", "Insulated crimp female bullet connector.  RED  insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"3.35", "0.125",
		"1", 1,
		"Single Pack", "20",
		"", "pd1746587430.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Red Bullet male 132.jpg",
		132, 99,
		"CRIMP-MBUL-RED", "Insulated crimp male bullet connector.  RED  insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg.", "Manufac",
		"2.96", "0.125",
		"1", 1,
		"Single Pack", "20",
		"", "pd1351492036.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/RED FI Female 132.jpg",
		132, 99,
		"CRIMP-FI-6.6-RED", "Fully Insulated crimp female push on  terminal 6.6mm. RED insulation. Pack 100",
		"Conductor size 0.5 - 1.5mm / 22 - 16 awg. (Suitable for male tab size of 6.3mm)", "Manufac",
		"2.59", "0.12",
		"1", 1,
		"Single Pack", "22",
		"", "pd1126428774.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/FI Blue female 132001.jpg",
		132, 135,
		"CRIMP-FI-4.8-BLU", "Fully Insulated crimp female push on  terminal 4.8mm.  BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg. (Suitable for makle tab size of 4.8mm)", "Manufac",
		"2.68", "0.15",
		"1", 1,
		"Single Pack", "22",
		"", "pd-1789319932.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/FI Blue female 132001.jpg",
		132, 135,
		"CRIMP-FI-6.6-BLU", "Fully Insulated crimp female push on  terminal 6.6mm.  BLUE insulation. Pack 100",
		"Conductor size 1.5 - 2.5mm / 16 - 14 awg. (Suitable for makle tab size of 6.3mm)", "Manufac",
		"2.72", "0.15",
		"1", 1,
		"Single Pack", "22",
		"", "pd117842642.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/copper tube crimp small.jpg",
		132, 99,
		"Co-Tube Crimp 25-8", "Copper Tube Crimp Terminals. Pack 100. Cable size 25mm sq.  stud size 8mm Pack 50",
		"All copper tube terminals have bell mouth entry for ease of cable insertion", "Manufac",
		"9.98", "0.25",
		"1", 1,
		"Pieces", "14",
		"", "pd1117873858.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/copper tube crimp small.jpg",
		132, 99,
		"Co-Tube Crimp 16-8", "Copper Tube Crimp Terminals. Pack 100. Cable size 16mm sq.  stud size 8mm Pack 100",
		"All copper tube terminals have bell mouth entry for ease of cable insertion", "Manufac",
		"8.46", "0.25",
		"1", 1,
		"Pieces", "14",
		"", "pd-1808960832.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/copper tube crimp small.jpg",
		132, 99,
		"Co-Tube Crimp 10-8", "Copper Tube Crimp Terminals. Pack 100. Cable size 10mm sq.  stud size 8mm",
		"All copper tube terminals have bell mouth entry for ease of cable insertion", "Manufac",
		"6.95", "0.42",
		"1", 1,
		"Single Pack", "14",
		"", "pd1714565561.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/copper tube crimp small.jpg",
		132, 99,
		"Co-Tube Crimp 04-6", "Copper Tube Crimp Terminals. Pack 100. Cable size 4mm sq.  stud size 6mm",
		"All copper tube terminals have bell mouth entry for ease of cable insertion", "Manufac",
		"6.75", "0.2",
		"1", 1,
		"Pieces", "14",
		"", "pd-1814351217.htm",
		"", 1,
		"53", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/banana 132001.jpg",
		132, 132,
		"BANANA-PLUG-BLK", "Banana plugs with soft plastic body. Screw connection.",
		"High quality banana plug. Available in a selection of colours", "Manufac",
		"0.32", "0.01",
		"1", 1,
		"Pieces", "35",
		"Color;Black@", "pd-1176814987.htm",
		"", 1,
		"52", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Clip white 132001.jpg",
		80, 63,
		"CLIP-25-BLK", " Self adhesive cable clip. 25mm x 25mm. Maximum cable dia. 13mm  Pack 100 WHITE or BLACK",
		"Nylon 6.6.  -20 deg. + 60 temp range", "",
		"5.95", "0.2",
		"1", 1,
		"Single item", "5",
		"Color;Black@", "pd1136563590.htm",
		"", 1,
		"51", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/240 volt switch small.jpg",
		150, 174,
		"LAMP-FLU-8W-240", "240 Volts 8 W Fluorescent inspection lamp with switch.  Fitted with 5 M cable with BS 3 pin UK plug",
		"", "Manufac",
		"14.95", "0.5",
		"1", 1,
		"Pieces", "30",
		"", "pd114742614.htm",
		"", 1,
		"47", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Lamp-robust-240.jpg",
		129, 150,
		"LAMP-FLU-240-ROB", "240 Volts 8W Fluorescent inspection lamp. Robust for workshop. Fitted with 5 M cable with BS UK plug",
		"High Quality and extremely impact resistant  with rubber handle and 2 metal hooks.", "Manufac",
		"19.95", "0.5",
		"1", 1,
		"Pieces", "30",
		"", "pd-521383052.htm",
		"", 1,
		"47", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Fuse Assortment.jpg",
		132, 132,
		"FUSE-GLASS-KIT", "Fuse kit. 160 fuses. 0.5A to 10A Fast 20mm storage box",
		"", "Manufac",
		"4.95", "0.05",
		"1", 1,
		"Single item", "16",
		"", "pd1244721612.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/QS_BLUE_132.JPG",
		132, 132,
		"QS_Blue", "Quick Splice  BLUE  Pack of 50",
		"", "Manufac",
		"2.89", "0.1",
		"1", 1,
		"Pieces", "32",
		"", "pd-1679380909.htm",
		"", 1,
		"100", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/QS RED.JPG",
		200, 200,
		"QS_RED", "Quick Splice  RED  Pack of 50",
		"", "Manufac",
		"2.89", "0.1",
		"1", 1,
		"Pieces", "32",
		"", "pd56961209.htm",
		"", 1,
		"100", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Croc Red 132.JPG",
		132, 132,
		"CROC_50MM_RED", "Crocodile Clip 50mm RED insulated handles 15 Amp",
		"", "Manufac",
		"0.49", "0.05",
		"1", 1,
		"Pieces", "15",
		"", "pd-792061363.htm",
		"", 1,
		"90", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Croc Black 132.JPG",
		132, 132,
		"CROC_50MM_BLACK", "Crocodile Clip 50mm BLACK insulated handles 15 Amp",
		"", "Manufac",
		"0.49", "0.05",
		"1", 1,
		"Pieces", "15",
		"", "pd-362209981.htm",
		"", 1,
		"90", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/sheath 99 with insert.jpg",
		250, 99,
		"Polybraid 08 BLK", "Supaflex Braided Polyester Cable Sheathing. 10 Metre roll length. Colour: Grey, Nominal Dia 8mm",
		"Size range 6mm - 14mm. Available in Black or Grey", "Manufac",
		"4.95", "0.15",
		"1", 1,
		"Pieces", "4",
		"Color;Black@", "pd-375159055.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/4.5mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 4.5mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.32", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd1746291474.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/1.5mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 1.5mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.2", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd-1775558937.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/2.5mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 2.5mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.25", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd2117686998.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/3.5mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 3.5mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.3", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd-881548479.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/7.0mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 7.0mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.35", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd1985779992.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/9.0mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 9.0mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.4", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd-2093880053.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/12.0mm.jpg",
		80, 80,
		"1800001", "Heatshrink Tubing - 12.mm Nominal dia. 1.2M length. 2:1 shrink ration",
		"A range of flexible polyolefin sleeving for insulation and ID marking ", "Manufac",
		"1.55", "0",
		"1", 1,
		"Pieces", "17",
		"Color;Black@", "pd-871554422.htm",
		"", 1,
		"102", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};