	// 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 Application (POA)";
			rString += "</TD></TR>";
			};
//		if(this.displMode==0){
//			rString += "<TR><TD>&nbsp;</TD></TR>"
//				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
//			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/UNIFORM.jpg",
		22, 70,
		"1100-2", "Uniform Locker",
		"Order Code 701818 UN - Size (H,W,D) mm 1780, 460, 460", "",
		"87.25", "0",
		"1", 1,
		"Pieces", "5",
		"Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd1079096658.htm",
		"", 1,
		"11", "0",
		 3)
	
		Entry[1] = new Element(
		1, "assets/thumb/UNIFORM.jpg",
		22, 70,
		"1102-2", "Janitors Locker",
		"Order Code 701818 JAN -  Size (H,W,D) mm 1780, 460, 460", "",
		"87.25", "0",
		"1", 1,
		"Pieces", "5",
		"Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd982871678.htm",
		"", 1,
		"11", "0",
		 3)
	
		Entry[2] = new Element(
		2, "assets/thumb/CDGO.jpg",
		42, 71,
		"1104-2", "Clean &amp; Dirty Locker",
		"Order Code 701818 C/D - Size (H,W,D) mm 1780, 460, 460", "",
		"77.38", "0",
		"1", 1,
		"Pieces", "6",
		"Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd1743024746.htm",
		"", 1,
		"12", "0",
		 3)
	
		Entry[3] = new Element(
		3, "",
		0, 0,
		"2136-1", "Seats and Stands",
		"To suit locker 701212", "",
		"61.7", "0",
		"1", 1,
		"Pieces", "21",
		"Nests;1 - Single@", "pd71203615.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[4] = new Element(
		4, "",
		0, 0,
		"2139-1", "Seats and Stands",
		"To suit locker 701215", "",
		"61.7", "0",
		"1", 1,
		"Pieces", "21",
		"Nests;1 - Single@", "pd-671932992.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[5] = new Element(
		5, "",
		0, 0,
		"2142-1", "Seats and Stands",
		"To suit locker 701218", "",
		"61.7", "0",
		"1", 1,
		"Pieces", "21",
		"Nests;1 - Single@", "pd650256605.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[6] = new Element(
		6, "",
		0, 0,
		"2145-1", "Seats and Stands",
		"To suit locker 701515", "",
		"73.6", "0",
		"1", 1,
		"Pieces", "21",
		"Nests;1 - Single@", "pd1520916102.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[7] = new Element(
		7, "",
		0, 0,
		"2148-1", "Seats and Stands",
		"To suit locker 701518", "",
		"73.6", "0",
		"1", 1,
		"Pieces", "21",
		"Nests;1 - Single@", "pd882715378.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[8] = new Element(
		8, "",
		0, 0,
		"2150-1", "Seats and Stands",
		"To suit locker 701818", "",
		"76.46", "0",
		"1", 1,
		"Pieces", "21",
		"Nests;1 - Single@", "pd-896500194.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[9] = new Element(
		9, "assets/thumb/Picture 007.jpg",
		72, 48,
		"1153-1", "Stand Alone Bench Seat",
		"Size (H,D,Length) mm 405, 305, 915", "",
		"86.92", "0",
		"1", 1,
		"Pieces", "21",
		"Stand Colour;Black@", "pd1244531139.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[10] = new Element(
		10, "assets/thumb/Picture 006.jpg",
		72, 48,
		"1154-1", "Stand Alone Bench Seat",
		"Size (H,D,Length) mm 405, 305, 1220", "",
		"93.28", "0",
		"1", 1,
		"Pieces", "21",
		"Stand Colour;Black@", "pd-1490308695.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[11] = new Element(
		11, "assets/thumb/Picture 007.jpg",
		72, 48,
		"1155-1", "Stand Alone Bench Seat",
		"Size (H,D,Length) mm 405, 305, 1525", "",
		"100.7", "0",
		"1", 1,
		"Pieces", "21",
		"Stand Colour;Black@", "pd-1138592769.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[12] = new Element(
		12, "assets/thumb/GARMENTDISPENSER 5BLUE DOOR.jpg",
		19, 70,
		"1160-2", "5 Compartment Garment Dispenser",
		"Order Code GD5, Size (H,W,D) mm 1780, 380, 460", "",
		"122.34", "0",
		"1", 1,
		"Pieces", "9",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-505190366.htm",
		"", 1,
		"15", "0",
		 3)
	
		Entry[13] = new Element(
		13, "assets/thumb/GARMENTDISPENSER10REDDOOROP.jpg",
		29, 76,
		"1161-2", "10 Compartment Garment Dispenser",
		"Order Code GD10, Size (H,W,D) mm 1780, 380, 460", "",
		"153.38", "0",
		"1", 1,
		"Pieces", "9",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-839331040.htm",
		"", 1,
		"15", "0",
		 3)
	
		Entry[14] = new Element(
		14, "assets/thumb/GARMENTDISPENSER15YELLOWDOO.jpg",
		19, 73,
		"1162-2", "15 Compartment Garment Dispenser",
		"Order Code GD15, Size (H,W,D) mm 1780, 380, 460", "",
		"184.61", "0",
		"1", 1,
		"Pieces", "9",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-529633714.htm",
		"", 1,
		"15", "0",
		 3)
	
		Entry[15] = new Element(
		15, "assets/thumb/BULK COLLECTOR SH.jpg",
		19, 74,
		"1163-2", "Bulk Collector",
		"Order Code BULK, Size (H,W,D) mm 1780, 380, 460", "",
		"102.92", "0",
		"1", 1,
		"Pieces", "10",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-1921244995.htm",
		"", 1,
		"16", "0",
		 3)
	
		Entry[16] = new Element(
		16, "assets/thumb/TWIN.jpg",
		21, 70,
		"1164-2", "Twin Locker",
		"Order Code TW701818, Size (H,W,D) mm 1780, 460, 460", "",
		"89.94", "0",
		"1", 1,
		"Pieces", "11",
		"Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd108525286.htm",
		"", 1,
		"17", "0",
		 3)
	
		Entry[17] = new Element(
		17, "assets/thumb/TWO PERSON.jpg",
		21, 70,
		"1166-2", "2 Person Locker",
		"Order Code 2P701818, Size (H,W,D) mm 1780, 460, 460", "",
		"96.6", "0",
		"1", 1,
		"Pieces", "12",
		"Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd1143486315.htm",
		"", 1,
		"18", "0",
		 3)
	
		Entry[18] = new Element(
		18, "assets/thumb/SLOPING & FLAT TOP GRAD SH.jpg",
		82, 82,
		"1200", "Integral Sloping Tops",
		"Add to the price of lockers (per locker)", "",
		"6.75", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1080898534.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[19] = new Element(
		19, "assets/thumb/LOCK STD SH.jpg",
		80, 85,
		"1201", "Replacement Lock",
		"(per lock)", "",
		"4.44", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd702682244.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[20] = new Element(
		20, "",
		0, 0,
		"1202", "Replacement Hasp &amp; Staple Fitting (This option is free of charge on new lockers.)",
		"(per lock)", "",
		"5.39", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1442406830.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[21] = new Element(
		21, "",
		0, 0,
		"1203", "Additional Key",
		"", "",
		"1.98", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1288811728.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[22] = new Element(
		22, "",
		0, 0,
		"1204", "Master Key",
		"", "",
		"4.44", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-139270274.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[23] = new Element(
		23, "",
		0, 0,
		"1205", "Card Holder",
		"", "",
		"1.26", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-277720612.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[24] = new Element(
		24, "",
		0, 0,
		"1206", "Numbered Key Fobs",
		"", "",
		"1.98", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd882080618.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[25] = new Element(
		25, "assets/thumb/LOCK RADIAL SH.jpg",
		80, 91,
		"1207", "Radial Pin Locks",
		"", "",
		"10.09", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-973916248.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[26] = new Element(
		26, "assets/thumb/LOCK COIN RETURN BACK SH.jpg",
		74, 92,
		"1208", "Coin/Token Return Locks",
		"(per lock)", "",
		"39.9", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1072134634.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[27] = new Element(
		27, "",
		0, 0,
		"1209", "Coin/Token Retain Locks",
		"(per lock)", "",
		"62.05", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd342913588.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[28] = new Element(
		28, "",
		0, 0,
		"1210", "Tokens for Coin/Token Locks",
		"(each)", "",
		"0.96", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-429067390.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[29] = new Element(
		29, "",
		0, 0,
		"1211", "Master Key for Coin Return",
		"", "",
		"11.23", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd759090560.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[30] = new Element(
		30, "assets/thumb/combinationSM.jpg",
		75, 60,
		"1212", "Mastered Combination Lock",
		"", "",
		"20.62", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd933392302.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[31] = new Element(
		31, "assets/thumb/LOCK  3 POINT SH.jpg",
		80, 80,
		"1213", "3 Point Locking",
		"Single", "",
		"7.2", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-872950388.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[32] = new Element(
		32, "assets/thumb/LOCK  3 POINT SH.jpg",
		80, 80,
		"1214", "3 Point Locking",
		"2 Door", "",
		"14.41", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd161310362.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"1215", "Plastic Number Plate",
		"", "",
		"1.34", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1723476392.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"1216", "Interior Hanging Rail",
		"", "",
		"1.66", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1354826822.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"1217", "Captive Coat Hooks",
		"", "",
		"1.14", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-479208476.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[36] = new Element(
		36, "",
		0, 0,
		"1218", "Captive Coat Hangers",
		"", "",
		"1.92", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1151650638.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[37] = new Element(
		37, "",
		0, 0,
		"1219", "Nesting Nuts and Bolts",
		"(per 100)", "",
		"6.47", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1470476848.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[38] = new Element(
		38, "assets/thumb/Standard Cupboard A.jpg",
		71, 72,
		"1300-1", "Standard Cupboard - Size (H,W,D) mm 1780, 915, 460",
		"Order Code STD703618", "",
		"160.64", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd-1384457277.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[39] = new Element(
		39, "assets/thumb/Wardrobe Cupboard B.jpg",
		71, 72,
		"1301-6", "Wardrobe/Cupboard - Size (H,W,D) mm 1780, 915, 460",
		"Order Code WAR703618", "",
		"152.99", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd1108484734.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[40] = new Element(
		40, "",
		0, 0,
		"1302-4", "Open Front Cupboard - Size (H,W,D) mm 1780, 915, 460",
		"Order Code OP703618", "",
		"109.98", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Smoke White@Door Colour;Red@Type;Commercial@", "pd-100930536.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[41] = new Element(
		41, "assets/thumb/Cupboard Wardrobe C.jpg",
		45, 72,
		"1303-12", "Cupboard/Wardrobe - Size (H,W,D) mm 1780, 915, 460",
		"Order Code CW703618", "",
		"180.07", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd1898169954.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[42] = new Element(
		42, "assets/thumb/8Compartment Cupboard D.jpg",
		71, 72,
		"1304-7", "8 Compartment Cupboard - Size (H,W,D) mm 1780, 915, 460",
		"Order Code 8COM703618", "",
		"197.97", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd-1384644179.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[43] = new Element(
		43, "assets/thumb/12Compartment Cupboard E.jpg",
		70, 72,
		"1305-1", "12 Compartment Cupboard - Size (H,W,D) mm 1780, 915, 460",
		"Order Code 12COM703618", "",
		"230.43", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd1479539727.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[44] = new Element(
		44, "assets/thumb/Slim Standard Cupboard F.jpg",
		43, 72,
		"1306-1", "Slim Standard Cupboard - Size (H,W,D) mm 1780, 610, 460",
		"Order Code SLC702418", "",
		"123.32", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd1344216801.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[45] = new Element(
		45, "assets/thumb/Slim Wardrobe Cupboard G.jpg",
		43, 72,
		"1307-1", "Slim Wardrobe Cupboard - Size (H,W,D) mm 1780, 610, 460",
		"Order Code SLW702418", "",
		"117.51", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd-2114426205.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"1308-14", "Lateral Cupboard - Size (H,W,D) mm 1780, 915, 460",
		"Order Code LAT703618", "",
		"210.5", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Coffee@Door Colour;Blue@Type;Commercial@", "pd1284226005.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[47] = new Element(
		47, "assets/thumb/Plastic Roller Shutter I.jpg",
		61, 72,
		"1313-1", "Plastic Roller Shutter Cupboard - Size (H,W,D) mm 2209, 915, 460",
		"Order Code PROL873618", "",
		"307.94", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Smoke White@Door Colour;Smoke White@Type;Commercial@", "pd-373810190.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[48] = new Element(
		48, "assets/thumb/Plastic Roller Shutter I.jpg",
		61, 72,
		"1314-1", "Plastic Roller Shutter Cupboard - Size (H,W,D) mm 1905, 915, 460",
		"Order Code PROL753618", "",
		"283.66", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Smoke White@Type;Commercial@", "pd-2003335468.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[49] = new Element(
		49, "assets/thumb/Low Cupboard J.jpg",
		72, 48,
		"1310-1", "Low Cupboard - Size (H,W,D) mm 1015, 915, 460",
		"Order Code LC403618", "",
		"122.53", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd1517770726.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[50] = new Element(
		50, "assets/thumb/Office Tool Cupboard K.jpg",
		38, 72,
		"1315-1", "Office/Tool Cupboard - Size (H,W,D) mm 890, 460, 460",
		"Order Code PTC351818", "",
		"61.97", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd-946131904.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[51] = new Element(
		51, "assets/thumb/Dished Top L (rubber mat extra).jpg",
		72, 53,
		"1316-1", "Office/Tool Cupboard - Dished Top - Size (H,W,D) mm 890, 460, 460",
		"Order Code DTC351818", "",
		"61.97", "0",
		"1", 1,
		"Pieces", "18",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Type;Commercial@", "pd287721961.htm",
		"", 1,
		"3Cupboards", "0",
		 3)
	
		Entry[52] = new Element(
		52, "assets/thumb/Rubber Mat M.jpg",
		72, 48,
		"1401", "Rubber Mat to suit Office/Tool Cupboard - Dished Top",
		"Order Code RUB1818", "",
		"14.79", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd1353763691.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[53] = new Element(
		53, "assets/thumb/Additional Shelves N.jpg",
		72, 52,
		"1400-1", "Additional Shelves",
		"Order Code CS1218", "",
		"4.48", "0",
		"1", 1,
		"Pieces", "20",
		"Type;Commercial@Shelf Size;305x460@", "pd1040575377.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"1404", "Pull Out Lateral Rail",
		"Order Code CUP/PO/LAT", "",
		"83.43", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd1791016064.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[55] = new Element(
		55, "",
		0, 0,
		"1405", "Fixed Lateral Rail",
		"Order Code CUP/FX/LAT", "",
		"16.55", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-1244531026.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[56] = new Element(
		56, "",
		0, 0,
		"1406", "Part Height Divider",
		"Order Code CUP/STD/DIV", "",
		"9.39", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-168905588.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"1402-1", "Hanging Rail Shelf",
		"Order Code HG/SHEL", "",
		"13.71", "0",
		"1", 1,
		"Pieces", "20",
		"Type;Commercial@", "pd789274010.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[58] = new Element(
		58, "",
		0, 0,
		"1403", "Pull Out Shelf",
		"Order Code CUP/PO/SHEL", "",
		"80.15", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-1850447034.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[59] = new Element(
		59, "",
		0, 0,
		"1500", "Replacement Cupboard Lock",
		"Order Code RCUPLOK", "",
		"13.55", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-1769272398.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[60] = new Element(
		60, "",
		0, 0,
		"1501", "Extra Key",
		"Order Code EXKEY", "",
		"2.08", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-1378524880.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[61] = new Element(
		61, "",
		0, 0,
		"1502", "Master Key",
		"Order Code MASKEY", "",
		"4.67", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd-1050416418.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[62] = new Element(
		62, "",
		0, 0,
		"1503", "Additional Clips (4 pack) CSC",
		"Order Code ADDCLP", "",
		"0.99", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd520913980.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[63] = new Element(
		63, "assets/thumb/Security cupboard Fitment X.jpg",
		48, 72,
		"1399", "Security Cupboard Fitment",
		"Order Code SECCPFT", "",
		"25.25", "0",
		"1", 1,
		"Pieces", "20",
		"", "pd907441354.htm",
		"", 1,
		"CupAcc", "0",
		 3)
	
		Entry[64] = new Element(
		64, "assets/thumb/Acid Alkaline Cabinets - Contact us for details.jpg",
		72, 72,
		"1600", "Acid Alkaline Cabinets",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd1382063893.htm",
		"", 1,
		"ACUP", "0",
		 3)
	
		Entry[65] = new Element(
		65, "assets/thumb/Hazardous Cabinets - Contact us for details.jpg",
		72, 69,
		"1601", "Hazardous Cabinets",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd1108650693.htm",
		"", 1,
		"ACUP", "0",
		 3)
	
		Entry[66] = new Element(
		66, "assets/thumb/Medical Cabinets - Contact us for details.jpg",
		72, 66,
		"1602", "Medical Cabinets",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd62980731.htm",
		"", 1,
		"ACUP", "0",
		 3)
	
		Entry[67] = new Element(
		67, "assets/thumb/PPE Cabinets - Contact us for details.jpg",
		72, 69,
		"1603", "PPE Cabinets",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-1143260895.htm",
		"", 1,
		"ACUP", "0",
		 3)
	
		Entry[68] = new Element(
		68, "assets/thumb/Toxic Cabinets - Contact us for details.jpg",
		72, 66,
		"1604", "Toxic Cabinets",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-10213321.htm",
		"", 1,
		"ACUP", "0",
		 3)
	
		Entry[69] = new Element(
		69, "assets/thumb/Picture 005.jpg",
		48, 72,
		"1156-1", "Stand Alone Bench with Overhead Coat Rail",
		"Size (H,D,Length) mm 405, 305, 900", "",
		"158.74", "0",
		"1", 1,
		"Pieces", "21",
		"Single/Double;1-Single@Height;1200mm high@Stand Colour;Black@", "pd1113506098.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[70] = new Element(
		70, "assets/thumb/Picture 003.jpg",
		48, 72,
		"1157-1", "Stand Alone Bench with Overhead Coat Rail",
		"Size (H,D,Length) mm 405, 305, 1220", "",
		"177.89", "0",
		"1", 1,
		"Pieces", "21",
		"Single/Double;1-Single@Height;1200mm high@Stand Colour;Black@", "pd-2034626974.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[71] = new Element(
		71, "assets/thumb/Picture 003.jpg",
		48, 72,
		"1158-1", "Stand Alone Bench with Overhead Coat Rail",
		"Size (H,D,Length) mm 405, 305, 1525", "",
		"197.05", "0",
		"1", 1,
		"Pieces", "21",
		"Single/Double;1-Single@Height;1200mm high@Stand Colour;Black@", "pd-487716808.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[72] = new Element(
		72, "assets/thumb/Picture 001.jpg",
		48, 72,
		"1159-1", "Stand Alone Bench with Overhead Shelf &amp; Hanging Rail",
		"Size (H,D,Length) mm 405, 305, 900", "",
		"189.69", "0",
		"1", 1,
		"Pieces", "21",
		"Single/Double;1-Single@Height;1200mm high@Stand Colour;Black@", "pd255910431.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[73] = new Element(
		73, "assets/thumb/Picture 001.jpg",
		48, 72,
		"1180-1", "Stand Alone Bench with Overhead Shelf &amp; Hanging Rail",
		"Size (H,D,Length) mm 405, 305, 1220", "",
		"208.77", "0",
		"1", 1,
		"Pieces", "21",
		"Single/Double;1-Single@Height;1200mm high@Stand Colour;Black@", "pd1608534487.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[74] = new Element(
		74, "assets/thumb/Picture 001.jpg",
		48, 72,
		"1181-1", "Stand Alone Bench with Overhead Shelf &amp; Hanging Rail",
		"Size (H,D,Length) mm 405, 305, 1525", "",
		"237.44", "0",
		"1", 1,
		"Pieces", "21",
		"Single/Double;1-Single@Height;1200mm high@Stand Colour;Black@", "pd-1499689031.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[75] = new Element(
		75, "assets/thumb/red shirt.jpg",
		51, 72,
		"1182", "Wall Mounted Coat Rail",
		"900mm long", "",
		"41.37", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd1987874699.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[76] = new Element(
		76, "assets/thumb/red shirt.jpg",
		51, 72,
		"1183", "Wall Mounted Coat Rail",
		"1220mm long", "",
		"43.74", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd-179624377.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[77] = new Element(
		77, "assets/thumb/red shirt.jpg",
		51, 72,
		"1184", "Wall Mounted Coat Rail",
		"1525mm long", "",
		"47.28", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd751022541.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[78] = new Element(
		78, "assets/thumb/blue shirt.jpg",
		57, 72,
		"1185", "Wall Mounted Benches, Shelves and Hanging Rails - POA",
		"", "",
		"47.28", "0",
		"1", 1,
		"Pieces", "21",
		"", "#DROP#",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[79] = new Element(
		79, "",
		0, 0,
		"2120-1", "Stands",
		"To Suit Locker ref: 701212", "",
		"18.27", "0",
		"1", 1,
		"Pieces", "22",
		"Nests;1 - Single@", "pd-1498045797.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[80] = new Element(
		80, "",
		0, 0,
		"2123-1", "Stands",
		"To Suit Locker ref: 701215", "",
		"18.27", "0",
		"1", 1,
		"Pieces", "22",
		"Nests;1 - Single@", "pd-453159359.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[81] = new Element(
		81, "",
		0, 0,
		"2126-1", "Stands",
		"To Suit Locker ref: 701218", "",
		"18.27", "0",
		"1", 1,
		"Pieces", "22",
		"Nests;1 - Single@", "pd1103366743.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[82] = new Element(
		82, "",
		0, 0,
		"2129-1", "Stands",
		"To Suit Locker ref: 701515", "",
		"22.87", "0",
		"1", 1,
		"Pieces", "22",
		"Nests;1 - Single@", "pd-2142931875.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[83] = new Element(
		83, "",
		0, 0,
		"2132-1", "Stands",
		"To Suit Locker ref: 701518", "",
		"22.87", "0",
		"1", 1,
		"Pieces", "22",
		"Nests;1 - Single@", "pd30033363.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[84] = new Element(
		84, "",
		0, 0,
		"2134-1", "Stands",
		"To Suit Locker ref: 701818", "",
		"27.02", "0",
		"1", 1,
		"Pieces", "22",
		"Nests;1 - Single@", "pd-1260352455.htm",
		"", 1,
		"5Access", "0",
		 3)
	
		Entry[85] = new Element(
		85, "assets/thumb/DOOR PERFORATED  SH.jpg",
		30, 68,
		"1220", "Perforated Doors",
		"POA", "",
		"0", "0",
		"1", 1,
		"Pieces", "16",
		"", "pd-1143954466.htm",
		"", 1,
		"Doors", "0",
		 3)
	
		Entry[86] = new Element(
		86, "assets/thumb/DOOR PERSPEX SH.jpg",
		33, 71,
		"1221", "Clear Polycarbonate Doors",
		"POA", "",
		"0", "0",
		"1", 1,
		"Pieces", "15",
		"", "pd1208739132.htm",
		"", 1,
		"Clear Poly", "0",
		 3)
	
		Entry[87] = new Element(
		87, "",
		0, 0,
		"2200-3", "Underbench Shoe Rack",
		"", "",
		"72.1", "0",
		"1", 1,
		"Pieces", "21",
		"Compartments;Open@", "pd133589379.htm",
		"", 1,
		"4Bench", "0",
		 3)
	
		Entry[88] = new Element(
		88, "assets/thumb/1RC.jpg",
		23, 70,
		"s1001-16", "Single Compartment Locker - Height 1780mm",
		"Order Code 701212", "",
		"45.55", "0",
		"1", 1,
		"Pieces", "0",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-565746892.htm",
		"", 1,
		"1-1Lockers", "0",
		 3)
	
		Entry[89] = new Element(
		89, "assets/thumb/2 SILV BLUE LOCKERS.jpg",
		15, 70,
		"s1020-16", "Two Compartment Locker - Height 1780mm",
		"Order Code 701212/2", "",
		"59.6", "0",
		"1", 1,
		"Pieces", "0",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd1124886192.htm",
		"", 1,
		"1-1Lockers", "0",
		 3)
	
		Entry[90] = new Element(
		90, "assets/thumb/YELLOWDOOR.jpg",
		16, 70,
		"s1040-16", "Three Compartment Locker - Height 1780mm",
		"Order Code 701212/3", "",
		"64.66", "0",
		"1", 1,
		"Pieces", "0",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-191984472.htm",
		"", 1,
		"1-1Lockers", "0",
		 3)
	
		Entry[91] = new Element(
		91, "assets/thumb/4BC.jpg",
		24, 69,
		"s1050-16", "Four Compartment Locker - Height 1780mm",
		"Order Code 701212/4", "",
		"69.14", "0",
		"1", 1,
		"Pieces", "0",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-759496351.htm",
		"", 1,
		"1-1Lockers", "0",
		 3)
	
		Entry[92] = new Element(
		92, "assets/thumb/5YC.jpg",
		25, 70,
		"s1070-16", "Five Compartment Locker - Height 1780mm",
		"Order Code 701212/5", "",
		"74.03", "0",
		"1", 1,
		"Pieces", "0",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd-309500935.htm",
		"", 1,
		"1-1Lockers", "0",
		 3)
	
		Entry[93] = new Element(
		93, "assets/thumb/6GC.jpg",
		24, 71,
		"s1080-16", "Six Compartment Locker - Height 1780mm",
		"Order Code 701212/6", "",
		"85.25", "0",
		"1", 1,
		"Pieces", "0",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@Sloping Top;None@", "pd1239262887.htm",
		"", 1,
		"1-1Lockers", "0",
		 3)
	
		Entry[94] = new Element(
		94, "assets/thumb/LOW LOCKERS FLAT.jpg",
		41, 70,
		"s1106-8", "Low Locker Single Tier - Height 1220mm",
		"Order Code 481212", "",
		"41.17", "0",
		"1", 1,
		"Pieces", "7",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@", "pd-789397484.htm",
		"", 1,
		"13", "0",
		 3)
	
		Entry[95] = new Element(
		95, "assets/thumb/LOW LOCKERS FLAT.jpg",
		41, 70,
		"s1112-8", "Low Locker Two Tier - Height 1220mm",
		"Order Code 481212/2", "",
		"55.22", "0",
		"1", 1,
		"Pieces", "8",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Silver-Grey@Door Colour;Blue@", "pd1203730266.htm",
		"", 1,
		"14", "0",
		 3)
	
		Entry[96] = new Element(
		96, "assets/thumb/QUARTO.jpg",
		50, 70,
		"s1168-1", "Quarto Locker",
		"Order Code 191212, Height 480mm", "",
		"26.7", "0",
		"1", 1,
		"Pieces", "13",
		"Width and Depth;305x305mm@Carcass Colour;Silver-Grey@Door Colour;Blue@", "pd-1579127856.htm",
		"", 1,
		"19", "0",
		 3)
	
		Entry[97] = new Element(
		97, "assets/thumb/MULTICUBE.jpg",
		78, 70,
		"s1170-1", "Cube Locker",
		"Order Code 121212", "",
		"24.52", "0",
		"1", 1,
		"Pieces", "14",
		"Carcass Colour;Silver-Grey@Door Colour;Blue@Height Width Depth;305x305x305mm@", "pd-1562716012.htm",
		"", 1,
		"20", "0",
		 3)
	
		Entry[98] = new Element(
		98, "assets/thumb/CycleShelterPaintedSM.jpg",
		234, 155,
		"41-219 CPI-2", "Cycle Shelter 1.9m Deep (Powder Coated Steel Sides and Back)",
		"Order Code 219 CPI", "",
		"1306.45", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Bike Capacity;Six Bikes@", "pd1134384025.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[99] = new Element(
		99, "assets/thumb/CycleShelterGalvanised6ExtSm.jpg",
		150, 108,
		"42-219 CPE-2", "Cycle Shelter 1.9m Deep (Powder Coated Steel Sides and Back) Extension",
		"Order Code 219 CPE", "",
		"1156.98", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Bike Capacity;Six Bikes@", "pd-756358271.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[100] = new Element(
		100, "assets/thumb/CycleShelterGalvanised6ExtSm.jpg",
		150, 108,
		"32-219 OGE-2", "Cycle Shelter 1.9m Deep (Galvanised Sides and Open Back) Extension",
		"Order Code 219 OGE", "",
		"632.36", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Bike Capacity;Six Bikes@", "pd1613103481.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[101] = new Element(
		101, "assets/thumb/CycleShelterGalvanisedOpenBack6SM.jpg",
		200, 137,
		"31-219 OGI-1", "Cycle Shelter 1.9m Deep (Galvanised Sides and Open Back)",
		"Order Code 219 OGI", "",
		"1110.79", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Green@Capacity;Six Man Capacity - 2450wide x 1900deep@", "pd1264740530.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[102] = new Element(
		102, "assets/thumb/ContempCycleSteelSmall.jpg",
		142, 132,
		"11-321 PRSI-1", "Contemporary Cycle Shelter (Powder Coated Steel  Back &amp; Sides)",
		"Order Code 321 PRSI", "",
		"1988.56", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@", "pd1134471810.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[103] = new Element(
		103, "assets/thumb/ContempCyclePerspexSmall.jpg",
		132, 132,
		"11-321 PRPI-1", "Contemporary Cycle Shelter (Perspex Back &amp; Sides)",
		"Order Code 321 PRPI", "",
		"2221.87", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@", "pd-261211420.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[104] = new Element(
		104, "assets/thumb/CycleShelterGalvanised6Small.jpg",
		214, 125,
		"21-219 CGI-2", "Cycle Shelter 1.9m Deep (Galvanised Sides and Back)",
		"Order Code 219 CGI", "",
		"877.23", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Bike Capacity;Six Bikes@", "pd-1532563448.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[105] = new Element(
		105, "assets/thumb/CycleShelterGalvanised6ExtBig.jpg",
		150, 108,
		"22-219 CGE-2", "Cycle Shelter 1.9m Deep (Galvanised Sides and Back) Extension",
		"Order Code 219 CGE", "",
		"734.23", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Bike Capacity;Six Bikes@", "pd465662432.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[106] = new Element(
		106, "assets/thumb/CycleShelterGalvanisedOpenBack6SM.jpg",
		200, 137,
		"51-219 OPI-1", "Cycle Shelter 1.9m Deep (Powder Coated Steel Sides and Open Back)",
		"Order Code 219 OPI", "",
		"1360.78", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Capacity;Eight Man Capacity - 2450wide x 2500deep@", "pd385123453.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[107] = new Element(
		107, "assets/thumb/CycleShelterGalvanised6ExtSm.jpg",
		150, 108,
		"52-219 OPE-2", "Cycle Shelter 1.9m Deep (Powder Coated Steel Sides and Open Back) Extension",
		"Order Code 219 OPE", "",
		"987.53", "0",
		"1", 1,
		"Pieces", "23",
		"Frame Colour;Blue@Bike Capacity;Six Bikes@", "pd441977766.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[108] = new Element(
		108, "assets/thumb/SingleCycleRackSm.jpg",
		132, 132,
		"CR-4/6-1", "Single Sided Cycle Rack - 4 or 6 Bike Storage",
		"Order Code CRS", "",
		"156.89", "0",
		"1", 1,
		"Pieces", "24",
		"Rack Capacity;4 Cycles@", "pd1134558730.htm",
		"", 1,
		"63Cyc", "0",
		 3)
	
		Entry[109] = new Element(
		109, "assets/thumb/DoubleCycleRackSm.jpg",
		170, 133,
		"CR-8/12-2", "Double Sided Cycle Rack - 8 or 12 Bike Storage",
		"Order Code CRD", "",
		"196.42", "0",
		"1", 1,
		"Pieces", "24",
		"Rack Capacity;8 Cycles@", "pd1399386551.htm",
		"", 1,
		"63Cyc", "0",
		 3)
	
		Entry[110] = new Element(
		110, "assets/thumb/CycleHoopSM.jpg",
		180, 127,
		"BL-1", "Cycle Loop",
		"Order Code BL", "",
		"93.99", "0",
		"1", 1,
		"Pieces", "24",
		"Frame Colour;Blue@Bike Loop;Grouted@", "pd1562547935.htm",
		"", 1,
		"63Cyc", "0",
		 3)
	
		Entry[111] = new Element(
		111, "assets/thumb/HoopRack4Sm.jpg",
		132, 132,
		"HR-2-1", "4 Cycle Hoop Rack",
		"Order Number HR-2", "",
		"194.99", "0",
		"1", 1,
		"Pieces", "24",
		"Hoop Colour;Blue@", "pd-2054163419.htm",
		"", 1,
		"63Cyc", "0",
		 3)
	
		Entry[112] = new Element(
		112, "assets/thumb/HoopRack4Sm.jpg",
		132, 132,
		"HR-3-1", "6 Cycle Hoop Rack",
		"Order Number HR-3", "",
		"293.45", "0",
		"1", 1,
		"Pieces", "24",
		"Hoop Colour;Blue@", "pd-958687623.htm",
		"", 1,
		"63Cyc", "0",
		 3)
	
		Entry[113] = new Element(
		113, "assets/thumb/SpiroRackSm.jpg",
		132, 132,
		"SR-1-1", "Spiro Rack for 4 Cycles",
		"Order Number SR-1", "",
		"216.98", "0",
		"1", 1,
		"Pieces", "24",
		"Frame Colour;Blue@", "pd277144327.htm",
		"", 1,
		"63Cyc", "0",
		 3)
	
		Entry[114] = new Element(
		114, "assets/thumb/CycleShelterGalvanised6Small.jpg",
		214, 125,
		"21-225 CGI-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Galvanised Sides and Back)",
		"Order Code 225 CGI", "",
		"1032.12", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd526965254.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[115] = new Element(
		115, "assets/thumb/MotorbikeExtensionSM.jpg",
		165, 155,
		"22-225 CGE-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Galvanised Sides and Back) Extension",
		"Order Code 225 CGE", "",
		"878.32", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd1118564766.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[116] = new Element(
		116, "assets/thumb/CycleShelterGalvanisedOpenBack6SM.jpg",
		200, 137,
		"31-225 OGI-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Galvanised Sides and Open Back)",
		"Order Code 225 OGI", "",
		"924.34", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd1473392451.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[117] = new Element(
		117, "assets/thumb/MotorbikeExtensionSM.jpg",
		165, 155,
		"32-225 OGE-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Galvanised Sides and Open Back) Extension",
		"Order Code 225 OGE", "",
		"778.45", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd1471515988.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[118] = new Element(
		118, "assets/thumb/CycleShelterPaintedSM.jpg",
		234, 155,
		"41-225 CPI-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Powder Coated Steel Sides and Back)",
		"Order Code 225 CPI", "",
		"1517.34", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd-586797535.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[119] = new Element(
		119, "assets/thumb/MotorbikeExtensionSM.jpg",
		165, 155,
		"42-225 CPE-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Powder Coated Steel Sides and Back) Extension",
		"Order Code 225 CPE", "",
		"1378.34", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd1498529817.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[120] = new Element(
		120, "assets/thumb/CycleShelterGalvanisedOpenBack6SM.jpg",
		200, 137,
		"51-225 OPI-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Powder Coated Steel Sides and Open Back)",
		"Order Code 225 OPI", "",
		"1327.76", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd-149943086.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[121] = new Element(
		121, "assets/thumb/MotorbikeExtensionSM.jpg",
		165, 155,
		"52-225 OPE-1", "Motor Cycle/Scooter Shelter 2.5m Deep (Powder Coated Steel Sides and Open Back) Extension",
		"Order Code 225 OPE", "",
		"1177.54", "0",
		"1", 1,
		"Pieces", "25",
		"Frame Colour;Blue@Motorbike Capacity;4 Motorbikes@", "pd1217468839.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[122] = new Element(
		122, "assets/thumb/BulkheadLightSM.jpg",
		150, 101,
		"sma03-1", "Bulk Head Light",
		"Order Code BHL-SM", "",
		"106.32", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd291748355.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[123] = new Element(
		123, "assets/thumb/FluoLightSM.jpg",
		150, 101,
		"sma04-1", "Fluorescent Light",
		"Order Code FL-SM", "",
		"100.18", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd793893865.htm",
		"", 1,
		"62Cyc", "0",
		 3)
	
		Entry[124] = new Element(
		124, "assets/thumb/BulkheadLightSM.jpg",
		150, 101,
		"sma03-2", "Bulk Head Light",
		"Order Code BHL-SM", "",
		"106.32", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd1666558015.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[125] = new Element(
		125, "assets/thumb/FluoLightSM.jpg",
		150, 101,
		"sma04-2", "Fluorescent Light",
		"Order Code FL-SM", "",
		"100.18", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd1911743621.htm",
		"", 1,
		"63Mot", "0",
		 3)
	
		Entry[126] = new Element(
		126, "assets/thumb/Prefect1thumb.jpg",
		22, 70,
		"s1001SL", "Steel Carcass, Laminate Door Locker - Height 1780mm",
		"Order Code 701212SL", "",
		"45.55", "0",
		"1", 1,
		"Pieces", "1",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Black@Door Colour;Wild Cherry@Sloping Top;None@Tiers;1-One Tier@", "pd-695097318.htm",
		"", 1,
		"1-2SteelLa", "0",
		 3)
	
		Entry[127] = new Element(
		127, "assets/thumb/Prefect2thumb.jpg",
		22, 70,
		"s1001MDF", "MDF Carcass, Laminate Door Locker - Height 1780mm",
		"Order Code 701212", "",
		"45.55", "0",
		"1", 1,
		"Pieces", "2",
		"Width and Depth;305x305mm@Nests;1 - Single@Carcass Colour;Grey@Door Colour;Black Craquelle@Tiers;1-One Tier@", "pd-559786277.htm",
		"", 1,
		"1-3MDFLami", "0",
		 3)
	
		Entry[128] = new Element(
		128, "assets/thumb/Prefect3thumb.jpg",
		25, 70,
		"s1001LEI", "Leisure Locker Locker - Height 1780mm",
		"Order Code 701212", "",
		"45.55", "0",
		"1", 1,
		"Pieces", "3",
		"Width and Depth;305x305mm@Carcass Colour;Black Craquelle@Door Colour;Black Craquelle@Sloping Top;None@Tiers;1-One Tier@", "pd-883975986.htm",
		"", 1,
		"1-4Leisure", "0",
		 3)
	
		Entry[129] = new Element(
		129, "assets/thumb/Laptop10Thumb.jpg",
		94, 150,
		"laptop10", "10 Door Laptop Locker",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1361593288.htm",
		"", 1,
		"3aLaptop", "0",
		 3)
	
		Entry[130] = new Element(
		130, "assets/thumb/Laptop15Thumb.jpg",
		63, 150,
		"laptop15", "15 Door Laptop Locker",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1537273654.htm",
		"", 1,
		"3aLaptop", "0",
		 3)
	
		Entry[131] = new Element(
		131, "assets/thumb/LaptopCupboardThumb.jpg",
		96, 150,
		"laptopsh", "15 Shelf Laptop Cupboard",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1689288620.htm",
		"", 1,
		"3aLaptop", "0",
		 3)
	
// ** 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();
			};
		};