	// 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="99" height="24" alt="Artikel merken" 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>Preis vorher:&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>Jetzt nur noch:&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 += "Preis auf Anfrage";
			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/PICT3097.JPG",
		120, 122,
		"3095", "1968 Chevrolet Chevelle / Camaro / ChevyII und Corvette Chassis Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1251539917.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/PICT3097.JPG",
		120, 122,
		"3097", "1968 Chevrolet Chevelle / Camaro / ChevyII und Corvette",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-408364349.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/PICT3099.JPG",
		120, 115,
		"3099", "1965 Chevrolet Chevelle und Chevy II",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-1756960087.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/PICT3100.JPG",
		120, 117,
		"3100", "1965 Chevrolet Chevelle und ChevyII",
		"", "",
		"53.5", "0",
		"2", 1,
		"Stück", "7",
		"", "pd1014256895.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/PICT3101.JPG",
		120, 90,
		"3101", "1965 Chevrolet Chevelle und ChevyII",
		"", "",
		"53.5", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-921936059.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/PICT3102.JPG",
		120, 90,
		"3102", "1964 Chevrolet Chevelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-901657861.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/PICT3107.JPG",
		120, 90,
		"3107", "1969 Chevrolet Camaro / Chevelle / Nova und Corvette",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-179930953.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/PICT3108.JPG",
		120, 118,
		"3108", "1969 Chevrolet Camaro, Chevelle, Nova und Corvette",
		"", "",
		"53.5", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-1386542659.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/PICT3127.JPG",
		120, 90,
		"3127", "1979 Buick alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-43820493.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/PICT3128.JPG",
		120, 90,
		"3128", "1975 Buick alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-876267623.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/PICT3129.JPG",
		120, 90,
		"3129", "1974 Buick alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-1369363601.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/PICT3131.JPG",
		120, 90,
		"3131", "1980 Buick Skylark",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-159327435.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/PICT3130.JPG",
		120, 90,
		"3130", "1981 Buick alle Modelle ausser Skylark",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1810655339.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/PICT3132.JPG",
		120, 90,
		"3132", "1980 Buick alle Modelle ausser Skylark",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd125751441.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/PICT3134.JPG",
		120, 90,
		"3134", "1965 Oldsmobile alle Modelle",
		"", "",
		"64.2", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-716092121.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/PICT3138.JPG",
		120, 114,
		"3138", "1963 Oldsmobile alle Modelle",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-1001016403.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/PICT3150.JPG",
		120, 90,
		"3150", "1957 Buick alle Modelle",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-50866781.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/PICT3153.JPG",
		120, 90,
		"3153", "1973 Buick alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1377689737.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/PICT3155.JPG",
		120, 90,
		"3155", "1972 Buick alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-274743841.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/PICT3185.JPG",
		120, 90,
		"3185", "1973 Pontiac alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1179737495.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/PICT3186.JPG",
		120, 90,
		"3186", "1972 Pontiac alle Modelle",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1857550749.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/PICT3189.JPG",
		120, 90,
		"3189", "1957 Pontiac alle Modelle",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-764418695.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/PICT3126.JPG",
		120, 90,
		"3126", "1981 Pontiac Grand Prix / Le Mans und Firebird",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd580218868.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/PICT3140.JPG",
		120, 90,
		"3140", "1967 Oldsmobile F 85 / Vista Cruiser / Cutlass 442 / Delta / 98 und Toronado",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-837212350.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/PICT3190.JPG",
		120, 90,
		"3190", "1971 Oldsmobile F 85, Vista Cruiser, Cutlass 442, Delta, 98 und Toronado",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1549229934.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/PICT3191.JPG",
		120, 90,
		"3191", "1970 Oldsmobile F 85 / Vista Cruiser / Cutlass 442 / Delta / 98 und Toronado",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-2009248948.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/PICT3192.JPG",
		120, 90,
		"3192", "1969 Oldsmobile F 85 / Vista Cruiser / Cutllass 442 / Delta / 98 und Toronado",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-1757490598.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/fender33.JPG",
		120, 90,
		"100", "1981-87 Buick Regal Kotflügel vorne, links",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd1458482182.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/fender35.JPG",
		120, 90,
		"101", "1981-87 Buick Regal Kotflügel vorne, links",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd1102891428.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/fender3.JPG",
		120, 90,
		"102", "1978-80 Oldsmobile Cutlass Kotflügel vorne, rechts",
		"", "",
		"120", "35",
		"1", 1,
		"Stück", "4",
		"", "pd-1053763470.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/fender5.JPG",
		120, 90,
		"103", "1978-80 Oldsmobile Cutlass Kotflügel vorne, links",
		"", "",
		"120", "35",
		"1", 1,
		"Stück", "4",
		"", "pd-1974797328.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/fender60.JPG",
		120, 90,
		"104", "1985-96 Oldsmobile Cutlass Ciera Kotflügel vorne. rechts",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd262538142.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/fender62.JPG",
		120, 90,
		"105", "1985-96 Oldsmobil Cutlass Ciera Kotflügel vorne, links",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd1814514428.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/fender64.JPG",
		120, 90,
		"106", "1979-83 Oldsmobile Toronado Kotflügel vorne, rechts",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd1890687370.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/fender66.JPG",
		120, 90,
		"107", "1979-83 Oldsmobile Toronado Kotflügel vorne, links",
		"", "",
		"125", "32",
		"1", 1,
		"Stück", "4",
		"", "pd949158600.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/fender41.JPG",
		120, 90,
		"108", "1978-81 Pontiac Le Mans und Gran Prix Kotflügel vorne, links",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd791004726.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/fender45.JPG",
		120, 90,
		"109", "1982-87 Pontiac Grand Prix Kotflügel vorne, links",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd1440493396.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/fender47.JPG",
		120, 90,
		"110", "1982-87 Pontiac Grand Prix Kotflügel vorne, rechts",
		"", "",
		"100", "25",
		"1", 1,
		"Stück", "4",
		"", "pd212825506.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/fender7.JPG",
		120, 90,
		"113", "1987-90 Ford Mustang GT Kotflügel vorne, rechts",
		"", "",
		"100", "40",
		"1", 1,
		"Stück", "2",
		"", "pd796887096.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/fender21.JPG",
		120, 90,
		"114", "1987-90 Ford Mustang GT Kotflügel vorne, links",
		"", "",
		"100", "30",
		"1", 1,
		"Stück", "2",
		"", "pd1836943654.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/fender15.JPG",
		120, 90,
		"115", "1987-90 Ford Mustang Kotflügel vorne, rechts",
		"", "",
		"80", "30",
		"1", 1,
		"Stück", "2",
		"", "pd173501380.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/fender17.JPG",
		120, 90,
		"116", "1987-90 Ford Mustang Kotflügel vorne, links",
		"", "",
		"80", "30",
		"1", 1,
		"Stück", "2",
		"", "pd1244710802.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/fender19.JPG",
		120, 90,
		"117", "1987-90 Ford Mustang Kotflügel vorne, rechts",
		"", "",
		"80", "30",
		"1", 1,
		"Stück", "2",
		"", "pd-423297008.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/fender31.JPG",
		120, 90,
		"118", "1965-66 Ford Galaxie Kotflügel vorne, links",
		"", "",
		"120", "40",
		"1", 1,
		"Stück", "2",
		"", "pd-1428413250.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/fender54.JPG",
		120, 90,
		"120", "1978-79 Lincoln Mark V Kotflügel vorne, rechts",
		"", "",
		"275", "40",
		"1", 1,
		"Stück", "3",
		"", "pd1299516586.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/fender52.JPG",
		120, 90,
		"119", "1978-79 Lincoln Mark V Kotflügel vorne, links",
		"", "",
		"225", "40",
		"1", 1,
		"Stück", "3",
		"", "pd306893084.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/door26.JPG",
		120, 90,
		"123", "1981-88 Chevrolet Monte Carlo Fahrertür",
		"", "",
		"175", "60",
		"1", 1,
		"Stück", "1",
		"", "pd-1401230142.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/door74.JPG",
		120, 81,
		"124", "1981-88 Chevrolet Monte Carlo Fahrertür",
		"", "",
		"125", "60",
		"1", 1,
		"Stück", "1",
		"", "pd-2063963968.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/door76.JPG",
		120, 73,
		"125", "1981-85 Chevrolet Monte Carlo Beifahrertür",
		"", "",
		"125", "60",
		"1", 1,
		"Stück", "1",
		"", "pd-2062779154.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/door92.JPG",
		120, 142,
		"126", "1985-94 Chevrolet Astro Van Hecktüre links",
		"", "",
		"145", "60",
		"1", 1,
		"Stück", "1",
		"", "pd205366476.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/door94.JPG",
		120, 142,
		"127", "1985-94 Chevrolet Astro Van Hecktüre rechts",
		"", "",
		"145", "60",
		"1", 1,
		"Stück", "1",
		"", "pd418170842.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/bumper10.JPG",
		120, 66,
		"128", "1978-79 Lincoln MarkV Stosstange vorne",
		"", "",
		"250", "60",
		"1", 1,
		"Stück", "3",
		"", "pd-1128195688.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/bumper12.JPG",
		120, 67,
		"129", "Lincoln Mark V Stosstange hinten",
		"", "",
		"250", "60",
		"1", 1,
		"Stück", "3",
		"", "pd563280262.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/door32.JPG",
		120, 90,
		"130", "1979-86 Ford Mustang Fahrertür",
		"", "",
		"150", "60",
		"1", 1,
		"Stück", "2",
		"", "pd-11484.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/door35.JPG",
		120, 90,
		"131", "1979-86 Ford Mustang Fahrertür",
		"", "",
		"150", "60",
		"1", 1,
		"Stück", "2",
		"", "pd731971058.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/PICT2546.JPG",
		120, 135,
		"132", "1957 Imperial Crown Sitzbank vorne",
		"", "",
		"750", "80",
		"1", 1,
		"Stück", "9",
		"", "pd1253204843.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/PICT2543.JPG",
		120, 86,
		"133", "1957 Imperial Crown Sitzbank hinten",
		"", "",
		"750", "80",
		"1", 1,
		"Stück", "9",
		"", "pd323044241.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/PICT2549.JPG",
		120, 143,
		"134", "1957 Imperial Crown Hauptscheinwerfer links mit Zierrahmen",
		"", "",
		"195", "10",
		"1", 1,
		"Stück", "9",
		"", "pd289732647.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/PICT2549.JPG",
		120, 143,
		"134-1", "1957 Imperial Crown Hauptscheinwerfer rechts mit Zierrahmen",
		"", "",
		"195", "10",
		"1", 1,
		"Stück", "9",
		"", "pd-507685203.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/PICT2551.JPG",
		120, 79,
		"135", "1957 Imperial Crown Rückleuchtenglas",
		"", "",
		"50", "1",
		"1", 1,
		"Stück", "9",
		"", "pd-2116800349.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/PICT2591.JPG",
		120, 76,
		"136", "1957 Imperial Crown Wischergestänge mit Motor",
		"", "",
		"95", "4",
		"1", 1,
		"Stück", "9",
		"", "pd-547507319.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/PICT2599.JPG",
		120, 95,
		"137", "1957 Imperial Crown Türeinstiegsblenden",
		"", "",
		"145", "3",
		"1", 1,
		"Stück", "9",
		"", "pd-1295005473.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/PICT2601.JPG",
		120, 80,
		"138", "1957 Imperial Crown Handschuhfachklappe",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "9",
		"", "pd1253281992.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/PICT2602.JPG",
		120, 97,
		"139", "1957 Imperial Crown Wischwasserbeutel",
		"", "",
		"15", "1",
		"1", 1,
		"Stück", "9",
		"", "pd-458161098.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/PICT3325.JPG",
		120, 77,
		"140", "1959 Edsel Zierleistensatz",
		"", "",
		"175", "4",
		"1", 1,
		"Stück", "2",
		"", "pd1253781985.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/PICT3325.JPG",
		120, 77,
		"140-1", "1959 Edsel Zierleistensatz",
		"", "",
		"175", "4",
		"1", 1,
		"Stück", "2",
		"", "pd-1714434313.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/s000.jpg",
		120, 90,
		"141", "1988-96 GM Stepside Pickup Laderaumwanne/Bedliner",
		"", "",
		"195", "50",
		"1", 1,
		"Stück", "11",
		"", "pd181750269.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/s001.jpg",
		120, 90,
		"143", "Ford Ranger Laderaumwanne / bedliner",
		"", "",
		"195", "50",
		"1", 1,
		"Stück", "10",
		"", "pd1254228634.htm",
		"", 1,
		"Ford", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/PICT2597.JPG",
		120, 57,
		"144", "1970 Chevrolet Chevelle Stoßstange hinten",
		"", "",
		"125", "15",
		"1", 1,
		"Stück", "1",
		"", "pd166449752.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/PICT3166.JPG",
		120, 90,
		"3166", "1976 Cadillac Seville Fisher Body Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1256203369.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/PICT3180.JPG",
		120, 90,
		"3180", "1984 Chevrolet Chevette Shop Manual",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-65067841.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/PICT3181.JPG",
		120, 90,
		"3181", "1982 Chevrolet Citation/Celebrity Shop Manual",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd347780357.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/PICT3195.JPG",
		120, 90,
		"3195", "1980 Oldsmobile Omega Service Manual",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1559697083.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/PICT3198.JPG",
		120, 90,
		"3198", "1976 Chevrolet Chevette Shop Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-821532831.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/PICT3199.JPG",
		120, 90,
		"3199", "1977 Chevrolet Vega / Monza Shop Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd948306039.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/PICT3200.JPG",
		120, 90,
		"3200", "1979 Chevrolet Monza Shop Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-91433091.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/PICT3201.JPG",
		120, 90,
		"3201", "1980 Chevrolet Citation Shop Manual",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-467083789.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/PICT3210.JPG",
		120, 90,
		"3210", "1972 Chevrolet Vega Shop Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-329424551.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/PICT3211.JPG",
		120, 90,
		"3211", "1973 Chevrolet Vega Shop Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1894017839.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/PICT3254.JPG",
		120, 90,
		"3254", "1959-60 Chevrolet Passenger Car Shop Manual",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-2072174347.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/PICT3266.JPG",
		120, 90,
		"3266", "1970 Chevrolet Chevelle / Monte Carlo / Nova, Truck Ser. 10-60 Chassis Overhaul Manual",
		"", "",
		"53.5", "3",
		"2", 1,
		"Stück", "7",
		"", "pd862004267.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/PICT3267.JPG",
		120, 90,
		"3267", "1968 Chevrolet Truck Ser. 10-60 Chassis Overhaul Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1715008081.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/PICT3268.JPG",
		120, 90,
		"3268", "1968 Chevrolet Truck Ser. 10-60 Chassis Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-1549318937.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/PICT3269.JPG",
		120, 90,
		"3269", "1967 Chevrolet Truck Ser. 10-60 Chassis Overhaul Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1313042797.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/PICT3270.JPG",
		120, 90,
		"3270", "1967 Chevrolet Truck Ser. 10-60 Chassis Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-1868904093.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/PICT3274.JPG",
		120, 90,
		"3274", "1981 Chevrolet Impala / Caprice / Camaro / Malibu / Monte Carlo Service Manual",
		"", "",
		"42.8", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-493815223.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/PICT3275.JPG",
		120, 90,
		"3275", "1977 Chevrolet Chevelle / Camaro / Monte Carlo / Nova / Corvette Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1664576927.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/PICT3276.JPG",
		120, 90,
		"3276", "1972 Chevrolet LUV Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd401844453.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/PICT3279.JPG",
		120, 90,
		"3279", "1972 Chevrolet Chevelle / Camaro / Monte Carlo / Nova / Corvette Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-309547621.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/PICT3280.JPG",
		120, 90,
		"3280", "1971 Chevrolet Chevelle / Camaro / Monte Carlo / Nova / Corvette Chassis Service Manual",
		"", "",
		"53.5", "0",
		"2", 1,
		"Stück", "7",
		"", "pd158816577.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/PICT3281.JPG",
		120, 90,
		"3281", "1973 Chevrolet Chevelle / Camaro / Monte Carlo / Nova / Corvette Service Manual",
		"", "",
		"53.5", "2",
		"2", 1,
		"Stück", "7",
		"", "pd24757591.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/PICT3282.JPG",
		120, 90,
		"3282", "1961 Chevrolet Passenger Car Shop Manual",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-578967715.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/PICT3284.JPG",
		120, 90,
		"3284", "1962 Chevrolet Passenger Car Shop Manual supplement",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd-886460205.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/PICT3283.JPG",
		120, 90,
		"3283", "1963 Chevrolet Passenger Car Shop Manual Supplement",
		"", "",
		"64.2", "2",
		"2", 1,
		"Stück", "7",
		"", "pd1256212674.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/PICT3347.JPG",
		120, 90,
		"145", "1974-78 Pontiac Firebird Rückleuchte links",
		"", "",
		"125", "4",
		"1", 1,
		"Stück", "4",
		"", "pd1257258552.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/PICT3351.JPG",
		120, 90,
		"146", "1985-92 Pontiac Firebird Rückleuchte links",
		"", "",
		"50", "2",
		"1", 1,
		"Stück", "4",
		"", "pd-2086973781.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/PICT3352.JPG",
		120, 90,
		"147", "1980 Buick Century Rückleuchte rechts",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "4",
		"", "pd-1059512111.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/PICT3353.JPG",
		120, 90,
		"147-1", "1980 Buick Century Rückleuchte links",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "4",
		"", "pd-1163061401.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/PICT3354.JPG",
		120, 90,
		"148", "1971 Chevrolet Fullsize Rückleuchte rechts",
		"", "",
		"55", "2",
		"1", 1,
		"Stück", "1",
		"", "pd1312262125.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/PICT3355.JPG",
		120, 90,
		"148-1", "1971 Chevrolet Fullsize Rückleuchte links",
		"", "",
		"55", "2",
		"1", 1,
		"Stück", "1",
		"", "pd-1481194525.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/PICT3356.JPG",
		120, 75,
		"149", "1968-69 Buick Skylark Rückleuchte links",
		"", "",
		"95", "4",
		"1", 1,
		"Stück", "4",
		"", "pd-1138263863.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/PICT3357.JPG",
		120, 90,
		"149-1", "1968-69 Buick Skylark Rückleuchte rechts",
		"", "",
		"50", "4",
		"1", 1,
		"Stück", "4",
		"", "pd-1319366625.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/PICT3358.JPG",
		120, 90,
		"150", "1979 Chevrolet Malibu Station Rückleuchte rechts",
		"", "",
		"65", "2",
		"1", 1,
		"Stück", "1",
		"", "pd-714928283.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/PICT3359.JPG",
		120, 90,
		"150-1", "1979 Chevrolet Malibu Station Rückleuchte links",
		"", "",
		"65", "2",
		"1", 1,
		"Stück", "1",
		"", "pd299137051.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/PICT3364.JPG",
		120, 90,
		"151", "1989-92 Ford Ranger Hauptscheinwerfer links",
		"", "",
		"75", "2",
		"1", 1,
		"Stück", "2",
		"", "pd-111269951.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/PICT3365.JPG",
		120, 90,
		"151-1", "1989-92 Ford Ranger Hauptscheinwerfer rechts",
		"", "",
		"75", "2",
		"1", 1,
		"Stück", "2",
		"", "pd363280343.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/PICT3370.JPG",
		120, 90,
		"152", "1988 Ford Taurus Rückleuchte rechts",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "2",
		"", "pd-379429411.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/PICT3371.JPG",
		120, 90,
		"152-1", "1988 Ford Taurus Rückleuchte links",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "2",
		"", "pd-1641591981.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/PICT3375.JPG",
		120, 90,
		"153", "1967-68 Chevrolet Camaro Rückleuchte links",
		"", "",
		"90", "2",
		"1", 1,
		"Stück", "1",
		"", "pd2137722297.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/PICT3376.JPG",
		120, 90,
		"153-1", "1967-68 Chevrolet Camaro Rückleuchte rechts",
		"", "",
		"90", "2",
		"1", 1,
		"Stück", "1",
		"", "pd-1548783985.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/PICT3382.JPG",
		120, 114,
		"154", "1965-73 Ford Mustang Fußmattenset mit Logo",
		"", "",
		"80", "6",
		"1", 1,
		"Stück", "10",
		"", "pd866000267.htm",
		"", 1,
		"Ford", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/PICT3383.JPG",
		120, 87,
		"155", "1955-86 Jeep CJ Modelle Satz Kotflügelverbreiterungen",
		"", "",
		"95", "10",
		"1", 1,
		"Stück", "9",
		"", "pd-833090895.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/PICT3384.JPG",
		120, 44,
		"156", "1982-92 Pontiac Firebird Armaturenbrettabdeckung",
		"", "",
		"125", "10",
		"1", 1,
		"Stück", "11",
		"", "pd638686279.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/PICT3396.JPG",
		120, 90,
		"157", "1955-59 Ford 272/292/312 Y-Block Wasserpumpe",
		"", "",
		"79", "4",
		"1", 1,
		"Stück", "10",
		"", "pd1558695885.htm",
		"", 1,
		"Ford", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/door40.JPG",
		120, 90,
		"158", "1963 Ford Galaxie Tür vorne, rechts",
		"", "",
		"275", "80",
		"1", 1,
		"Stück", "2",
		"", "pd1257349936.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/door42.JPG",
		120, 99,
		"158-1", "1963 Ford Galaxie Tür hinten, links",
		"", "",
		"225", "80",
		"1", 1,
		"Stück", "2",
		"", "pd-1230897954.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/door68.JPG",
		120, 90,
		"158-2", "1963 Ford Galaxie Tür vorne, links",
		"", "",
		"275", "80",
		"1", 1,
		"Stück", "2",
		"", "pd-2038372804.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/door82.JPG",
		120, 90,
		"159", "1980-86 Ford F-Series Pickup Beifahrertür",
		"", "",
		"175", "80",
		"1", 1,
		"Stück", "2",
		"", "pd-102127926.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/door100.JPG",
		120, 90,
		"160", "1979 Ford LTD II Fahrertür",
		"", "",
		"150", "80",
		"1", 1,
		"Stück", "2",
		"", "pd-1856581112.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/PICT2597.JPG",
		120, 57,
		"161", "1970 Chevrolet Chevelle Stoßstange hinten",
		"", "",
		"150", "15",
		"1", 1,
		"Stück", "1",
		"", "pd1257435169.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/PICT3323.JPG",
		120, 90,
		"162", "1983-94 Chevrolet Blazer S10 Stoßstange hinten",
		"", "",
		"100", "18",
		"1", 1,
		"Stück", "1",
		"", "pd792639287.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/bumper14.JPG",
		120, 53,
		"163", "1998-02 Lincoln Continental Stossfänger vorne",
		"", "",
		"100", "40",
		"1", 1,
		"Stück", "3",
		"", "pd1639410749.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/bumper16.JPG",
		120, 72,
		"163-1", "1998-02 Lincoln Continental Stossfänger hinten",
		"", "",
		"100", "40",
		"1", 1,
		"Stück", "3",
		"", "pd852525235.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/bumper23.JPG",
		120, 55,
		"164", "1965 Chevrolet Impala Stoßstange hinten",
		"", "",
		"150", "40",
		"1", 1,
		"Stück", "1",
		"", "pd658555417.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/bumper27.JPG",
		120, 64,
		"165", "1971 Chevrolet Impala Stoßstange hinten",
		"", "",
		"150", "40",
		"1", 1,
		"Stück", "1",
		"", "pd-1079920145.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/fender79.JPG",
		120, 79,
		"111", "1957 Imperial Crown Kotflügel vorne, rechts",
		"", "",
		"495", "42",
		"1", 1,
		"Stück", "6",
		"", "pd1336515744.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/fender83.JPG",
		120, 90,
		"112", "1957 Imperial Crown Kotflügel vorne links",
		"", "",
		"495", "42",
		"1", 1,
		"Stück", "6",
		"", "pd2063750094.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/bumper18.JPG",
		120, 63,
		"166", "1957 Imperial Crown Stoßstange vorne",
		"", "",
		"400", "60",
		"1", 1,
		"Stück", "6",
		"", "pd1726491409.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/bumper21.JPG",
		120, 59,
		"166-1", "1957 Imperial Crown Stoßstange hinten",
		"", "",
		"400", "60",
		"1", 1,
		"Stück", "6",
		"", "pd-1720439897.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/hood3.JPG",
		120, 115,
		"167", "1973-74 Chevrolet Impala / Caprice / Bel Air Motorhaube",
		"", "",
		"250", "60",
		"1", 1,
		"Stück", "1",
		"", "pd-2057456083.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/hood17.JPG",
		120, 104,
		"168", "1971 Chevrolet Impala Motorhaube",
		"", "",
		"275", "60",
		"1", 1,
		"Stück", "1",
		"", "pd1769577507.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/hood13.JPG",
		120, 96,
		"169", "1981-88 Chevrolet Monte Carlo Motorhaube",
		"", "",
		"150", "40",
		"1", 1,
		"Stück", "1",
		"", "pd-1723921655.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/trunk21.JPG",
		120, 87,
		"170", "1971 Chevrolet Impala Kofferdeckel",
		"", "",
		"250", "40",
		"1", 1,
		"Stück", "1",
		"", "pd-679547809.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/trunk11.JPG",
		120, 92,
		"171", "1981-88 Chevrolet Monte Carlo Kofferdeckel",
		"", "",
		"125", "40",
		"1", 1,
		"Stück", "1",
		"", "pd23741861.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/trunk17.JPG",
		120, 90,
		"172", "1965 Chevrolet Impala Kofferdeckel",
		"", "",
		"190", "60",
		"1", 1,
		"Stück", "1",
		"", "pd-562063269.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/hood15.JPG",
		120, 101,
		"173", "1957 Imperial Crown Motorhaube",
		"", "",
		"450", "80",
		"1", 1,
		"Stück", "6",
		"", "pd1538736641.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/trunk13.JPG",
		120, 85,
		"174", "1957 Imperial Crown Kofferdeckel",
		"", "",
		"350", "70",
		"1", 1,
		"Stück", "6",
		"", "pd1074191383.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/PICT2605.JPG",
		120, 90,
		"175", "1957 Imperial Crown Luftfiltergehäuse",
		"", "",
		"50", "8",
		"1", 1,
		"Stück", "9",
		"", "pd1257864266.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/PICT2654.JPG",
		120, 82,
		"176", "1957 Imperial Crown Hupenring",
		"", "",
		"150", "2",
		"1", 1,
		"Stück", "9",
		"", "pd-1592745080.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/PICT2657.JPG",
		120, 90,
		"177", "1957 Imperial Crown türgriff aussen",
		"", "",
		"45", "1",
		"1", 1,
		"Stück", "9",
		"", "pd-972598026.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/PICT2668.JPG",
		120, 90,
		"178", "1957 Imperial Crown Kotflügelschriftzug",
		"", "",
		"75", "1",
		"1", 1,
		"Stück", "9",
		"", "pd-1715774444.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/PICT2604.JPG",
		120, 73,
		"179", "1957 Imperial Crown Dreieckfensterrahmen",
		"", "",
		"145", "6",
		"1", 1,
		"Stück", "9",
		"", "pd1048408162.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/PICT2611.JPG",
		120, 81,
		"180", "1957 Imperial Crown Schminkspiegel",
		"", "",
		"15", "1",
		"1", 1,
		"Stück", "9",
		"", "pd679155040.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/s004.jpg",
		120, 90,
		"142-1", "Fullsize Pickup Truck Laderaumwanne/Bedliner",
		"", "",
		"195", "50",
		"1", 1,
		"Stück", "11",
		"", "pd-1960444967.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/s002.jpg",
		120, 90,
		"142", "Fullsize Pickup Truck Laderaumwanne/Bedliner",
		"", "",
		"195", "50",
		"1", 1,
		"Stück", "11",
		"", "pd1436587123.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/PICT3442.JPG",
		120, 58,
		"181", "1974 Chevrolet Impala Rückleuchteneiheit",
		"", "",
		"175", "15",
		"1", 1,
		"Stück", "1",
		"", "pd1266486660.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/PICT3443.JPG",
		120, 67,
		"182", "1967-72 Chevrolet Pickup Heckklappe",
		"", "",
		"150", "45",
		"1", 1,
		"Stück", "1",
		"", "pd2128494418.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/PICT3444.JPG",
		120, 62,
		"183", "1967-72 Chevrolet Pickup Ladeflächenstirnblech",
		"", "",
		"50", "30",
		"1", 1,
		"Stück", "1",
		"", "pd752238032.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/PICT3445.JPG",
		120, 74,
		"184", "1959 Edsel Villager Heckklappenscheibe",
		"", "",
		"650", "40",
		"1", 1,
		"Stück", "2",
		"", "pd-179398530.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/PICT3441.JPG",
		120, 75,
		"185", "1977-78 Ford Thunderbird Rückleuchteneinheit.",
		"", "",
		"145", "20",
		"1", 1,
		"Stück", "2",
		"", "pd68774620.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/windshield.jpg",
		150, 66,
		"186", "1965-66 Chevrolet Windschutzscheibe",
		"", "",
		"250", "30",
		"1", 1,
		"Stück", "1",
		"", "pd1269961785.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/windshield.jpg",
		150, 66,
		"187", "1965-66 Chevrolet Windschutzscheibe",
		"", "",
		"250", "30",
		"1", 1,
		"Stück", "1",
		"", "pd-48768753.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/windshield.jpg",
		150, 66,
		"188", "1963-64 Chevrolet Heckscheibe",
		"", "",
		"200", "30",
		"1", 1,
		"Stück", "1",
		"", "pd590987733.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/windshield.jpg",
		150, 66,
		"189", "1975-81 Chevrolet Camaro Heckscheibe",
		"", "",
		"150", "30",
		"1", 1,
		"Stück", "1",
		"", "pd1966485515.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/windshield.jpg",
		150, 66,
		"190", "1975-81 Chevrolet Camaro Heckscheibe",
		"", "",
		"175", "30",
		"1", 1,
		"Stück", "1",
		"", "pd1270468666.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/windshield.jpg",
		150, 66,
		"191", "1967-68 Chevrolet Fullsize Heckscheibe",
		"", "",
		"200", "30",
		"1", 1,
		"Stück", "1",
		"", "pd-1286940424.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/doorglass.jpg",
		150, 117,
		"192", "1982-84 Chevrolet Camaro Türscheibe",
		"", "",
		"150", "20",
		"1", 1,
		"Stück", "1",
		"", "pd-2128328730.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/windshield.jpg",
		150, 66,
		"193", "1971-73 Chevrolet Impala Heckscheibe",
		"", "",
		"200", "30",
		"1", 1,
		"Stück", "1",
		"", "pd2000636036.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/windshield.jpg",
		150, 66,
		"194", "1962 Olsmobile Super 88 Heckscheibe",
		"", "",
		"200", "30",
		"1", 1,
		"Stück", "4",
		"", "pd1224143442.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/windshield.jpg",
		150, 66,
		"195", "1957 Imperial Crown Heckscheibe",
		"", "",
		"300", "30",
		"1", 1,
		"Stück", "6",
		"", "pd537536720.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/windshield.jpg",
		150, 66,
		"196", "1971-73 Ford Mustang MachI Frontscheibe",
		"", "",
		"250", "30",
		"1", 1,
		"Stück", "2",
		"", "pd-722437250.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/windshield.jpg",
		150, 66,
		"197", "1971-73 Ford Mustang Mach I Heckscheibe.",
		"", "",
		"200", "30",
		"1", 1,
		"Stück", "2",
		"", "pd-155580964.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/windshield.jpg",
		150, 66,
		"198", "1979-80 Ford Mustang Coupé Heckscheibe.",
		"", "",
		"150", "30",
		"1", 1,
		"Stück", "2",
		"", "pd-109949078.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/windshield.jpg",
		150, 66,
		"199", "1964-67 Ford Mustang Windschutzscheibe",
		"", "",
		"200", "30",
		"1", 1,
		"Stück", "2",
		"", "pd-1698813016.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/doorglass.jpg",
		150, 117,
		"200", "1971-73 Ford Mustang Türscheibe",
		"", "",
		"175", "20",
		"1", 1,
		"Stück", "2",
		"", "pd-215180778.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/doorglass.jpg",
		150, 117,
		"201", "1974-78 Ford Mustang II Türscheibe",
		"", "",
		"150", "20",
		"1", 1,
		"Stück", "2",
		"", "pd1869784628.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/doorglass.jpg",
		150, 117,
		"202", "1969-70 Ford Mustang Fastback Türscheibe",
		"", "",
		"175", "20",
		"1", 1,
		"Stück", "2",
		"", "pd1066026882.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/doorglass.jpg",
		150, 117,
		"203", "1977-79 Lincoln Mark V Türscheibe",
		"", "",
		"175", "20",
		"1", 1,
		"Stück", "2",
		"", "pd1517044096.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/doorglass.jpg",
		150, 117,
		"204", "1974-78 Ford Mustang II Türscheibe",
		"", "",
		"150", "20",
		"1", 1,
		"Stück", "2",
		"", "pd870122414.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/doorglass.jpg",
		150, 117,
		"205", "1978-80 Chevrolet Monza Türscheibe",
		"", "",
		"150", "20",
		"1", 1,
		"Stück", "1",
		"", "pd1585744268.htm",
		"", 1,
		"005", "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>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</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();
			};
		};