	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="83" height="24" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on inquiry";
			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/Scot 01.jpg",
		200, 300,
		"897-1", "Scot Dual Pump Package, New, Never Operated.",
		"Consisting of 2 pumps, manifold, and valves, all skid mounted.", "Scot",
		"9500", "0",
		"1", 1,
		"Pieces", "85",
		"", "pd-290998017.htm",
		"", 1,
		"Fur TwrC", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Sand Delivery.jpg",
		200, 166,
		"908", "Kloster Core Sand Delivery Car, Excellent Condition, New 1993.",
		"400 lb Hopper Capacity, Replaceable Liner, S/N MS 6422.", "Kloster",
		"5000", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd1054752032.htm",
		"", 1,
		"Cor SD", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Scot 01.jpg",
		200, 300,
		"897-2", "Scot Dual Pump Package, New, Never Operated.",
		"Consisting of 2 pumps, manifold, and valves, all skid mounted.", "Scot",
		"9500", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd1057036265.htm",
		"", 1,
		"Fur RP", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Permeter 338 943.jpg",
		60, 74,
		"943", "Dietert Electric Permeter No 338 S/N 1214",
		"Complete with Large Calibration Orifice", "Dietert",
		"1800", "0",
		"1", 1,
		"Pieces", "70",
		"", "pd429100541.htm",
		"", 1,
		"Lab San", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Moisture Teller 945.jpg",
		60, 84,
		"945", "DISA Dietert Moisture Teller",
		"Model 276 B, S/N 40345.", "Dietert",
		"1350", "0",
		"1", 1,
		"Pieces", "70",
		"", "pd-261062695.htm",
		"", 1,
		"Lab San", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/Bmmqct.jpg",
		80, 103,
		"956", "BMM QCT-3",
		"This machine is a larger Capacity than the CT-3", "British Molding Machines",
		"8500", "0",
		"1", 1,
		"Pieces", "96",
		"", "pd863746156.htm",
		"", 1,
		"Mold C", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/BMMQCT3-4.jpg",
		80, 60,
		"957", "BMM QCT-3",
		"This machine is a larger Capacity than the CT-3", "British Molding Machines",
		"8500", "0",
		"1", 1,
		"Pieces", "96",
		"", "pd-1605139334.htm",
		"", 1,
		"Mold C", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Bin level control.jpg",
		60, 89,
		"967", "Bin Level Control",
		"", "",
		"100", "0",
		"1", 1,
		"Pieces", "139",
		"", "pd-135704897.htm",
		"", 1,
		"Silo", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Bariod Mud Balance.jpg",
		60, 31,
		"978", "Bariod Mud Balance",
		"Checks Consistency of Core and Mold Washes", "Bariod",
		"100", "0",
		"1", 1,
		"Pieces", "70",
		"", "pd1059306139.htm",
		"", 1,
		"Lab San", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Transfer Car.jpg",
		80, 46,
		"1137-1", "Transfer Car with Turntable",
		"4&rsquo;-6&quot; Long, 1&rsquo;-3&quot; High from Base to Top of Channel w/o Wheels", "",
		"1500", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1107381000.htm",
		"", 1,
		"Tur Tbl", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Scot 01.jpg",
		200, 300,
		"897", "Scot Dual Pump Package, New, Never Operated.",
		"Consisting of 2 pumps, manifold, and valves, all skid mounted.", "Scot",
		"9500", "0",
		"1", 1,
		"Pieces", "129",
		"", "pd-1973618104.htm",
		"", 1,
		"C Pumps", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Transfer Car.jpg",
		80, 46,
		"1137", "Transfer Car with Turntable",
		"4 ft. 6 in. Long, 1 ft.3 in. High,  from Base to Top of Channel w/o Wheels.", "",
		"1500", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd-96971922.htm",
		"", 1,
		"Tran Car", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/cone-reducer-hous7601127k5-01.jpg",
		80, 79,
		"100014-1", "Textron Cone Reducer Model# HOUS 7601127K5 300:1",
		"Mod option 0101. Input 1750 rpm, ratio 300:1 SF 1, Hp rating 3.38, s/n:91147517-001. Has 1&quot;dia input shaft, 4-7/16&quot;dia output. Good used condition.", "Textron",
		"750", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd1090366282.htm",
		"", 1,
		"gear redcr", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Tyler-Ro-Tap-01.jpg",
		80, 60,
		"1150", "Tyler Ro Tap",
		"", "Tyler",
		"1950", "0",
		"1", 1,
		"Pieces", "70",
		"", "pd815822882.htm",
		"", 1,
		"Lab San", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Shalco-312S-01.jpg",
		80, 53,
		"1167", "Shalco 321 S Cold Box Core machine, Excellent Condition. Complete with a Control Panel including a ",
		"PLC controller, Operator&rsquo;s Station, and  25 hp Hydraulic Pump equipped with an oil cooler.", "",
		"0", "0",
		"1", 1,
		"Pieces", "29",
		"", "pd1093438066.htm",
		"", 1,
		"Cor CB", "0",
		 3)
	
		Entry[15] = new Element(
		15, "assets/thumb/Whirl Air 50 cu ft 01.jpg",
		60, 105,
		"994-1", "Whirl Air Flow 50 cu ft Transporter",
		"No Controls, 5&quot; dia Discharge", "Whirl Air Flow",
		"6500", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd2051911775.htm",
		"", 1,
		"Conv Pnue", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/General-Kinematics-7.5-hp-motor-02.jpg",
		100, 81,
		"1196", "Two - Complete  G-K  Vibratrol Motors  Mod# 6-967103-40 BR06055, type:CJI5S, ",
		" frame: 286YZ,  3/60/230/460,  7-1/2 hp, 880 rpm,  GKC# 05 01 03 07. Price is per each.", "General Kinematics",
		"3500", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-593581576.htm",
		"", 1,
		"vib con ", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/General-Kinematics-7.5-hp-motor-02.jpg",
		100, 81,
		"1196-1", "Two - Complete  G-K  Vibratrol Motors  Mod# 6-967103-40 BR06055, type:CJI5S, ",
		" frame: 286YZ,  3/60/230/460,  7-1/2 hp, 880 rpm,  GKC# 05 01 03 07. Price is per each.", "General Kinematics",
		"3500", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd616595686.htm",
		"", 1,
		"vib conv", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/General-Kinematics-7.5-hp-motor-04.jpg",
		100, 55,
		"1197", "One - Motor Only, G-K  Vibratrol Motor Mod# 6-967103-40 BR06055, type:CJI5S, ",
		"frame: 286YZ,  3/60/230/460,  7-1/2 hp, 880 rpm,  GKC# 05 01 03 07. No Weights or End Pieces.", "General Kinematics",
		"2500", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1158010492.htm",
		"", 1,
		"vib con ", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/General-Kinematics-7.5-hp-motor-04.jpg",
		100, 55,
		"1197-1", "One - Motor Only, G-K  Vibratrol Motor Mod# 6-967103-40 BR06055, type:CJI5S, ",
		"frame: 286YZ,  3/60/230/460,  7-1/2 hp, 880 rpm,  GKC# 05 01 03 07. No Weights or End Pieces.", "General Kinematics",
		"2500", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd-1752122542.htm",
		"", 1,
		"vib conv", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/3GNR-03.jpg",
		100, 159,
		"1222", "Pangborn 3 Cubic Ft. Rubber Belt Blast Machine, belt in good condition, all wear plates excellent.",
		"Model 3 GNR S/N 3GNR-5613", "Pangborn",
		"9500", "0",
		"1", 1,
		"Pieces", "8",
		"", "pd1145850085.htm",
		"", 1,
		"Blast Con", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/images/nopicture.gif",
		55, 38,
		"1210", "Gaylord Gassing Unit with Heat-A-Purge, Model # LCC-G75T",
		"", "Gaylord",
		"2500", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd523215040.htm",
		"", 1,
		"Cor CB G", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/images/nopicture.gif",
		55, 38,
		"1211", "Gaylord Gassing Unit with Heat-A-Purge, Model # LCC-G125.",
		"", "Gaylord",
		"2500", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd1881437422.htm",
		"", 1,
		"Cor CB G", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/Buehler Polisher 01.jpg",
		100, 66,
		"1227", "Buehler double end buffer/polisher 8&quot; diameter discs for up to 4 different grit sizes, ",
		"115V, 1140/570 rpm, 1/3hp", "Buhler",
		"200", "0",
		"1", 1,
		"Pieces", "68",
		"", "pd1156360793.htm",
		"", 1,
		"Lab M", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Simplicity Screen  4 x 8 02.jpg",
		200, 129,
		"1258", "Simplicity Double Deck Screen, 4 ft. x 8 ft. with a 7-1/2hp",
		"S/N 248-U-SSH-143", "Simplicity",
		"7500", "0",
		"1", 1,
		"Pieces", "138",
		"", "pd-1878002864.htm",
		"", 1,
		"Sha", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/images/nopicture.gif",
		55, 38,
		"1263", "Bucket Elevator, 44 ft Pulley Centers, 18 in. wide belt, 6 ply, 96 ft. long.",
		"Style AA buckets, 16 in. x 7 in. x 7-1/4 in. on 20 in centers.", "",
		"7000", "0",
		"1", 1,
		"Pieces", "14",
		"", "pd1195861204.htm",
		"", 1,
		"Conv BE", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/images/nopicture.gif",
		55, 38,
		"1264", "Bucket Elevator, 36 ft. Pulley Centers, 18 in. wide belt, 6 ply, 80 ft. long.",
		"Style AA buckets, 16 in. x 7 in. x 7-1/4 in. on 20 in centers.", "",
		"5750", "0",
		"1", 1,
		"Pieces", "14",
		"", "pd-1783388382.htm",
		"", 1,
		"Conv BE", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/pace-3.jpg",
		100, 84,
		"1267", "Gudgeon Pacemaster Model # PM10+SA,  S/N –1052, new in 1990with PLC Controls",
		"The 10 in the model # means 10 tons per hour, which calculates to 333 lbs/min. It has 3 pumps. Good condition. The original manual is available.", "Gudgeon",
		"12750", "0",
		"1", 1,
		"Pieces", "110",
		"", "pd-1531404978.htm",
		"", 1,
		"No B Mix", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Battery Extractor 01.jpg",
		200, 100,
		"1300", "Enersys Forklift Battery Extractor",
		"Complete System with Controls and Conveyor ", "Enersys",
		"22500", "0",
		"1", 1,
		"Pieces", "52",
		"", "pd1211640174.htm",
		"", 1,
		"Fork", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Router 01.jpg",
		200, 188,
		"1302", "Inverted Router CR Onsrud Model 36210",
		"S/N 36549, New 1992, 10hp, 460V, 36 in throat, 43 in x 72 in table", "C.R. Onsrud",
		"5950", "0",
		"1", 1,
		"Pieces", "119",
		"", "pd1211806963.htm",
		"", 1,
		"Pat", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/10 x 12 ft Shakeout 01.JPG",
		200, 150,
		"1304", "General Kinematics 10 ft x 12 ft Shakeout, Model 120.12",
		"Twin Motor Kinemarics II, S/N 3516-1", "General Kinematics",
		"70000", "0",
		"1", 1,
		"Pieces", "138",
		"", "pd-1291463258.htm",
		"", 1,
		"Sha", "0",
		 3)
	
		Entry[31] = new Element(
		31, "assets/thumb/10 x 12 ft Shakeout 01.JPG",
		200, 150,
		"1304-1", "General Kinematics 10 ft x 12 ft Shakeout, Model 120.12",
		"Twin Motor Kinemarics II, S/N 3516-1", "General Kinematics",
		"70000", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd1497009220.htm",
		"", 1,
		"No B R Sys", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/Multi Shifter 01.jpg",
		200, 109,
		"1306", "Multi-Shifter Battery Extractor with Exide Charger and one Battery Rack",
		"Model  MS-II-22, S/N 776,  New 1995, Specification 07-24-MAG-24", "Multi-Shifter, Inc.",
		"7500", "0",
		"1", 1,
		"Pieces", "52",
		"", "pd294662442.htm",
		"", 1,
		"Fork", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/Climax Straightener 01.JPG",
		146, 200,
		"1307", "Beardsley &amp; Piper Wire Straightener Model 2-1/2A with a 5 HP Motor",
		"It has a Range Diameter of 3/16 in to 1/2 in (min wire length 9 in)", "Beardsley and Piper",
		"3500", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd498156880.htm",
		"", 1,
		"WS", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Climax Straightener 01.JPG",
		146, 200,
		"1307-1", "Beardsley &amp; Piper Wire Straightener Model 2-1/2A with a 5 HP Motor",
		"It has a Range Diameter of 3/16 in to 1/2 in (min wire length 9 in)", "Beardsley and Piper",
		"3500", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd1246686206.htm",
		"", 1,
		"Cor", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Climax Straightener 01.JPG",
		146, 200,
		"1307-2", "Beardsley &amp; Piper Wire Straightener Model 2-1/2A with a 5 HP Motor",
		"It has a Range Diameter of 3/16 in to 1/2 in (min wire length 9 in)", "Beardsley and Piper",
		"3500", "0",
		"1", 1,
		"Pieces", "107",
		"", "pd24111708.htm",
		"", 1,
		"No B", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/plast-2.jpg",
		200, 182,
		"1308", "Packed Tower Scrubber with 42 in diameter air duct",
		"with 2 Fybroc 10 hp plastic pumps", "Fabricated Plastics ",
		"17750", "0",
		"1", 1,
		"Pieces", "126",
		"", "pd-1073953543.htm",
		"", 1,
		"pk twr scr", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Paul O Abbe 40 in dia x 48 long 01.jpg",
		200, 143,
		"1310", "Paul O Abbe Ball Mill 40 in dia by 48 in long ",
		"Complete with 5 HP Motor and Double Reduction Drive", "Paul O Abbe",
		"12500", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd1216431761.htm",
		"", 1,
		"Ball Mill", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/GasFiredFurnace2.jpg",
		200, 150,
		"1312", "1000 lb Gas Fired Hydraulic Tilt Aluminum Melting Furnace",
		"Complete with Controls, Hydraulic Pump, and Blower", "",
		"11750", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd1216649397.htm",
		"", 1,
		"Non F E", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/Donovan 01.JPG.jpg",
		200, 120,
		"1313", "Donovan Mold Handler, Inside Lengths are 67 in, 62 in, 49 in, and 47 in",
		"31 in from center of trunions to bottom of top frame", "Donovon",
		"5750", "0",
		"1", 1,
		"Pieces", "116",
		"", "pd1228488796.htm",
		"", 1,
		"No B MH", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Inductotherm 750-5, Item 1266.JPG",
		200, 190,
		"1266", "Inductotherm VIP Power-Trak Model 750-5, New 1985, 750 KW, 500 HZ, S/N 85 58495-246-11",
		"575 Volt, 2 - Air operated selector switches, 2 - 1500 lb. Dura-Line furnaces with hydraulic tilt and lid lifting mechanisms (lids are not available), Hydraulic power unit,", "Inductotherm",
		"0", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-1436603872.htm",
		"", 1,
		"Induc", "0",
		 3)
	
		Entry[41] = new Element(
		41, "assets/thumb/Test Block 01.jpg",
		200, 155,
		"1319", "Brian Service &amp; Calibration Rockwell Gridded Hardness Test Blocks.",
		"Eight Available, Price is Each", "",
		"120", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd1023350227.htm",
		"", 1,
		"Lab Phys", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Torit DFT 4-48 01.JPG",
		200, 150,
		"1326", "Torit Model DFT 4-48 25,000 Cartridge Dust Collector",
		"New 1988, Complete with Blower, Motor, Controls, and Discharge Screw Conveyor", "Torit",
		"17500", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd1267192714.htm",
		"", 1,
		"Dust C", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/General-Kinematics-7.5-hp-motor-04.jpg",
		200, 110,
		"1197-2", "One - Motor Only, G-K  Vibratrol Motor Mod# 6-967103-40 BR06055, type:CJI5S, ",
		"frame: 286YZ,  3/60/230/460,  7-1/2 hp, 880 rpm,  GKC# 05 01 03 07. No Weights or End Pieces.", "General Kinematics",
		"2500", "0",
		"1", 1,
		"Pieces", "102",
		"", "pd1268667405.htm",
		"", 1,
		"Mot", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/General-Kinematics-7.5-hp-motor-02.jpg",
		200, 163,
		"1196-2", "Two - Complete  G-K  Vibratrol Motors  Mod# 6-967103-40 BR06055, type:CJI5S, ",
		" frame: 286YZ,  3/60/230/460,  7-1/2 hp, 880 rpm,  GKC# 05 01 03 07. Price is per each.", "General Kinematics",
		"3500", "0",
		"1", 1,
		"Pieces", "102",
		"", "pd1338436867.htm",
		"", 1,
		"Mot", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Traylor 9ft 6in x 265ft 01.JPG",
		300, 123,
		"1329", "Traylor Rotary Kiln 9 ft 6 in Diameter by 265 ft Long Including Cooling Section",
		"Nominal Shell Thickness 3/4 in, 1.25 Kiln RPM", "Traylor",
		"0", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-1074353965.htm",
		"", 1,
		"Kiln", "0",
		 3)
	
		Entry[46] = new Element(
		46, "assets/thumb/Thermfire.jpg",
		200, 185,
		"1330", "REBUILT THERMFIRE TF-2000 FOR SALE",
		"FOR THE THERMAL RECLAMATION OF CHEMICALLY BONDED SAND, FURAN, PHENOLIC URETHANE, SHELL and ALPHASET ...(with additions)  ", "Gudgeon",
		"159000", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd1276176308.htm",
		"", 1,
		"No B R Sys", "0",
		 3)
	
		Entry[47] = new Element(
		47, "assets/thumb/3000 lb Modern 02.jpg",
		200, 161,
		"1332", "Modern 3000 LB Ladle, Mark I",
		"32 in diameter x 41 in long", "Modern",
		"4500", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd1305835013.htm",
		"", 1,
		"Lad HVB", "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();
			};
		};
