	// 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/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[1] = new Element(
		1, "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[2] = new Element(
		2, "assets/thumb/PICT2546.JPG",
		120, 135,
		"132", "1957 Imperial Crown Sitzbank vorne",
		"", "",
		"750", "80",
		"1", 1,
		"Stück", "8",
		"", "pd1253204843.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/PICT2543.JPG",
		120, 86,
		"133", "1957 Imperial Crown Sitzbank hinten",
		"", "",
		"750", "80",
		"1", 1,
		"Stück", "8",
		"", "pd323044241.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/PICT2549.JPG",
		120, 143,
		"134", "1957 Imperial Crown Hauptscheinwerfer links mit Zierrahmen",
		"", "",
		"195", "10",
		"1", 1,
		"Stück", "8",
		"", "pd289732647.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/PICT2549.JPG",
		120, 143,
		"134-1", "1957 Imperial Crown Hauptscheinwerfer rechts mit Zierrahmen",
		"", "",
		"195", "10",
		"1", 1,
		"Stück", "8",
		"", "pd-507685203.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/PICT2551.JPG",
		120, 79,
		"135", "1957 Imperial Crown Rückleuchtenglas",
		"", "",
		"50", "1",
		"1", 1,
		"Stück", "8",
		"", "pd-2116800349.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/PICT2591.JPG",
		120, 76,
		"136", "1957 Imperial Crown Wischergestänge mit Motor",
		"", "",
		"95", "4",
		"1", 1,
		"Stück", "8",
		"", "pd-547507319.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/PICT2599.JPG",
		120, 95,
		"137", "1957 Imperial Crown Türeinstiegsblenden",
		"", "",
		"145", "3",
		"1", 1,
		"Stück", "8",
		"", "pd-1295005473.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/PICT2601.JPG",
		120, 80,
		"138", "1957 Imperial Crown Handschuhfachklappe",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "8",
		"", "pd1253281992.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/PICT2602.JPG",
		120, 97,
		"139", "1957 Imperial Crown Wischwasserbeutel",
		"", "",
		"15", "1",
		"1", 1,
		"Stück", "8",
		"", "pd-458161098.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[11] = new Element(
		11, "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[12] = new Element(
		12, "assets/thumb/s000.jpg",
		120, 90,
		"141", "1988-96 GM Stepside Pickup Laderaumwanne/Bedliner",
		"", "",
		"150", "50",
		"1", 1,
		"Stück", "10",
		"", "pd181750269.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/s001.jpg",
		120, 90,
		"143", "Ford Ranger Laderaumwanne / bedliner",
		"", "",
		"150", "50",
		"1", 1,
		"Stück", "9",
		"", "pd1254228634.htm",
		"", 1,
		"Ford", "0",
		 0)
	
		Entry[14] = new Element(
		14, "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[15] = new Element(
		15, "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[16] = new Element(
		16, "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[17] = new Element(
		17, "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[18] = new Element(
		18, "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[19] = new Element(
		19, "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[20] = new Element(
		20, "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[21] = new Element(
		21, "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[22] = new Element(
		22, "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[23] = new Element(
		23, "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[24] = new Element(
		24, "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[25] = new Element(
		25, "assets/thumb/PICT3383.JPG",
		120, 87,
		"155", "1955-86 Jeep CJ Modelle Satz Kotflügelverbreiterungen",
		"", "",
		"50", "10",
		"1", 1,
		"Stück", "8",
		"", "pd-833090895.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/PICT3384.JPG",
		120, 44,
		"156", "1982-92 Pontiac Firebird Armaturenbrettabdeckung",
		"", "",
		"125", "10",
		"1", 1,
		"Stück", "10",
		"", "pd638686279.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[27] = new Element(
		27, "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[28] = new Element(
		28, "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[29] = new Element(
		29, "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[30] = new Element(
		30, "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[31] = new Element(
		31, "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[32] = new Element(
		32, "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[33] = new Element(
		33, "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[34] = new Element(
		34, "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[35] = new Element(
		35, "assets/thumb/PICT2605.JPG",
		120, 90,
		"175", "1957 Imperial Crown Luftfiltergehäuse",
		"", "",
		"50", "8",
		"1", 1,
		"Stück", "8",
		"", "pd1257864266.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/PICT2654.JPG",
		120, 82,
		"176", "1957 Imperial Crown Hupenring",
		"", "",
		"150", "2",
		"1", 1,
		"Stück", "8",
		"", "pd-1592745080.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/PICT2657.JPG",
		120, 90,
		"177", "1957 Imperial Crown türgriff aussen",
		"", "",
		"45", "1",
		"1", 1,
		"Stück", "8",
		"", "pd-972598026.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/PICT2668.JPG",
		120, 90,
		"178", "1957 Imperial Crown Kotflügelschriftzug",
		"", "",
		"75", "1",
		"1", 1,
		"Stück", "8",
		"", "pd-1715774444.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/PICT2604.JPG",
		120, 73,
		"179", "1957 Imperial Crown Dreieckfensterrahmen",
		"", "",
		"145", "6",
		"1", 1,
		"Stück", "8",
		"", "pd1048408162.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/PICT2611.JPG",
		120, 81,
		"180", "1957 Imperial Crown Schminkspiegel",
		"", "",
		"15", "1",
		"1", 1,
		"Stück", "8",
		"", "pd679155040.htm",
		"", 1,
		"Chrysler", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/s004.jpg",
		120, 90,
		"142-1", "Fullsize Pickup Truck Laderaumwanne/Bedliner",
		"", "",
		"150", "50",
		"1", 1,
		"Stück", "10",
		"", "pd-1960444967.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/s002.jpg",
		120, 90,
		"142", "Fullsize Pickup Truck Laderaumwanne/Bedliner",
		"", "",
		"150", "50",
		"1", 1,
		"Stück", "10",
		"", "pd1436587123.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[43] = new Element(
		43, "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[44] = new Element(
		44, "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[45] = new Element(
		45, "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[46] = new Element(
		46, "assets/thumb/PICT3572.JPG",
		120, 107,
		"208", "Buick 1957",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-891791634.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/PICT3574.JPG",
		120, 98,
		"209", "Plymouth",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd487919308.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/PICT3575.JPG",
		120, 93,
		"210", "Rambler",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd2012889562.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/PICT3576.JPG",
		120, 103,
		"211", "Cadillac",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "11",
		"", "pd2066949016.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/PICT3577.JPG",
		120, 84,
		"212", "Cadillac 1961",
		"", "",
		"65", "2",
		"1", 1,
		"Stück", "11",
		"", "pd507253638.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/PICT3578.JPG",
		120, 89,
		"213", "Cadillac 1962",
		"", "",
		"65", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1342800604.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/PICT3579.JPG",
		120, 81,
		"214", "Chevrolet",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd333428722.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/PICT3580.JPG",
		120, 97,
		"215", "Mercury",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1583159440.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/PICT3581.JPG",
		120, 97,
		"216", "Buick",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd2055068446.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/PICT3583.JPG",
		120, 96,
		"217", "Buick 1975",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd884010620.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/PICT3584.JPG",
		120, 91,
		"218", "Oldsmobile",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1745753846.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/PICT3585.JPG",
		120, 99,
		"219", "Oldsmobile ",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd2124013128.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/PICT3586.JPG",
		120, 105,
		"220", "Chevrolet",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1286288149.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/PICT3587.JPG",
		120, 97,
		"221", "Chevrolet",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-706608309.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/PICT3588.JPG",
		120, 93,
		"222", "Chevrolet Corvair",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd232613489.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/PICT3589.JPG",
		120, 104,
		"223", "Oldsmobile",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd164451847.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/PICT3590.JPG",
		120, 99,
		"224", "Mercury Cougar",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "11",
		"", "pd714631053.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/PICT3594.JPG",
		120, 103,
		"225", "Cadillac",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1454189699.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/PICT3595.JPG",
		120, 102,
		"226", "Dodge",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1045261719.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/PICT3596.JPG",
		120, 99,
		"227", "Mercury Cougar",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1859173697.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/PICT3597.JPG",
		120, 105,
		"228", "Dodge",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1560280315.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/PICT0229.JPG",
		120, 90,
		"290", "1960 Chevrolet Station Wagon  Ersatzteilpaket",
		"", "",
		"125", "10",
		"1", 1,
		"Stück", "10",
		"", "pd1317373478.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/PICT0239.JPG",
		120, 90,
		"292", "1968 Chevrolet Caprice Ersatzteilpaket",
		"", "",
		"125", "15",
		"1", 1,
		"Stück", "10",
		"", "pd1587188882.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/PICT0238.JPG",
		120, 90,
		"293", "1969 Buick Skylark Ersatzteilpaket",
		"", "",
		"125", "15",
		"1", 1,
		"Stück", "10",
		"", "pd802657552.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/PICT0241.JPG",
		120, 90,
		"294", "1963 Chevrolet Impala Ersatzteilpaket",
		"", "",
		"140", "15",
		"1", 1,
		"Stück", "10",
		"", "pd719634878.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/PICT0232.JPG",
		120, 90,
		"295", "1962 Oldsmobile Super 88 Ersatzteilpaket",
		"", "",
		"125", "15",
		"1", 1,
		"Stück", "10",
		"", "pd1633203740.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/PICT3599.JPG",
		120, 102,
		"230", "Oldsmobile",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-2001824415.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/PICT3600.JPG",
		120, 104,
		"232", "Dodge ",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1670372983.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/PICT3602.JPG",
		120, 112,
		"234", "Dodge",
		"", "",
		"22", "2",
		"1", 1,
		"Stück", "11",
		"", "pd612146163.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/PICT3604.JPG",
		120, 105,
		"235", "Oldsmobile",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-770748583.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/PICT3605.JPG",
		120, 100,
		"236", "Plymouth",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "11",
		"", "pd501221679.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/PICT3606.JPG",
		120, 97,
		"237", "De Soto",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1432752395.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/PICT3607.JPG",
		120, 101,
		"238", "Lincoln",
		"", "",
		"22", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-968711637.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/PICT3608.JPG",
		120, 104,
		"239", "Chevrolet Corvair",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd539926609.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/PICT3609.JPG",
		120, 96,
		"240", "Plymouth",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1785945369.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/PICT3609.JPG",
		120, 96,
		"241", "Dodge",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1286440431.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/PICT3610.JPG",
		120, 97,
		"242", "Rambler 1962",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1077852597.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/PICT3613.JPG",
		120, 105,
		"243", "Pontiac",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd940010219.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/PICT3614.JPG",
		120, 102,
		"244", "Pontiac",
		"", "",
		"22", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1632343825.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/PICT3615.JPG",
		120, 90,
		"245", "DeSoto 1958",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1766492249.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/PICT3616.JPG",
		120, 93,
		"246", "Cadillac 1962",
		"", "",
		"40", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1546641965.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/PICT3617.JPG",
		120, 108,
		"247", "Mercury 1959",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1002940451.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/PICT3618.JPG",
		120, 97,
		"248", "Chevrolet 1973",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1494485239.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/PICT3619.JPG",
		120, 102,
		"249", "Chrysler",
		"", "",
		"45", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1893353377.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/PICT3620.JPG",
		120, 101,
		"250", "Plymouth 1959",
		"", "",
		"40", "2",
		"1", 1,
		"Stück", "11",
		"", "pd2132668837.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/PICT3621.JPG",
		120, 106,
		"251", "Dodge 1948",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-2004147109.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/PICT3622.JPG",
		120, 107,
		"252", "Pontiac ",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-849498623.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/PICT3623.JPG",
		120, 116,
		"253", "Oldsmobile Toronado",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "11",
		"", "pd843261975.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/PICT3624.JPG",
		120, 96,
		"254", "Chrysler",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-698824675.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/PICT3625.JPG",
		120, 87,
		"255", "Mercury",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1348157549.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/PICT3626.JPG",
		120, 90,
		"256", "Oldsmobile",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd363764729.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/PICT3627.JPG",
		120, 104,
		"257", "Oldsmobile 1976",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-2091997489.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/PICT3628.JPG",
		120, 102,
		"258", "Lincoln",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1586251157.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/PICT3629.JPG",
		120, 113,
		"259", "Chevrolet Malibu 1982",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1859954229.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/PICT3630.JPG",
		120, 112,
		"260", "Mercury",
		"", "",
		"25", "2",
		"1", 1,
		"Stück", "11",
		"", "pd503881969.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/PICT3631.JPG",
		120, 115,
		"261", "Oldsmobile 1967",
		"", "",
		"22", "2",
		"1", 1,
		"Stück", "11",
		"", "pd402986119.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/PICT3632.JPG",
		120, 107,
		"262", "Pontiac",
		"", "",
		"45", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1530939917.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/PICT3634.JPG",
		120, 106,
		"263", "Oldsmobile",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1622027517.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/PICT3635.JPG",
		120, 104,
		"264", "Oldsmobile",
		"", "",
		"45", "3",
		"1", 1,
		"Stück", "11",
		"", "pd-785277719.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/PICT3636.JPG",
		120, 104,
		"265", "Chrysler Cordoba",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1809886913.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/PICT3637.JPG",
		120, 109,
		"266", "Pontiac",
		"", "",
		"22", "2",
		"1", 1,
		"Stück", "11",
		"", "pd1046001029.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/PICT3638.JPG",
		120, 111,
		"267", "Mercury",
		"", "",
		"30", "2",
		"1", 1,
		"Stück", "11",
		"", "pd305597243.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/PICT3639.JPG",
		120, 124,
		"268", "Chevrolet 1970",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-972328991.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/PICT3640.JPG",
		120, 112,
		"269", "Ford Mustang",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd349322487.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/PICT3641.JPG",
		120, 113,
		"270", "DeSoto 1957",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-6985731.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/PICT3642.JPG",
		120, 111,
		"271", "Dodge",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd185983603.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/PICT3643.JPG",
		120, 107,
		"272", "Buick",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd252967385.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/PICT3644.JPG",
		120, 105,
		"273", "Plymouth",
		"", "",
		"18", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1940998225.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/PICT3645.JPG",
		120, 108,
		"274", "Plymouth 1976",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-468565643.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/PICT3646.JPG",
		120, 101,
		"275", "Plymouth",
		"", "",
		"20", "2",
		"1", 1,
		"Stück", "11",
		"", "pd-1477625685.htm",
		"", 1,
		"Radkappen", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/PICT3658.JPG",
		120, 83,
		"276", "1958 Chevrolet Kofferraumbodenblech rechts",
		"", "",
		"150", "15",
		"1", 1,
		"Stück", "10",
		"", "pd1288622439.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/PICT3659.JPG",
		120, 84,
		"277", "1958 Chevrolet Kofferraumbodenblech links",
		"", "",
		"150", "15",
		"1", 1,
		"Stück", "10",
		"", "pd2128073197.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/PICT3661.JPG",
		120, 103,
		"278", "Türdichtgummis 1958 GM Fullsize 2 door hardtop ",
		"", "",
		"100", "2",
		"1", 1,
		"Stück", "10",
		"", "pd-1825038877.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/PICT3662.JPG",
		120, 124,
		"279", "Roofraildichtgummis 1958 Chevrolet, Pontiac,Oldsmobile",
		"", "",
		"65", "2",
		"1", 1,
		"Stück", "10",
		"", "pd-1884265783.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/PICT3663.JPG",
		120, 87,
		"280", "1958 Chevrolet Kotflügelgummi",
		"", "",
		"21", "1",
		"1", 1,
		"Stück", "10",
		"", "pd-1468593633.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/PICT3664.JPG",
		120, 92,
		"281", "1958 Chevrolet Spritzschutzlappen",
		"", "",
		"35", "2",
		"1", 1,
		"Stück", "10",
		"", "pd-258041499.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/PICT3665.JPG",
		120, 99,
		"282", "1958-60 Chevrolet Feuerwanddichtgummi",
		"", "",
		"21", "1",
		"1", 1,
		"Stück", "10",
		"", "pd778244635.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/PICT3666.JPG",
		120, 91,
		"283", "1955-64 GM Fullsize Fenderskirt Dichtgummis",
		"", "",
		"28", "1",
		"1", 1,
		"Stück", "10",
		"", "pd834032065.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/PICT3667.JPG",
		120, 89,
		"284", "1957 Chevrolet Kotflügeldichtgummi",
		"", "",
		"36", "1",
		"1", 1,
		"Stück", "10",
		"", "pd-1826393641.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/PICT3668.JPG",
		120, 101,
		"285", "1958 GM Station Scheibendichtgummi",
		"", "",
		"225", "2",
		"1", 1,
		"Stück", "10",
		"", "pd-1897846819.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/PICT3669.JPG",
		120, 75,
		"286", "1958-60 Chevrolet Türdichtgummis",
		"", "",
		"38", "1",
		"1", 1,
		"Stück", "10",
		"", "pd866854227.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/PICT3672.JPG",
		120, 90,
		"287", "1958 GM Fullsize Kofferdeckeldichtgummi",
		"", "",
		"39", "1",
		"1", 1,
		"Stück", "10",
		"", "pd1186625465.htm",
		"", 1,
		"GM", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/PICT0244.JPG",
		120, 90,
		"296", "1973 Oldsmobile Toronado Ersatzteilpaket",
		"", "",
		"100", "15",
		"1", 1,
		"Stück", "10",
		"", "pd1462335914.htm",
		"", 1,
		"GM", "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();
			};
		};
