	// 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="72" height="20" 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, "",
		0, 0,
		"199", "KYN44- 12(MDS) type indoor Metal-clad Removable Switchgear is 3.6-12KV three phase 50Hz ",
		"KYN44- 12(MDS) type indoor Metal-clad Removable Switchgear is 3.6-12KV three phase 50Hz ", "",
		"0", "0",
		"1", 1,
		"", "45",
		"", "pd-1998324465.htm",
		"", 1,
		"c40", "0",
		 0)
	
		Entry[1] = new Element(
		1, "",
		0, 0,
		"206", "Insulated crimp lug",
		"&rsquo;RV 1.25-3.7L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1427097669.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[2] = new Element(
		2, "",
		0, 0,
		"215", "Insulated crimp lug",
		"&rsquo;RV 1.25-10&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1730431597.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[3] = new Element(
		3, "",
		0, 0,
		"214", "Insulated crimp lug",
		"&rsquo;RV 1.25-8&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd945206759.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[4] = new Element(
		4, "",
		0, 0,
		"213", "Insulated crimp lug",
		"&rsquo;GCK. GCL Series LV drawn switchgear &rsquo;", "PHC Products",
		"0", "0",
		"1", 1,
		"", "14",
		"", "pd-355866361.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[5] = new Element(
		5, "",
		0, 0,
		"205", "Insulated crimp lug",
		"&rsquo;RV 1.25-3.7M&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd150679045.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[6] = new Element(
		6, "",
		0, 0,
		"207", "Insulated crimp lug",
		"&rsquo;RV 1.25-4S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1559596959.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[7] = new Element(
		7, "",
		0, 0,
		"208", "Insulated crimp lug",
		"&rsquo;RV 1.25-4L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1755155033.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[8] = new Element(
		8, "",
		0, 0,
		"209", "Insulated crimp lug",
		"&rsquo;RV 1.25-5&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-5981137.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[9] = new Element(
		9, "",
		0, 0,
		"210", "Insulated crimp lug",
		"&rsquo;RV 1.25L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1386620427.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[10] = new Element(
		10, "",
		0, 0,
		"211", "Insulated crimp lug",
		"&rsquo;RV 1.25-6S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-263158485.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[11] = new Element(
		11, "",
		0, 0,
		"212", "Insulated crimp lug",
		"&rsquo;RV 1.25-6&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1826931887.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[12] = new Element(
		12, "",
		0, 0,
		"203", "Insulated crimp lug",
		"&rsquo;RV 1.25-3.2&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1553754959.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[13] = new Element(
		13, "",
		0, 0,
		"204", "Insulated crimp lug",
		"&rsquo;RV 1.25-3.75&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1517183467.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[14] = new Element(
		14, "",
		0, 0,
		"216", "Insulated crimp lug",
		"&rsquo;RV 1.25-12&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-374650269.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[15] = new Element(
		15, "",
		0, 0,
		"217", "Insulated crimp lug",
		"&rsquo;RV 2-3&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1275951659.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[16] = new Element(
		16, "",
		0, 0,
		"218", "Insulated crimp lug",
		"&rsquo;RV 2-3.7S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-752053237.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[17] = new Element(
		17, "",
		0, 0,
		"219", "Insulated crimp lug",
		"&rsquo;RV 2-3.7M&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1944754895.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[18] = new Element(
		18, "",
		0, 0,
		"220", "Insulated crimp lug",
		"&rsquo;RV 2-3.7L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1084781255.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[19] = new Element(
		19, "",
		0, 0,
		"221", "Insulated crimp lug",
		"&rsquo;RV 2-4S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1450978739.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[20] = new Element(
		20, "",
		0, 0,
		"222", "Insulated crimp lug",
		"&rsquo;RV 2-4L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd966366531.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[21] = new Element(
		21, "",
		0, 0,
		"223", "Insulated crimp lug",
		"&rsquo;RV 2-5S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1564464855.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[22] = new Element(
		22, "",
		0, 0,
		"225", "Insulated crimp lug",
		"&rsquo;RV 2-5L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd37336959.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[23] = new Element(
		23, "",
		0, 0,
		"226", "Insulated crimp lug",
		"&rsquo;RV 2-6&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-234191419.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[24] = new Element(
		24, "",
		0, 0,
		"227", "Insulated crimp lug",
		"&rsquo;RV 2-8&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1740002683.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[25] = new Element(
		25, "",
		0, 0,
		"228", "Insulated crimp lug",
		"&rsquo;RV 2-10&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-625163231.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[26] = new Element(
		26, "",
		0, 0,
		"229", "Insulated crimp lug",
		"&rsquo;RV 2-12&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd351054647.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[27] = new Element(
		27, "",
		0, 0,
		"230", "Insulated crimp lug",
		"&rsquo;RV 3.5-4&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1013350461.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[28] = new Element(
		28, "",
		0, 0,
		"231", "Insulated crimp lug",
		"&rsquo;RV 3.5-5S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1964657485.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[29] = new Element(
		29, "",
		0, 0,
		"232", "Insulated crimp lug",
		"&rsquo;RV 3.5-5L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1347873255.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[30] = new Element(
		30, "",
		0, 0,
		"233", "Insulated crimp lug",
		"&rsquo;RV 3.5-6&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd2031234543.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[31] = new Element(
		31, "",
		0, 0,
		"234", "Insulated crimp lug",
		"&rsquo;RV 5.5-3.7&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd148087221.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[32] = new Element(
		32, "",
		0, 0,
		"236", "Insulated crimp lug",
		"&rsquo;RV 5.5-4S&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-247033109.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"237", "Insulated crimp lug",
		"&rsquo;RV 5.5-4L&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd473890577.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"238", "Insulated crimp lug",
		"&rsquo;RV 5.5-5&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-1284038745.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"239", "Insulated crimp lug",
		"&rsquo;RV 5.5-6&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd1617545773.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[36] = new Element(
		36, "",
		0, 0,
		"240", "Insulated crimp lug",
		"&rsquo;RV 5.5-8&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-1925984221.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[37] = new Element(
		37, "",
		0, 0,
		"257", "Insulated crimp lug",
		"&rsquo;SV 2-3.75&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd2119053837.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[38] = new Element(
		38, "",
		0, 0,
		"256", "Insulated crimp lug",
		"&rsquo;SV 2-3.75&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1132807033.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[39] = new Element(
		39, "",
		0, 0,
		"255", "Insulated crimp lug",
		"&rsquo;SV 2-3&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1452280049.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[40] = new Element(
		40, "",
		0, 0,
		"254", "Insulated crimp lug",
		"&rsquo;SV 1.25-6L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1026129461.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[41] = new Element(
		41, "",
		0, 0,
		"253", "Insulated crimp lug",
		"&rsquo;SV 1.25-6S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1467297173.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[42] = new Element(
		42, "",
		0, 0,
		"252", "Insulated crimp lug",
		"&rsquo;SV 1.25-5L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1290227407.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[43] = new Element(
		43, "",
		0, 0,
		"251", "Insulated crimp lug",
		"&rsquo;SV 1.25-5S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd593560569.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[44] = new Element(
		44, "",
		0, 0,
		"250", "Insulated crimp lug",
		"&rsquo;SV 1.25-4L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd155903891.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[45] = new Element(
		45, "",
		0, 0,
		"249", "Insulated crimp lug",
		"&rsquo;SV 1.25-4M&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-558059491.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"248", "Insulated crimp lug",
		"&rsquo;SV 1.25-4S&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1449209833.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[47] = new Element(
		47, "",
		0, 0,
		"246", "Insulated crimp lug",
		"&rsquo;SV 1.25-3.7L&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-1344596479.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[48] = new Element(
		48, "",
		0, 0,
		"245", "Insulated crimp lug",
		"&rsquo;SV 1.25-3.75&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1757695067.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[49] = new Element(
		49, "",
		0, 0,
		"244", "Insulated crimp lug",
		"&rsquo;SV-1.25-3.2&rsquo;", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-56829531.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[50] = new Element(
		50, "",
		0, 0,
		"243", "Insulated crimp lug",
		"&rsquo;RV 5.5-12&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-1998299041.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[51] = new Element(
		51, "",
		0, 0,
		"185", "&rsquo;xlpe cable termination kit 3 core 33kv indoor&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd1120526913.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[52] = new Element(
		52, "",
		0, 0,
		"184", "&rsquo;xlpe cable termination kit 1 core 33kv indoor&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-964538725.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[53] = new Element(
		53, "",
		0, 0,
		"183", "&rsquo;xlpe cable termination kit 3 core 33kv outdoor&rsquo;",
		"&rsquo;xlpe cable termination kit 3 core 33kv  outdoor", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-537091611.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"182", "&rsquo;xlpe cable termination kit 1 core 33kv outdoor&rsquo;",
		"xlpe cable termination kit 1 core 33kv outdoor", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd150561609.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[55] = new Element(
		55, "",
		0, 0,
		"181", "&rsquo;xlpe cable termination kit 3 core 11kv outdoor&rsquo;",
		"xlpe cable termination kit 3 core 11kv outdoor", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-1843700513.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[56] = new Element(
		56, "",
		0, 0,
		"268", "Insulated crimp lug",
		"SV 3.5-5", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-1487984267.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"267", "Insulated crimp lug",
		"SV 3.5-4", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd2098945967.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[58] = new Element(
		58, "",
		0, 0,
		"266", "Insulated crimp lug",
		"SV 2-6L", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd232415705.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/ee301m.jpg",
		57, 120,
		"296", "EE 301 Auto voltage regulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd-260975204.htm",
		"", 1,
		"c17", "0",
		 1)
	
		Entry[60] = new Element(
		60, "assets/thumb/ee301t.jpg",
		231, 480,
		"307", "ee 302 auto voltage regulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd-1577736918.htm",
		"", 1,
		"c17", "0",
		 1)
	
		Entry[61] = new Element(
		61, "assets/thumb/ee302.jpg",
		300, 381,
		"313", "Auto voltage regulaor",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd-1974438040.htm",
		"", 1,
		"c17", "0",
		 1)
	
		Entry[62] = new Element(
		62, "assets/thumb/dropout fuse.JPG",
		800, 360,
		"314", "drop out fuse 11kv 22kv",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "10",
		"", "pd1266600918.htm",
		"", 1,
		"c15", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/REP1116W.jpg",
		150, 226,
		"319", "REP1116W ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd571458973.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/REP1209.jpg",
		150, 180,
		"321", "REP1209 ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-327689640.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/REP1397.jpg",
		100, 150,
		"322", "REP1397",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd852666438.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/REP628.jpg",
		150, 189,
		"323", "REP628  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1712709660.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/REP630W.jpg",
		150, 198,
		"324", "REP630W ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd183441586.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/REP624W.jpg",
		150, 208,
		"325", "REP624W ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd946615856.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/REP1103B.jpg",
		150, 190,
		"326", "REP1103B ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd663406558.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/REP1340W.jpg",
		150, 185,
		"327", "REP1340W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1302156996.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/REP2185W.jpg",
		150, 190,
		"328", "REP2185W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd1984766410.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/REP497s.jpg",
		150, 178,
		"329", "REP497S  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1175272184.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/REP633.jpg",
		150, 159,
		"330", "REP633  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1651748234.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/REP632.jpg",
		150, 175,
		"332", "REP632  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd210670996.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/REP631W.jpg",
		150, 160,
		"333", "REP631W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1699133982.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/REP1267.jpg",
		150, 169,
		"334", "REP1267  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd1732306656.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/REP1721W.jpg",
		150, 257,
		"335", "REP1721W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd2139858958.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/REP1835B.jpg",
		150, 206,
		"3336", "REP1835B  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1212594964.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/REP634W.jpg",
		150, 152,
		"337", "REP634W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1175591686.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/REP2871.jpg",
		150, 200,
		"338", "REP2871  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-703071304.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/REP2109W.jpg",
		150, 192,
		"339", "REP2109W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd313075878.htm",
		"", 1,
		"c23", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/REP473.jpg",
		150, 223,
		"340", "REP473  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd-746973372.htm",
		"", 1,
		"c22", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/REP1020.jpg",
		150, 199,
		"341", "REP1020  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd-524819925.htm",
		"", 1,
		"c24", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/REP619.jpg",
		150, 181,
		"343", "REP619  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "29",
		"", "pd535901246.htm",
		"", 1,
		"c25", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/REP621.jpg",
		150, 304,
		"344", "REP621  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "29",
		"", "pd-717984612.htm",
		"", 1,
		"c25", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/REP464.jpg",
		150, 203,
		"345", "REP464  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "29",
		"", "pd-822733782.htm",
		"", 1,
		"c25", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/REP564A.jpg",
		150, 178,
		"346", "REP564A  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd-1415468983.htm",
		"", 1,
		"c26", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/REP431.jpg",
		150, 230,
		"347", "REP431  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd-40393484.htm",
		"", 1,
		"c27", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/REP2322.jpg",
		150, 244,
		"348", "REP2322  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd471491650.htm",
		"", 1,
		"c27", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/REP2864.jpg",
		150, 296,
		"349", "REP2864  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "32",
		"", "pd-932985023.htm",
		"", 1,
		"c28", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/REP636W.jpg",
		150, 251,
		"350", "REP636W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd-31514548.htm",
		"", 1,
		"c29", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/REP1291W.jpg",
		150, 204,
		"351", "REP1291W  ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd-1515671718.htm",
		"", 1,
		"c29", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/9133CE.jpg",
		392, 121,
		"356", "LS 77 OEM Number 910-392-268",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd369737968.htm",
		"", 1,
		"c36", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/9123CE.jpg",
		380, 94,
		"355", "LS 57 OEM Number 910-392-267",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd976704882.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/9113CE.jpg",
		352, 99,
		"354", "LS 47  OEM Number 910-392-266",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-829276508.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/9103CE.jpg",
		203, 116,
		"352", "LS 37 OEM Number 910-392-257",
		"AEG LS type Relacement contact set   3 pole sets", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd1637374214.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/9143CE.jpg",
		150, 66,
		"357", "LS 97 107 OEM Number 910-392-263",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd1143566771.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/9153CE.jpg",
		150, 64,
		"359", "LS 167 177 OEM Number 910-392-264",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd48700185.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/9163CE.jpg",
		150, 61,
		"360", "LS 247 OEM Number 910-392-265",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd2129902319.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/9173CE.jpg",
		150, 92,
		"361", "LS 297 200 OEM Number 910-392-326",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd1193539253.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/9183CE.jpg",
		200, 93,
		"362", "LS 300 330 OEM Number 910-393-326",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd1740828651.htm",
		"", 1,
		"c31", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/9201CA.jpg",
		104, 104,
		"363", "Allen Bradely 500-line  OEM Number 40410-331-51",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-530887513.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/9194CA.jpg",
		73, 32,
		"364", "Allen Bradely 500-line  OEM Number Z21103",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-201474259.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/9211CA.jpg",
		108, 99,
		"365", "Allen Bradely 500-line  OEM Number 40410-331-52",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd354209059.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/9221CA.jpg",
		149, 118,
		"366", "Allen Bradely 500-line  OEM Number 40420-322-51",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1187404791.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/9221CA.jpg",
		149, 118,
		"367", "Allen Bradely 500-line  OEM Number 40430-300-51",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd2084515167.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/9251CA.jpg",
		260, 237,
		"369", "Allen Bradely 500-line  OEM Number 42450-805-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd550365531.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/9241CA.jpg",
		256, 240,
		"370", "Allen Bradely 500-line  OEM Number 4044-300-51",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-623772927.htm",
		"", 1,
		"c33", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/1003CA.jpg",
		252, 81,
		"371", "ALLEN-BRADLEY  Bulletin 646 Starters   1003CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1002346740.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/4003CA.jpg",
		113, 232,
		"372", "ALLEN-BRADLEY  Bulletin 646 4003CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1365814246.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/4004CA.jpg",
		118, 185,
		"373", "ALLEN-BRADLEY  Bulletin 646 4004CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd2086109144.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/1002CA.jpg",
		266, 95,
		"374", "ALLEN-BRADLEY  Bulletin 646 1002CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-215955002.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/4002CA.jpg",
		115, 236,
		"375", "ALLEN-BRADLEY  Bulletin 646 4002CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1766122140.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/4001CA.jpg",
		122, 206,
		"376", "ALLEN-BRADLEY  Bulletin 646 Starters 4001CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-739356110.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/1000CA.jpg",
		280, 107,
		"377", "ALLEN-BRADLEY  Bulletin 646 Starters 1000CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd112462768.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/4000CA.jpg",
		127, 126,
		"378", "ALLEN-BRADLEY  Bulletin 646 Starters 4000CA",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-683894434.htm",
		"", 1,
		"c34", "0",
		 0)
	
		Entry[117] = new Element(
		117, "",
		0, 0,
		"380", "IEC 100 Line Device 100-B300 OEM 40782-801-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd-172447987.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[118] = new Element(
		118, "",
		0, 0,
		"381", "IEC 100 Line Device 100-B250 OEM 40782-800-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd357922819.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[119] = new Element(
		119, "",
		0, 0,
		"382", "IEC 100 Line Device 100-B180  OEM 40781-800-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd970050025.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[120] = new Element(
		120, "",
		0, 0,
		"383", "IEC 100 Line Device 100-B110 OEM 40780-800-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd969885247.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[121] = new Element(
		121, "",
		0, 0,
		"384", "IEC 100 Line Device 100-A75 OEM 40769-801-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd364753541.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[122] = new Element(
		122, "",
		0, 0,
		"385", "IEC 100 Line Device 100-A60 OEM 40769-801-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1299730491.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/9613CA.jpg",
		266, 95,
		"386", "IEC 100 Line Device 100-A38 OEM 40768-801-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd-660456223.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/9623CA.jpg",
		268, 89,
		"387", "IEC 100 Line Device 100-A45 OEM 40768-802-01",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd-1680223753.htm",
		"", 1,
		"c35", "0",
		 0)
	
		Entry[125] = new Element(
		125, "",
		0, 0,
		"388", "Rep321",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd1778069114.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[126] = new Element(
		126, "",
		0, 0,
		"391", "Rep370",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd1752945860.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[127] = new Element(
		127, "",
		0, 0,
		"392", "Rep368w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-697345902.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[128] = new Element(
		128, "",
		0, 0,
		"393", "Rep371",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1169557232.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[129] = new Element(
		129, "",
		0, 0,
		"394", "Rep1025",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-340933186.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[130] = new Element(
		130, "",
		0, 0,
		"395", "Rep375",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-421963236.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[131] = new Element(
		131, "",
		0, 0,
		"396", "Rep376",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd984268202.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[132] = new Element(
		132, "",
		0, 0,
		"397", "Rep683",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1243790360.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[133] = new Element(
		133, "",
		0, 0,
		"398", "Rep323",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-235246506.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[134] = new Element(
		134, "",
		0, 0,
		"399", "Rep379",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-550124940.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[135] = new Element(
		135, "",
		0, 0,
		"400", "Rep324w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-2027176510.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[136] = new Element(
		136, "",
		0, 0,
		"297", "Rep380w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd222011840.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[137] = new Element(
		137, "",
		0, 0,
		"298", "Rep381w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd838098414.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[138] = new Element(
		138, "",
		0, 0,
		"299", "Rep307",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-70488628.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[139] = new Element(
		139, "",
		0, 0,
		"300", "Rep421a",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-769869606.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[140] = new Element(
		140, "",
		0, 0,
		"301", "Rep367",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd1471128.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[141] = new Element(
		141, "",
		0, 0,
		"302", "Rep684",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd1814821510.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[142] = new Element(
		142, "",
		0, 0,
		"303", "Rep366w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd86293540.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[143] = new Element(
		143, "",
		0, 0,
		"304", "Rep383w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd684986098.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[144] = new Element(
		144, "",
		0, 0,
		"305", "Rep302",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-919923088.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[145] = new Element(
		145, "",
		0, 0,
		"306", "Rep377",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-2095209954.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[146] = new Element(
		146, "",
		0, 0,
		"308", "Rep304",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-409858692.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[147] = new Element(
		147, "",
		0, 0,
		"309", "Rep384",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd290725898.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[148] = new Element(
		148, "",
		0, 0,
		"310", "Rep305w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-71111352.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[149] = new Element(
		149, "",
		0, 0,
		"311", "Rep408w",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd347190454.htm",
		"", 1,
		"c37", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/CABLE LUGS 010.jpg",
		200, 120,
		"312", "insulated crimp lug  rv2-6",
		"wire size 2.5mm2 6mm hole", "PHC Products",
		"80", "1.5",
		"1", 1,
		"Pieces", "14",
		"", "pd-939096400.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[151] = new Element(
		151, "",
		0, 0,
		"242", "Insulated crimp lug",
		"&rsquo;RV 5.5-10&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-908828919.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[152] = new Element(
		152, "",
		0, 0,
		"265", "Insulated crimp lug",
		"SV 2-6S", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd78645875.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[153] = new Element(
		153, "",
		0, 0,
		"264", "Insulated crimp lug",
		"SV 2-5L", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-204648451.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[154] = new Element(
		154, "",
		0, 0,
		"263", "Insulated crimp lug",
		"SV 2-5S", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1491199223.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[155] = new Element(
		155, "",
		0, 0,
		"262", "Insulated crimp lug",
		"SV 2-4L", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd589092833.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[156] = new Element(
		156, "",
		0, 0,
		"261", "Insulated crimp lug",
		"SV 2-4M", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd1210975465.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[157] = new Element(
		157, "",
		0, 0,
		"260", "Insulated crimp lug",
		"SV 2-4S", "PHC Products",
		"60", "0",
		"1", 1,
		"", "14",
		"", "pd-72221949.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[158] = new Element(
		158, "",
		0, 0,
		"277", "Insulated crimp lug",
		"SV 5.5-8", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd422288773.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[159] = new Element(
		159, "",
		0, 0,
		"276", "Insulated crimp lug",
		"SV 5.5-6L", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-804128449.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[160] = new Element(
		160, "",
		0, 0,
		"275", "Insulated crimp lug",
		"SV 5.5-6S", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-2084234551.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[161] = new Element(
		161, "",
		0, 0,
		"274", "Insulated crimp lug",
		"SV 5.5-5", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-666102301.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[162] = new Element(
		162, "",
		0, 0,
		"273", "Insulated crimp lug",
		"SV 5.5-4L", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd-777451027.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[163] = new Element(
		163, "",
		0, 0,
		"272", "Insulated crimp lug",
		"SV 5.5-4S", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd57362791.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[164] = new Element(
		164, "",
		0, 0,
		"271", "Insulated crimp lug",
		"SV 5.5-3.7", "PHC Products",
		"80", "0",
		"1", 1,
		"", "14",
		"", "pd1778418385.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/l1.jpg",
		300, 412,
		"139,1", "&rsquo;COPPER LUGS TINNED JGA TYPE 1.5MM2 TO 630MM2&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "15",
		"Conductor Size mm2;1.5@", "pd-1941538139.htm",
		"", 1,
		"c7", "0",
		 0)
	
		Entry[166] = new Element(
		166, "",
		0, 0,
		"138", "&rsquo;COPPER LUGS TINNED JGK TYPE 1.5MM2 TO 630MM2&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "15",
		"", "pd-2132973799.htm",
		"", 1,
		"c7", "0",
		 0)
	
		Entry[167] = new Element(
		167, "",
		0, 0,
		"137", "&rsquo;COPPER LUGS TINNED JGY TYPE 1.5MM TO 630MM&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "15",
		"", "pd-2014653093.htm",
		"", 1,
		"c7", "0",
		 0)
	
		Entry[168] = new Element(
		168, "",
		0, 0,
		"135", "&rsquo;DLX  cable ties  7.2MM  PKT 1000PCS&rsquo;",
		"DLX  cable ties  7.2MM  PKT 100PCS", "PHC Products",
		"0", "0",
		"1", 1,
		"", "18",
		"", "pd-1216937291.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[169] = new Element(
		169, "",
		0, 0,
		"134", "&rsquo;DLX cable ties 2.5MM  PKT 1000PCS&rsquo;",
		"DLX cable ties 2.5MM  PKT 100PCS", "PHC Products",
		"0", "0",
		"1", 1,
		"", "18",
		"", "pd-1056009407.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[170] = new Element(
		170, "",
		0, 0,
		"133", "&rsquo;DLX cable ties 3.6MM  PKT 1000PCS&rsquo;",
		"DLX cable ties 3.6MM  PKT 100PCS", "PHC Products",
		"0", "0",
		"1", 1,
		"", "18",
		"", "pd-330121123.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[171] = new Element(
		171, "",
		0, 0,
		"132", "&rsquo;DLX cable ties 4.8MM PKT 1000PCS&rsquo;",
		"DLX cable ties 4.8MM PKT 100PCS", "PHC Products",
		"0", "0",
		"1", 1,
		"", "18",
		"", "pd-108861713.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[172] = new Element(
		172, "",
		0, 0,
		"131", "&rsquo;DLX cable ties 9.0MM PKT 1000PCS&rsquo;",
		"DLX cable ties 9.0MM PKT 100PCS", "PHC Products",
		"0", "0",
		"1", 1,
		"", "18",
		"", "pd-975015919.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[173] = new Element(
		173, "",
		0, 0,
		"174", "&rsquo;1KV 1 CORE FOR XLPE CABLE&rsquo;",
		"1KV 1 CORE TERMINAL KIT FOR XLPE CABLES", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-848463945.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[174] = new Element(
		174, "",
		0, 0,
		"173", "&rsquo;1KV 2 CORE FOR XLPE CABLE&rsquo;",
		"1KV 2 CORE TERMINAL KIT FOR XLPE CABLES", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-1997135683.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[175] = new Element(
		175, "",
		0, 0,
		"172", "&rsquo;1KV 3 CORE FOR XLPE CABLE&rsquo;",
		"1KV 3 CORE TERMINAL KIT FOR XLPE CABLES", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-823113421.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[176] = new Element(
		176, "",
		0, 0,
		"171", "&rsquo;1KV 4 CORE FOR XLPE CABLE&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-923287911.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[177] = new Element(
		177, "",
		0, 0,
		"170", "&rsquo;1KV 5 CORE FOR XLPE CABLE&rsquo;",
		"1KV 5 CORE TERMINATION KIT FOR XLPE CABLES", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd454232687.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[178] = new Element(
		178, "",
		0, 0,
		"192", "&rsquo;Cable tie  12mm x 650mm long&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "18",
		"", "pd-1807191597.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[179] = new Element(
		179, "",
		0, 0,
		"179", "&rsquo;xlpe cable termination kit 1 core 11kv outdoor&rsquo;",
		"xlpe cable termination kit 1 core 11kv outdoor", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd1635002249.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[180] = new Element(
		180, "",
		0, 0,
		"178", "&rsquo;xlpe cable termination kit 3 core 11kv indoor&rsquo;",
		"xlpe cable termination kit 3 core 11kv indoor", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd603096227.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[181] = new Element(
		181, "",
		0, 0,
		"177", "&rsquo;xlpe cable termination kit 1 core 11kv indoor&rsquo;",
		"xlpe cable termination kit 1 core 11kv indoor", "PHC Products",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd-1038579027.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[182] = new Element(
		182, "",
		0, 0,
		"175", "&rsquo;12KV outdoor vacuum circuit breaker&rsquo;",
		"", "",
		"0", "0",
		"1", 1,
		"", "17",
		"", "pd625465243.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/VS1.jpg",
		120, 110,
		"0", "12KV Indoor vacuum CB",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "8",
		"", "pd1116860134.htm",
		"", 1,
		"c43", "0",
		 1)
	
		Entry[184] = new Element(
		184, "assets/thumb/CDB17_Miniature_Circuit_Breaker__MCB_.jpg",
		120, 120,
		"1,1", "  CDB17 Circuit breaker",
		"", "",
		"3.98", "0.1265",
		"1", 1,
		"Pieces", "3",
		"Number of poles;1 Pole@Current Rating AMPS;10 amp@", "pd-1321386679.htm",
		"1::10::10;1::20::15;1::50::20;1::100::25;", 1,
		"c42", "0",
		 0)
	
		Entry[185] = new Element(
		185, "",
		0, 0,
		"4,1", "CDB5 main switch",
		"", "",
		"4.5", "0.13",
		"1", 1,
		"Pieces", "3",
		"Number of poles;1 Pole@Current Rating AMPS;100 amp@", "pd88639478.htm",
		"", 1,
		"c42", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/l3.jpg",
		300, 394,
		"5,1", "Bi Metal Lugs",
		"AL Conductor to CU", "",
		"0", "0",
		"1", 1,
		"Pieces", "16",
		"Conductor Size mm2;1.5@", "pd1939424786.htm",
		"", 1,
		"c8", "0",
		 0)
	
		Entry[187] = new Element(
		187, "",
		0, 0,
		"6", "Transformer PCB Test",
		"Free Sample bottles Nata Lab Certificate ", "",
		"55", "0.3",
		"2", 1,
		"Pieces", "47",
		"", "pd1418239995.htm",
		"", 1,
		"c51", "0",
		 0)
	
		Entry[188] = new Element(
		188, "",
		0, 0,
		"7", "Transformer Oil Dissolved Gas Analysis",
		"", "",
		"120", "0.3",
		"2", 1,
		"Pieces", "47",
		"", "pd540152481.htm",
		"", 1,
		"c51", "0",
		 0)
	
		Entry[189] = new Element(
		189, "",
		0, 0,
		"8", "Transformer Oil DGA and PCB Test",
		"", "",
		"175", "0.3",
		"2", 1,
		"Pieces", "47",
		"", "pd1665965495.htm",
		"", 1,
		"c51", "0",
		 0)
	
		Entry[190] = new Element(
		190, "",
		0, 0,
		"13", "VSm-12 Indoor AC High Pressure Vacuum Breaker ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "8",
		"", "pd1128153349.htm",
		"", 1,
		"c43", "0",
		 1)
	
		Entry[191] = new Element(
		191, "",
		0, 0,
		"18,1", "CDM7 800  Moulded case circuit breaker",
		"A selection from all of the following options must be made to add item to shopping cart", "",
		"600", "7.5",
		"1", 1,
		"Pieces", "6",
		"Current Rating AMPS;400 amp@", "pd1357445430.htm",
		"", 1,
		"c48", "0",
		 0)
	
		Entry[192] = new Element(
		192, "",
		0, 0,
		"19,1", "CDM7 250  Moulded case circuit breaker",
		"A selection from all of the following options must be made to add item to shopping cart", "",
		"150", "3.4",
		"1", 1,
		"Pieces", "6",
		"Current Rating AMPS;100 amp@", "pd2050390879.htm",
		"", 1,
		"c48", "0",
		 0)
	
		Entry[193] = new Element(
		193, "",
		0, 0,
		"20,1", "CDM7 400  Moulded case circuit breaker",
		"A selection from all of the following options must be made to add item to shopping cart", "",
		"200", "7.5",
		"1", 1,
		"Pieces", "6",
		"Current Rating AMPS;200 amp@", "pd-1565409780.htm",
		"", 1,
		"c48", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/DSC00041.JPG",
		149, 120,
		"21,1", "Surface Mount MCB Board",
		"", "",
		"30", "1",
		"1", 1,
		"Pieces", "7",
		"No Units;12 Unit@Surface or Flush Mount;Flush@", "pd427817720.htm",
		"1::10::10;1::25::20;1::50::25;1::100::30;", 1,
		"c54", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/delixi 12.jpg",
		297, 299,
		"22,1", "CDL7-63 Residual Current",
		"", "",
		"20", "0.4",
		"1", 1,
		"Pieces", "4",
		"Number of poles;1 Pole@", "pd371433834.htm",
		"1::10::10;1::20::15;1::50::25;1::100::30;", 1,
		"c47", "0",
		 0)
	
		Entry[196] = new Element(
		196, "",
		0, 0,
		"23,1", "CDM1L Earth Leakage Circuit Breaker Moulded Case",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "6",
		"Current Rating AMPS;100 amp@", "pd-1955815045.htm",
		"", 1,
		"c48", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/DSC00041.JPG",
		175, 141,
		"24", "loaded board 12 unit",
		"", "",
		"77", "2",
		"1", 1,
		"Pieces", "7",
		"", "pd1467926275.htm",
		"1::5::10;1::10::15;1::25::20;1::50::25;1::100::30;", 1,
		"c54", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/9 to 15Kv Polymeric arrester.jpg",
		62, 80,
		"25", "Polymeric Arrester 9 to 15KV  ",
		"YH5W 9 28", "",
		"68", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd419856187.htm",
		"", 1,
		"c16", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/9 to 15Kv Polymeric arrester.jpg",
		62, 80,
		"26", "Polymeric Arrester 9 to 15KV",
		"YH10W 15 47", "",
		"108", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd2092434401.htm",
		"", 1,
		"c16", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/9.jpg",
		120, 78,
		"379", "Double GPO with extra switch",
		"", "PHC Products",
		"5.2", "0.15",
		"1", 1,
		"Pieces", "0",
		"", "pd239039462.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[201] = new Element(
		201, "assets/thumb/Powerpoint 2a.jpg",
		120, 81,
		"368", "Double GPO",
		"", "PHC Products",
		"4", "0.15",
		"1", 1,
		"Pieces", "0",
		"", "pd1408050424.htm",
		"1::10::10;1::100::15;1::500::25;1::1000::30;", 1,
		"c2", "0",
		 2)
	
		Entry[202] = new Element(
		202, "assets/thumb/7.jpg",
		120, 75,
		"358", "Single GPO with extra switch",
		"", "",
		"4.75", "0.15",
		"1", 1,
		"Pieces", "0",
		"", "pd-1227473862.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[203] = new Element(
		203, "assets/thumb/6.jpg",
		120, 74,
		"353", "Single GPO",
		"Single outlet general purpose outlet", "PHC Products",
		"3.75", "0.15",
		"1", 1,
		"Pieces", "0",
		"", "pd-188442068.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[204] = new Element(
		204, "assets/thumb/Lightswitch 1.jpg",
		84, 120,
		"17", "Wall Switch  Single Gang",
		"Please &quot;click&quot; through to select", "",
		"2.63", "0.1",
		"1", 1,
		"Pieces", "0",
		"", "pd-1674930612.htm",
		"1::10::10;1::100::15;1::500::20;1::1000::25;1::5000::30;", 1,
		"c2", "0",
		 2)
	
		Entry[205] = new Element(
		205, "assets/thumb/Lightswitch 3.jpg",
		80, 120,
		"16", "Wall Switch Three Gang",
		"", "",
		"4.2", "0.13",
		"1", 1,
		"Pieces", "0",
		"", "pd-463992254.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[206] = new Element(
		206, "assets/thumb/Lightswitch 4.jpg",
		86, 120,
		"15", "Wall Switch  Four Gang",
		"Please &quot;click&quot; through to select", "",
		"6.65", "0.14",
		"1", 1,
		"Pieces", "0",
		"", "pd-164113304.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[207] = new Element(
		207, "assets/thumb/Lightswitch 6.jpg",
		84, 120,
		"14", "Wall Switch  Six Gang",
		"Please &quot;click&quot; through to select", "",
		"7.7", "0.15",
		"1", 1,
		"Pieces", "0",
		"", "pd-942308677.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[208] = new Element(
		208, "assets/thumb/IMAG0203.jpg",
		120, 90,
		"342", "plaster bracket",
		"", "PHC Products",
		"1.2", "0.1",
		"1", 1,
		"Pieces", "1",
		"", "pd1417235278.htm",
		"", 1,
		"c56", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/IMAG0211.jpg",
		200, 150,
		"331", "Skew nail metal bracket vertical",
		"", "PHC Products",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "1",
		"", "pd1020504096.htm",
		"", 1,
		"c56", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/IMAG0195.jpg",
		200, 150,
		"320", "Skew nail metal bracket horizontal",
		"", "PHC Products",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "1",
		"", "pd1105949986.htm",
		"", 1,
		"c56", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/IMAG0236.jpg",
		120, 90,
		"295", "c clip bracket",
		"", "",
		"0.56", "0.08",
		"1", 1,
		"Pieces", "1",
		"", "pd1105948417.htm",
		"1::100::10;1::500::15;1::1000::25;1::2000::30;1::3000::35;1::5000::50;1::10000::60;", 1,
		"c56", "0",
		 0)
	
		Entry[212] = new Element(
		212, "",
		0, 0,
		"654", "SC9 Resin Cast Tformer 1600KVA",
		"Hv Volts: 13800/ 4160 Lv Volts: 1000/480 Kva; 1500 Freq: 60Hz Vector group: 4Dyn11yn11", "",
		"0", "0",
		"1", 1,
		"", "38",
		"", "pd1081689797.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[213] = new Element(
		213, "",
		0, 0,
		"608", "S9-M-25KVA 22/415Vą5% DYn11",
		"", "",
		"0", "0",
		"1", 1,
		"", "38",
		"", "pd1923734057.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[214] = new Element(
		214, "",
		0, 0,
		"607", "S9-M-50kva 22kv/415v",
		"S9-M-50kva 22kv/415v DYn11 +-5%", "",
		"0", "0",
		"1", 1,
		"", "38",
		"", "pd784080451.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[215] = new Element(
		215, "",
		0, 0,
		"606", "S9-M-100KVA 22KV/415V DYn11",
		"S9-M-100KVA 22KV/415V DYn11 +-5%", "",
		"0", "0",
		"1", 1,
		"", "38",
		"", "pd231306061.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[216] = new Element(
		216, "",
		0, 0,
		"601", "S9-M 300KVA 11KV/415V DYn11",
		"S9-M 300KVA 11KV/415V +-5%  DYn11", "",
		"0", "0",
		"1", 1,
		"", "38",
		"", "pd-1500195313.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[217] = new Element(
		217, "",
		0, 0,
		"593", "S9 5000KVA 22KV/415V OLTC",
		"Transformer S9 5000KVA 22KV/415V Vector Group: Dyn11 Online Tapchanger Bushing/ Bushing connection Attached weather proof cabinet  415V CDW7 Circuit breaker with Intelligent programable protection and fault recording functions Consumer KWHR meter", "",
		"165000", "0",
		"1", 1,
		"", "37",
		"", "pd-780315805.htm",
		"", 1,
		"c10", "0",
		 0)
	
		Entry[218] = new Element(
		218, "",
		0, 0,
		"592", "66kv/22kv 10/15MVA",
		"transformer 66kv/22kv 10/15MVA ONAN OLTC DYn11", "",
		"377000", "0",
		"1", 1,
		"", "37",
		"", "pd-663917715.htm",
		"", 1,
		"c10", "0",
		 0)
	
		Entry[219] = new Element(
		219, "",
		0, 0,
		"591", "15/20 MVA 66/22kv",
		"TX Oil 15/20MVA 66/22kv DYn11 ONAN Online Tapchanger", "",
		"416000", "48000",
		"1", 1,
		"", "37",
		"", "pd-1285083417.htm",
		"", 1,
		"c10", "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();
			};
		};