	// 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/addtotolley.gif" width="137" height="21" 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,
		"", "27",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "23",
		"", "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,
		"", "23",
		"", "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,
		"", "23",
		"", "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,
		"", "23",
		"", "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,
		"", "23",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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,
		"", "20",
		"", "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", "17",
		"", "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", "17",
		"", "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", "17",
		"", "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", "9",
		"", "pd1266600918.htm",
		"", 1,
		"c15", "0",
		 0)
	
		Entry[63] = new Element(
		63, "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", "20",
		"", "pd-939096400.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[64] = new Element(
		64, "",
		0, 0,
		"242", "Insulated crimp lug",
		"&rsquo;RV 5.5-10&rsquo;", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd-908828919.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[65] = new Element(
		65, "",
		0, 0,
		"265", "Insulated crimp lug",
		"SV 2-6S", "PHC Products",
		"60", "0",
		"1", 1,
		"", "20",
		"", "pd78645875.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[66] = new Element(
		66, "",
		0, 0,
		"264", "Insulated crimp lug",
		"SV 2-5L", "PHC Products",
		"60", "0",
		"1", 1,
		"", "20",
		"", "pd-204648451.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[67] = new Element(
		67, "",
		0, 0,
		"263", "Insulated crimp lug",
		"SV 2-5S", "PHC Products",
		"60", "0",
		"1", 1,
		"", "20",
		"", "pd1491199223.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[68] = new Element(
		68, "",
		0, 0,
		"262", "Insulated crimp lug",
		"SV 2-4L", "PHC Products",
		"60", "0",
		"1", 1,
		"", "20",
		"", "pd589092833.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[69] = new Element(
		69, "",
		0, 0,
		"261", "Insulated crimp lug",
		"SV 2-4M", "PHC Products",
		"60", "0",
		"1", 1,
		"", "20",
		"", "pd1210975465.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[70] = new Element(
		70, "",
		0, 0,
		"260", "Insulated crimp lug",
		"SV 2-4S", "PHC Products",
		"60", "0",
		"1", 1,
		"", "20",
		"", "pd-72221949.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[71] = new Element(
		71, "",
		0, 0,
		"277", "Insulated crimp lug",
		"SV 5.5-8", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd422288773.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[72] = new Element(
		72, "",
		0, 0,
		"276", "Insulated crimp lug",
		"SV 5.5-6L", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd-804128449.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[73] = new Element(
		73, "",
		0, 0,
		"275", "Insulated crimp lug",
		"SV 5.5-6S", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd-2084234551.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[74] = new Element(
		74, "",
		0, 0,
		"274", "Insulated crimp lug",
		"SV 5.5-5", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd-666102301.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[75] = new Element(
		75, "",
		0, 0,
		"273", "Insulated crimp lug",
		"SV 5.5-4L", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd-777451027.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[76] = new Element(
		76, "",
		0, 0,
		"272", "Insulated crimp lug",
		"SV 5.5-4S", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd57362791.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[77] = new Element(
		77, "",
		0, 0,
		"271", "Insulated crimp lug",
		"SV 5.5-3.7", "PHC Products",
		"80", "0",
		"1", 1,
		"", "20",
		"", "pd1778418385.htm",
		"", 1,
		"c6", "0",
		 0)
	
		Entry[78] = new Element(
		78, "",
		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,
		"", "24",
		"", "pd-975015919.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[79] = new Element(
		79, "",
		0, 0,
		"192", "&rsquo;Cable tie  12mm x 650mm long&rsquo;",
		"", "PHC Products",
		"0", "0",
		"1", 1,
		"", "24",
		"", "pd-1807191597.htm",
		"", 1,
		"c45", "0",
		 0)
	
		Entry[80] = new Element(
		80, "",
		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,
		"", "23",
		"", "pd1635002249.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[81] = new Element(
		81, "",
		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,
		"", "23",
		"", "pd603096227.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[82] = new Element(
		82, "",
		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,
		"", "23",
		"", "pd-1038579027.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[83] = new Element(
		83, "",
		0, 0,
		"175", "&rsquo;12KV outdoor vacuum circuit breaker&rsquo;",
		"", "",
		"0", "0",
		"1", 1,
		"", "23",
		"", "pd625465243.htm",
		"", 1,
		"c44", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/VS1.jpg",
		120, 110,
		"0", "12KV Indoor vacuum CB",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd1116860134.htm",
		"", 1,
		"c43", "0",
		 1)
	
		Entry[85] = new Element(
		85, "assets/thumb/l3.jpg",
		300, 394,
		"5,1", "Bi Metal Lugs",
		"AL Conductor to CU", "",
		"0", "0",
		"1", 1,
		"Pieces", "22",
		"Conductor Size mm2;1.5@", "pd1939424786.htm",
		"", 1,
		"c8", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/vsm12.jpg",
		150, 155,
		"13", "VSm-12 Indoor AC High Pressure Vacuum Breaker ",
		"Permanent magnet mechanism", "",
		"0", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd1128153349.htm",
		"", 1,
		"c43", "0",
		 1)
	
		Entry[87] = new Element(
		87, "assets/thumb/DSC00041.JPG",
		120, 97,
		"21,6", "Surface Mount MCB Board",
		"", "",
		"26.5", "1",
		"1", 1,
		"Pieces", "0",
		"No Units;24 Unit@Surface or Flush Mount;Surface@", "pd427817720.htm",
		"1::10::10;1::25::20;", 1,
		"c54", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/DSC00041.JPG",
		175, 141,
		"24", "12 Pole Distribution Board Kit",
		"Includes Main switch, 2 pole RCD,5x MCB", "",
		"66.5", "2",
		"1", 1,
		"Pieces", "0",
		"", "pd1467926275.htm",
		"1::5::10;1::10::15;1::25::20;1::50::25;1::100::30;", 1,
		"c54", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/9 to 15Kv Polymeric arrester.jpg",
		62, 80,
		"26", "Polymeric Arrester 9 to 15KV",
		"YH10W 15 47", "",
		"54", "0",
		"1", 1,
		"Pieces", "10",
		"", "pd2092434401.htm",
		"", 1,
		"c16", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/B-WGPO2X.jpg",
		150, 107,
		"379", "Double GPO with extra switch",
		"Universal extra switch", "PHC Products",
		"4.7", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd239039462.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/B-WGPO2.jpg",
		150, 107,
		"368", "Double GPO ",
		"Modern style,rigid, tough,high quality plastic.", "PHC Products",
		"3.5", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd1408050424.htm",
		"1::20::5;1::100::10;1::500::15;1::1000::20;", 1,
		"c2", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/B-WGPO1X.jpg",
		150, 107,
		"358", "Single GPO with extra switch",
		"", "",
		"3.75", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd-1227473862.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/B-WGPO1.jpg",
		150, 107,
		"353", "Single GPO",
		"", "PHC Products",
		"2.5", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd-188442068.htm",
		"", 1,
		"c2", "0",
		 2)
	
		Entry[94] = new Element(
		94, "assets/thumb/B-WSV1.jpg",
		80, 120,
		"17", "Wall Switch  Single Gang",
		"", "",
		"2", "0.1",
		"1", 1,
		"Pieces", "1",
		"", "pd-1674930612.htm",
		"1::10::10;1::100::15;1::500::20;1::1000::25;1::5000::30;", 1,
		"c2", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/B-WSV3.jpg",
		80, 120,
		"16", "Wall Switch Three Gang",
		"240V 10Amp ", "",
		"3.8", "0.13",
		"1", 1,
		"Pieces", "1",
		"", "pd-463992254.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/B-WSV4.jpg",
		80, 120,
		"15", "Wall Switch  Four Gang",
		"", "",
		"4.51", "0.14",
		"1", 1,
		"Pieces", "1",
		"", "pd-164113304.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/B-WSV6.jpg",
		80, 120,
		"14", "Wall Switch  Six Gang",
		"240V ,10Amp ", "",
		"6", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd-942308677.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/IMAG0203.jpg",
		120, 90,
		"342", "plaster bracket",
		"", "PHC Products",
		"1", "0.1",
		"1", 1,
		"Pieces", "2",
		"", "pd1417235278.htm",
		"", 1,
		"c56", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/IMAG0211.jpg",
		200, 150,
		"331", "Skew nail metal bracket vertical",
		"", "PHC Products",
		"1.2", "0.1",
		"1", 1,
		"Pieces", "2",
		"", "pd1020504096.htm",
		"", 10,
		"c56", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/IMAG0195.jpg",
		200, 150,
		"320", "Skew nail metal bracket horizontal",
		"", "PHC Products",
		"1.2", "0.1",
		"1", 1,
		"Pieces", "2",
		"", "pd1105949986.htm",
		"", 10,
		"c56", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/IMAG0236.jpg",
		120, 90,
		"295", "c clip bracket",
		"", "",
		"0.4", "0.005",
		"1", 1,
		"Pieces", "2",
		"", "pd1105948417.htm",
		"1::200::5;1::500::10;1::1000::15;1::2000::20;", 50,
		"c56", "0",
		 0)
	
		Entry[102] = new Element(
		102, "",
		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,
		"", "14",
		"", "pd1081689797.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[103] = new Element(
		103, "",
		0, 0,
		"606", "S9-M-100KVA 22KV/415V DYn11",
		"S9-M-100KVA 22KV/415V DYn11 +-5%", "",
		"0", "0",
		"1", 1,
		"", "14",
		"", "pd231306061.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[104] = new Element(
		104, "",
		0, 0,
		"601", "S9-M 300KVA 11KV/415V DYn11",
		"S9-M 300KVA 11KV/415V +-5%  DYn11", "",
		"0", "0",
		"1", 1,
		"", "14",
		"", "pd-1500195313.htm",
		"", 1,
		"c11", "0",
		 0)
	
		Entry[105] = new Element(
		105, "",
		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", "",
		"185000", "12000",
		"1", 1,
		"Pieces", "13",
		"", "pd-780315805.htm",
		"", 1,
		"c10", "0",
		 0)
	
		Entry[106] = new Element(
		106, "",
		0, 0,
		"592", "66kv/22kv 10/15MVA",
		"transformer 66kv/22kv 10/15MVA ONAN OLTC DYn11", "",
		"417000", "29000",
		"1", 1,
		"Pieces", "13",
		"", "pd-663917715.htm",
		"", 1,
		"c10", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/tx dwg.jpg",
		150, 136,
		"591", "15/20 MVA 66/22kv",
		"TX Oil 15/20MVA 66/22kv DYn11 ONAN Online Tapchanger", "",
		"465000", "48000",
		"1", 1,
		"Pieces", "13",
		"", "pd-1285083417.htm",
		"", 1,
		"c10", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/zn85a.jpg",
		150, 179,
		"141", "ZN85A",
		"40KV Inddoor vacuum circuit breaker", "",
		"0", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd1144673403.htm",
		"", 1,
		"c43", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/cross arm  insulator.jpg",
		150, 80,
		"142", "Composite Cross Arm Insulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd637328161.htm",
		"", 1,
		"c19", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/composite suspension insulator.jpg",
		150, 127,
		"143", "Composite Suspension Insulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-760833481.htm",
		"", 1,
		"c19", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/composite pin insulators.jpg",
		150, 99,
		"144", "Composite Pin Insulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd361629501.htm",
		"", 1,
		"c19", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/composite post insulators.jpg",
		150, 115,
		"145", "Composite Post Insulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1754567603.htm",
		"", 1,
		"c19", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/railway insulator.jpg",
		150, 64,
		"146", "Composite Railway Insulator",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-1886450407.htm",
		"", 1,
		"c19", "0",
		 0)
	
		Entry[114] = new Element(
		114, "",
		0, 0,
		"148", "tapchanger spare parts",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1169079804.htm",
		"", 1,
		"c13", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/CDEC2_Digital_Counter.jpg",
		120, 120,
		"cdec2", "CDEC2 Digital counter",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd-397828707.htm",
		"", 1,
		"c61", "0",
		 1)
	
		Entry[116] = new Element(
		116, "assets/thumb/CDEC1_Super_Miniature_Electronic_Counter.jpg",
		120, 120,
		"cdec1", "CDEC1 Electronic counter",
		"Super Minature Electronic counter", "",
		"0", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd-819490541.htm",
		"", 1,
		"c61", "0",
		 1)
	
		Entry[117] = new Element(
		117, "assets/thumb/JDM15A_Preset_Digital_Display_Counter.jpg",
		120, 120,
		"JDM15A", "JDM15A Preset Digital Display Counter",
		"Preset Digital Display Counter", "",
		"0", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd830720377.htm",
		"", 1,
		"c61", "0",
		 1)
	
		Entry[118] = new Element(
		118, "assets/thumb/XMTA_Number_Indicating_Thermoregulator.jpg",
		120, 120,
		"XMTA", "XMTA Number Indicating Thermoregulator",
		" Number Indicating Thermoregulator", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd1340692452.htm",
		"", 1,
		"c62", "0",
		 1)
	
		Entry[119] = new Element(
		119, "assets/thumb/XMT_Series_Intelligent_Digital_Temperature_Controller.jpg",
		120, 120,
		"xmt-1", "XMT Series Intelligent Digital Temperature Controller",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd1591808178.htm",
		"", 1,
		"c62", "0",
		 1)
	
		Entry[120] = new Element(
		120, "assets/thumb/XMTD_Number_Indicating_Thermoregulator.jpg",
		120, 120,
		"xmd-1", "XMTD Number Indicating Thermoregulator",
		" Number Indicating Thermoregulator", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd-1903235536.htm",
		"", 1,
		"c62", "0",
		 1)
	
		Entry[121] = new Element(
		121, "assets/thumb/TEA_Button_Setting_Temperature_Controller.jpg",
		120, 120,
		"tea", "TEA  Dial Adjustable Temperature Controller",
		"Temperature Controller", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd-1236516898.htm",
		"", 1,
		"c62", "0",
		 1)
	
		Entry[122] = new Element(
		122, "assets/thumb/Pre set_indicating_Thermoregulator.jpg",
		120, 120,
		"CDC-902", "CDC-902 Temperature Controller",
		"Temperature pre set indicating controller", "",
		"0", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd-1914642116.htm",
		"", 1,
		"c62", "0",
		 1)
	
		Entry[123] = new Element(
		123, "assets/thumb/B-WSV5.jpg",
		79, 120,
		"14-1", "Wall Switch  Five Gang",
		"240V ,10Amp ", "",
		"5.2", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd-2016011830.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/B-WSV2.jpg",
		80, 120,
		"14-1-1", "Wall Switch  Two Gang",
		"240V ,10Amp ", "",
		"2.9", "0.15",
		"1", 1,
		"Pieces", "1",
		"", "pd-2088469240.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/21-36KV Polymeric arrester.jpg",
		150, 162,
		"2136", "21-36KV Polymer Surge Arrester",
		"", "",
		"78", "0",
		"1", 1,
		"Pieces", "10",
		"", "pd-253046522.htm",
		"", 1,
		"c16", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/B-WGPO2.jpg",
		150, 107,
		"gpocoffer", "Box of 10 Double GPO",
		"Get10 FREE C clips", "",
		"30", "1",
		"1", 1,
		"Pieces", "1",
		"", "pd1347894077.htm",
		"", 1,
		"c2", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/CDB17_Miniature_Circuit_Breaker__MCB_.jpg",
		120, 120,
		"MCBCDB17-103P,1", "  CDB17 Circuit breaker",
		"&quot;A&quot; grade quality MOCB 6KA Latest design frame", "",
		"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,
		"c41", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/CD7IS.jpg",
		86, 160,
		"4,1", "CDB7IS",
		"", "",
		"3.2", "0.13",
		"1", 1,
		"Pieces", "3",
		"Number of poles;1 Pole@", "pd88639478.htm",
		"", 1,
		"c41", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/delixi 12.jpg",
		119, 120,
		"22,2", "CDL7-63 Residual Current",
		"2Pole", "",
		"15", "0.275",
		"1", 1,
		"Pieces", "4",
		"Number of poles;2pole@", "pd1162425761.htm",
		"1::10::10;1::20::15;1::50::25;1::100::30;", 1,
		"c47", "0",
		 0)
	
		Entry[130] = new Element(
		130, "",
		0, 0,
		"23,1", "CDM1L Earth Leakage Circuit Breaker Moulded Case",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"Current Rating AMPS;100 amp@", "pd-1259062298.htm",
		"", 1,
		"c64", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Molded_Case_Circuit_Breaker.jpg",
		100, 161,
		"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", "5",
		"Current Rating AMPS;200 amp@", "pd1173404212.htm",
		"", 1,
		"c64", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Molded_Case_Circuit_Breaker.jpg",
		100, 161,
		"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", "5",
		"Current Rating AMPS;100 amp@", "pd1662810672.htm",
		"", 1,
		"c64", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Molded_Case_Circuit_Breaker.jpg",
		100, 161,
		"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", "5",
		"Current Rating AMPS;400 amp@", "pd-1031972483.htm",
		"", 1,
		"c64", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/DZ47 Series CircuitBreaker.jpg",
		150, 150,
		"DZ47,1", "DZ47 MCB",
		"A grade quality 4.5KA", "",
		"2", "0.1265",
		"1", 1,
		"Pieces", "3",
		"Current Rating AMPS;10 amp@", "pd-1600434066.htm",
		"", 1,
		"c41", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Molded_Case_Circuit_Breaker.jpg",
		100, 161,
		"CDM125-1,1", "CDM7 125A  Moulded Case Circuit Breaker",
		"125Amp Frame Moulded Case Circuit Breaker 100Amp Trip 25KA", "",
		"44", "1.5",
		"1", 1,
		"Pieces", "5",
		"Current Rating AMPS;100 amp@KA Breaking Capacity;25KA@", "pd-806635813.htm",
		"", 1,
		"c64", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Molded_Case_Circuit_Breaker.jpg",
		100, 161,
		"CDM160,1", "CDM7 160A Moulded Case Circuit breaker",
		"", "",
		"88", "3",
		"1", 1,
		"Pieces", "5",
		"Current Rating AMPS;100 amp@", "pd1245630678.htm",
		"", 1,
		"c64", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/CDRE17 Electronic Overload Relay.jpg",
		121, 121,
		"CDRE17-25,1", "CDRE17-25 Electronic overload relay",
		"Adjustable trip range Amps 0.1-0.12-0.14-0.16-0.18-0.20", "Delixi",
		"15", "0.2",
		"1", 1,
		"Pieces", "33",
		"Rated Set Current;0.2A@", "pd-1940087153.htm",
		"", 1,
		"c72", "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();
			};
		};
