	// 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="147" height="18" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Pret vechi&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>Pret REDUS:&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 += "Pret la cerere";
			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/cl63albsm.jpg",
		107, 54,
		"76169", "Mercedes-Benz CL 63 AMG 1/18",
		"AUTOart", "Autoart",
		"4000000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Alb@", "pd1090122150.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/AudiV8big.jpg",
		107, 54,
		"A$V8", "1991 Audi Quattro V8 DTM #1 1/18",
		"MInichamps", "Minichamps",
		"3000000", "0",
		"1", 1,
		"buc", "23",
		"", "pd1209233202.htm",
		"", 1,
		"Minichamps", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/18105-2.jpg",
		107, 62,
		"SG 0001", "1917 Reo M Touring 1/18",
		"SignatureModels", "Signature",
		"1800000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Alb@", "pd1343691202.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/rangesm.jpg",
		107, 80,
		"ER3550", "Range Rover 1/18",
		"ERTL", "ERTL",
		"2000000", "0",
		"1", 1,
		"buc", "10",
		"Culoare;Bleumarin@", "pd1464571234.htm",
		"", 1,
		"ERTL", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/vetesm57.jpg",
		107, 45,
		"RL1006", "1957 Chevrolet Corvette 1/18",
		"Road Legends", "Road Signature",
		"1400000", "0",
		"1", 1,
		"buc", "29",
		"", "pd-485686289.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/enzosm.JPG",
		107, 59,
		"HW292", "Ferrari Enzo 1/18",
		"Hotwheels", "Hotwheels",
		"2000000", "0",
		"1", 1,
		"buc", "16",
		"Culoare;Rosu@", "pd-963237386.htm",
		"", 1,
		"machete 1", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/wl2533sl.jpg",
		107, 60,
		"Wl89332", "VW Passat 1/18",
		"Welly", "Welly",
		"1300000", "0",
		"1", 1,
		"buc", "34",
		"Culoare;Argintiu@", "pd291704418.htm",
		"", 1,
		"Welly", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/T1blue.jpg",
		107, 54,
		"AA70901", "Bugatti Veyron 16.4 Production Model  1/18 ",
		"AUTOart", "Autoart",
		"7000000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Albastru@", "pd1112033673.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/jaguarxjs.jpg",
		107, 81,
		"92658", "1975 Jaguar XJS 1/18",
		"Road Signature", "Road Signature",
		"1300000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Alb@", "pd-1035045009.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/edselsm.jpg",
		107, 80,
		"92844", "1958 Ford Edsel Citation Convertible 1/18",
		"Road Signature", "Signature",
		"1500000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Rosu@", "pd477609105.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/F430x.jpg",
		107, 38,
		"HW21991", "Ferrari F430 1/18",
		"Hotwheels", "Hotwheels",
		"2000000", "0",
		"1", 1,
		"buc", "16",
		"Culoare;Rosu@", "pd1043002612.htm",
		"", 1,
		"machete 1", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/pontiac deluxesm.JPG",
		107, 80,
		"SG 0011", "1936 Pontiac Delux 1/18",
		"SignatureModels", "Signature",
		"1500000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Verde@", "pd1551923051.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/ponton negru.JPG",
		107, 80,
		"Re8876", "Mercedes-Benz 180 &quot; Ponton&quot; 1/18",
		"Revell", "Revell",
		"2000000", "0",
		"1", 1,
		"buc", "28",
		"Culoare;Negru@", "pd1429967297.htm",
		"", 1,
		"Revell", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/18111sm.jpg",
		107, 80,
		"SG31001", "1955 Chrysler Imperial 1/18",
		"SignatureModels", "Signature",
		"1800000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Crem@", "pd-754846375.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/dusm.jpg",
		107, 81,
		"SG32-1", "1934 Duesenberg 1/18",
		"SignatureModels", "Signature",
		"2000000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Verde@", "pd139013394.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/M6blue.jpg",
		107, 60,
		"KY32001", "BMW M6 cabriolet 1/18",
		"Kyosho", "Kyosho",
		"3000000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Albastru@", "pd487063483.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/fuzeteal.JPG",
		107, 79,
		"IW3", "Fuzete fata aluminiu ",
		"Iwaver", "",
		"400000", "0",
		"1", 1,
		"buc", "57",
		"", "pd-1435527810.htm",
		"0::1::200000;", 1,
		"Iwaver", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/amortizoarealum.JPG",
		107, 78,
		"IW6", "Amortizoare spate aluminiu",
		"Iwaver", "",
		"300000", "0",
		"1", 1,
		"buc", "57",
		"", "pd-2014743128.htm",
		"0::1::150000;", 1,
		"Iwaver", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/DS23blue.jpg",
		107, 62,
		"NV310", "Citroen DS23 1/18",
		"Norev", "Norev",
		"2000000", "0",
		"1", 1,
		"buc", "26",
		"Culoare;Albastru@", "pd430575153.htm",
		"", 1,
		"Norev", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/riviera.jpg",
		107, 80,
		"RL203", "1971 Buick Riviera 1/18",
		"Road Signature", "Road Signature",
		"1500000", "0",
		"1", 1,
		"buc", "29",
		"", "pd1136233952.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/tuckersm.jpg",
		107, 46,
		"RL023983", "1948 Tucker Torpedo 1/18",
		"Road Signature", "Road Signature",
		"1400000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Albastru@", "pd1493265446.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/clsdarkgrey red insidesm.JPG",
		107, 80,
		"KY840", "Mercedes-Benz CLS 1/18",
		"Kyosho", "Kyosho",
		"3500000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Argintiu@", "pd-117159058.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/03072008(003).jpg",
		107, 80,
		"8963-042", "Set bascule inferioare spate pentru H8963 1/8",
		"8963-042", "",
		"300000", "0",
		"1", 1,
		"buc", "56",
		"", "pd-763528576.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/ME12.jpg",
		107, 64,
		"MM3191", "Chrysler ME Four Twelve 1/18",
		"MotorMax", "MotorMAx",
		"1000000", "0",
		"1", 1,
		"buc", "25",
		"Culoare;Negru@", "pd-2141104940.htm",
		"", 1,
		"MotorMax", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/92608gn.jpg",
		107, 49,
		"RL3255", "1971 Jaguar E-type 1/18",
		"Road Signature", "Road Signature",
		"1300000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Verde@", "pd1236062062.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/03072008(004).jpg",
		107, 80,
		"8963-041", "Set bascule fata st/dr inferioare pentru H8963 1/8",
		"8963-041", "",
		"300000", "0",
		"1", 1,
		"buc", "56",
		"", "pd-1793792850.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/03072008(005).jpg",
		107, 80,
		"8963-045", "Set fuzete aluminiu pentru H8963 1/8",
		"8963-045", "",
		"300000", "0",
		"1", 1,
		"buc", "56",
		"", "pd1524847244.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/03072008(007).jpg",
		107, 80,
		"8963-044", "C-hub pentru H8963 1/8",
		"8963-044", "",
		"200000", "0",
		"1", 1,
		"buc", "56",
		"", "pd-1849087078.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/102141.jpg",
		107, 93,
		"kl08", "Automodel SPURT Nitro 4WD Truggy 1/8  RTR ",
		"KL-MODEL", "KL",
		"12400000", "0",
		"1", 1,
		"buc", "49",
		"", "pd1281830395.htm",
		"1::1::20;", 1,
		"termic", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/02122006(050).jpg",
		107, 80,
		"1154-1", "Rulment 11x5x4 mm",
		"1154", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1500532071.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/8188.gif",
		106, 50,
		"S12", "Renault 12 Gordini (Dacia 1300) Metalic Box  1/18",
		"Solido", "Solido",
		"1800000", "0",
		"1", 1,
		"buc", "32",
		"", "pd1475035832.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/18123-4sm.JPG",
		107, 59,
		"SG832", "1950 Mercedes 170S 1/18",
		"SignatureModels", "Signature",
		"1500000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Rosu@", "pd497090979.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/02122006(050).jpg",
		107, 80,
		"1154-2", "Rulment 11x5x4 mm",
		"1154", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd398204527.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/02122006(050).jpg",
		107, 80,
		"1154-3", "Rulment 11x5x4 mm",
		"1154", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1681848779.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/miura orangesm.JPG",
		107, 58,
		"KYj400", "Lamborghini Miura P400 SV 1/18",
		"Kyosho", "Kyosho",
		"3500000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Orange@", "pd1868619500.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/cuntachred.jpg",
		107, 71,
		"KY400", "Lamborghini Countach LP500S 1/18",
		"Kyosho", "Kyosho",
		"3000000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Rosu@", "pd808599027.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/213738_1.jpg",
		107, 71,
		"Ky81A", "Audi A8 W12 1/18",
		"Kysoho", "Kyosho",
		"3500000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Auriu@", "pd124485877.htm",
		"1::1::20;", 1,
		"Kyosho", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/umbrela3sm.jpg",
		107, 54,
		"40118", "Umbrela cu maner schimbator de viteze cu amortizor",
		"AUTOart", "Autoart",
		"2350000", "0",
		"1", 1,
		"buc", "3",
		"", "pd-28924109.htm",
		"1::2::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/40324d1.jpg",
		107, 54,
		"40325-1", "Ceas cu pix",
		"AUTOart", "Autoart",
		"2000000", "0",
		"1", 1,
		"buc", "3",
		"", "pd1720172372.htm",
		"", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/desfsm.jpg",
		107, 54,
		"44001-1", "Desfacator sticle ",
		"AUTOart", "Autoart",
		"650000", "0",
		"1", 1,
		"buc", "3",
		"", "pd-1968382790.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/scaunsm.jpg",
		107, 54,
		"40267-1", "Scaun Recaro",
		"AUTOart", "Autoart",
		"1250000", "0",
		"1", 1,
		"buc", "3",
		"", "pd1429889022.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/scrumiera2sm.jpg",
		107, 54,
		"40244-1", "Scrumiera prezon",
		"AUTOart", "Autoart",
		"2400000", "0",
		"1", 1,
		"buc", "3",
		"", "pd1662094998.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Toiletpapersm.jpg",
		107, 54,
		"40131-1", "Suport hartie baie",
		"", "Autoart",
		"1850000", "0",
		"1", 1,
		"buc", "3",
		"", "pd1131532800.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/hartiesm.jpg",
		107, 54,
		"40136-1", "Suport hartie bucatarie",
		"AUTOart", "Autoart",
		"2250000", "0",
		"1", 1,
		"buc", "3",
		"", "pd856623150.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/umbrela2sm.jpg",
		107, 54,
		"40114-1", "Umbrela cu maner cu led",
		"AUTOart", "Autoart",
		"2350000", "0",
		"1", 1,
		"buc", "3",
		"", "pd-381122790.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/renault8sblue.jpg",
		107, 82,
		"SL8", "Renault 8 Gordini (Dacia 1100) 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"Culoare;Albastru@", "pd-84652522.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/suportbaiesm.jpg",
		107, 54,
		"AA444", "Suport prosop baie",
		"AUTOart", "Autoart",
		"650000", "0",
		"1", 1,
		"buc", "3",
		"", "pd1160837282.htm",
		"1::1::20;", 1,
		"Cadouri si", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/2000toring sm.jpg",
		107, 54,
		"AA70681", "BMW 2000 Touring 1/18",
		"AUTOart", "Autoart",
		"3330000", "0",
		"1", 1,
		"buc", "5",
		"", "pd1573302863.htm",
		"1::1::40;", 1,
		"Autoart", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/vette53bih.jpg",
		107, 54,
		"AA21442", "Chevrolet Corvette 1953 1/18",
		"AUTOart", "Autoart",
		"3400000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Alb@", "pd218426331.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/599f.jpg",
		107, 74,
		"HW23212", "Ferrari 599 GTB 1/18",
		"Hotwheels", "Hotwheels",
		"2000000", "0",
		"1", 1,
		"buc", "16",
		"Culoare;Rosu@", "pd1143338603.htm",
		"", 1,
		"machete 1", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Tfiresm.jpeg",
		107, 71,
		"RL20038", "1914 Ford T Fire Engine 1/18",
		"Road Signature", "Road Signature",
		"2800000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Rosu@", "pd187053062.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/s pullman.JPG",
		107, 81,
		"SN211", "Mercedes S-class Pullman 1/18",
		"Sunstar", "Sunstar",
		"2800000", "0",
		"1", 1,
		"buc", "33",
		"Culoare;Argintiu@", "pd-1439025145.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/203322_1.jpg",
		107, 59,
		"SN832", "1981 Ford Escort Mk3 1/18",
		"Sunstar", "Sunstar",
		"2000000", "0",
		"1", 1,
		"buc", "33",
		"Culoare;Maro@", "pd632328162.htm",
		"1::1::40;", 1,
		"Sunstar", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/horsch1.jpg",
		107, 62,
		"SN8942", "1939 Horch 855 Spezial Roadster 1/18",
		"Sunstar", "Sunstar",
		"2600000", "0",
		"1", 1,
		"buc", "33",
		"Culoare;Negru@", "pd-1296980127.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/meharism.JPG",
		107, 66,
		"NV4356", "Citroen Mehari 1/18",
		"Norev", "Norev",
		"1800000", "0",
		"1", 1,
		"buc", "26",
		"Culoare;Verde@", "pd2116004872.htm",
		"", 1,
		"Norev", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/r5sm.JPG",
		107, 107,
		"SL832", "Renault 5 Alpine 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"Culoare;Negru@", "pd1552040439.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/ford falcon futura.JPG",
		107, 58,
		"SS89432", "Ford Falcon cabrio 1963 1/18",
		"Sunstar", "Sunstar",
		"2000000", "0",
		"1", 1,
		"buc", "33",
		"Culoare;Rosu@", "pd-138808710.htm",
		"1::1::40;", 1,
		"Sunstar", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/scare.jpg",
		107, 74,
		"JT321", "1963 Cadillac Series 62 SCARFACE 1/18",
		"JadaToys", "Jadatoys",
		"2000000", "0",
		"1", 1,
		"buc", "19",
		"", "pd-1334881555.htm",
		"", 1,
		"Jadatoys", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/riviera white.jpg",
		107, 74,
		"HG50371 ", "1964 Buick Riviera 1/18",
		"Highway61", "Highway61",
		"3400000", "0",
		"1", 1,
		"buc", "15",
		"Culoare;Rosu@", "pd598320750.htm",
		"1::1::20;", 1,
		"Highway 61", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/golf5smred.jpg",
		107, 70,
		"Wl872", "VW Golf 5 1/18",
		"Welly", "Welly",
		"1300000", "0",
		"1", 1,
		"buc", "34",
		"Culoare;Rosu@", "pd-1285412063.htm",
		"", 1,
		"Welly", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/delorean.JPG",
		107, 80,
		"SS5432", "1981 De Lorean LK 1/18",
		"Sunstar", "Sunstar",
		"2400000", "0",
		"1", 1,
		"buc", "33",
		"", "pd-1554706834.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/02122006(028).jpg",
		107, 80,
		"101111-1", "Arbore Central pentru KL-02, KL-07, KL-04",
		"101111", "",
		"300000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-102687863.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/meganers2009sm.JPG",
		107, 60,
		"SL042", "Renault Megane Trophy 2009 1/18",
		"Solido", "Solido",
		"2000000", "0",
		"1", 1,
		"buc", "32",
		"", "pd1188308081.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Dukes39181_L.jpg",
		107, 53,
		"ERT4", "Dodge Charger from Dukes of Hazzard 1/18",
		"ERTL", "ERTL",
		"1800000", "0",
		"1", 1,
		"buc", "10",
		"", "pd-1607681876.htm",
		"", 1,
		"ERTL", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/bussm.jpg",
		107, 71,
		"RS33", "1962 VW Microbus Sunroof edition 1/18",
		"Road Signature", "Road Signature",
		"1500000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Rosu@", "pd170852587.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/fiat 500.jpg",
		107, 81,
		"MM2", "Fiat 500 2007 1/18",
		"Mondo Motors", "MondoMotors",
		"1100000", "0",
		"1", 1,
		"buc", "24",
		"Culoare;Rosu@", "pd-1677517272.htm",
		"", 1,
		"Mondo", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/71131a1.jpg",
		107, 54,
		"AA71131", "Chevrolet Corvette Mako Shark 1961 1/18",
		"AUTOart", "Autoart",
		"3500000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Albastru@", "pd309337827.htm",
		"1::1::20;", 1,
		"Autoart", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/02122006(028).jpg",
		107, 80,
		"101111-2", "Arbore Central pentru KL-02, KL-07, KL-04",
		"101111", "",
		"300000", "0",
		"1", 1,
		"buc", "59",
		"", "pd2040623327.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/cHEYENNE.jpg",
		107, 74,
		"50560", "1972 Chevy Cheyenne Pickup 1/18",
		"Highway61", "Highway61",
		"3500000", "0",
		"1", 1,
		"buc", "15",
		"", "pd-1272256165.htm",
		"", 1,
		"Highway 61", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/images/nopicture.gif",
		75, 50,
		"101096-1", "Arbore Intermediar pentru KL-02 KL-07",
		"101096", "",
		"100000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1082694437.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/q7sm.jpg",
		107, 65,
		"Ky7", "Audi Q7 1/18",
		"Kyosho", "Kyosho",
		"3000000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Alb@", "pd778490952.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/isseta campasm.JPG",
		107, 72,
		"RE4546", "BMW Isetta 250 1/18",
		"Revell", "Revell",
		"2400000", "0",
		"1", 1,
		"buc", "28",
		"", "pd2096546651.htm",
		"", 1,
		"Revell", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/images/nopicture.gif",
		75, 50,
		"101096-2", "Arbore Intermediar pentru KL-02 KL-07",
		"101096", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"", "pd26600065.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/08854sm.JPG",
		104, 58,
		"RE9455", "1961 Mercedes-Benz 300 SE Heckflosse 1/18 &quot;Invechit&quot;",
		"Revell", "Revell",
		"2400000", "0",
		"1", 1,
		"buc", "28",
		"", "pd-1118935807.htm",
		"", 1,
		"Revell", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/mgsm.jpg",
		107, 68,
		"RS415", "1947 MG TC Midget 1/18",
		"Road Signature", "Road Signature",
		"1300000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Rosu@", "pd445729819.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/300C.JPG",
		107, 81,
		"MM73160", "1955 Chrysler 300C 1/18",
		"MotorMax", "MotorMAx",
		"1100000", "0",
		"1", 1,
		"buc", "25",
		"Culoare;Negru@", "pd-2094898324.htm",
		"", 1,
		"MotorMax", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/109619_1.jpg",
		107, 67,
		"YT911", "1955 Ford Thunderbird 1/18",
		"Road Signature", "Road Signature",
		"1200000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Galben@", "pd-146789604.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/101541kl06.jpg",
		107, 93,
		"HH", "Automodel KL-06 Nitro 4WD On-road 1/10 RTR",
		"KL Model", "KL",
		"7900000", "0",
		"1", 1,
		"buc", "49",
		"", "pd1810590212.htm",
		"", 1,
		"termic", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/ec-2028-1.jpg",
		107, 125,
		"C18", "Automodel C18 Electric 4WD On-road 1/18 RTR",
		"HaiBoxing", "",
		"3800000", "0",
		"1", 1,
		"buc", "48",
		"", "pd1197648467.htm",
		"", 1,
		"Electrice", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/02122006(050).jpg",
		107, 80,
		"1154", "Rulment 11x5x4 mm",
		"1154", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-517128830.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/02122006(017).jpg",
		107, 80,
		"8860-066", "Set 2 amortizoare pentru H8860",
		"8860-066", "",
		"300000", "0",
		"1", 1,
		"buc", "55",
		"", "pd1336900806.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/02122006(003).jpg",
		107, 80,
		"8860-068", "Diferential cu frecare limitata complet pentru H8860",
		"8860-068", "",
		"400000", "0",
		"1", 1,
		"buc", "55",
		"", "pd2035615844.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/02122006(073).jpg",
		107, 80,
		"101108-3", "Suport Servomecanism pentru KL-02, KL-07,KL-06",
		"101108", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd798353790.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/02122006(082).jpg",
		107, 80,
		"101053-4", "Set Articluatii Bascule pentru KL-07 Kl-06,05,04,02",
		"101053", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-2808868.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/02122006(024).jpg",
		107, 80,
		"101016-4", "Set Fuzete fata St/Dr KL-07 KL-02, KL-06, KL-05, KL-04",
		"101016", "",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-423977622.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/02122006(026).jpg",
		107, 80,
		"101017-4", "Set Fuzete spate St/Dr KL-02 KL-07 KL-06 KL-05 KL-04",
		"101017", "",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd112667048.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/images/nopicture.gif",
		75, 50,
		"101019-4", "Set Pivoti pentru KL-02 KL-07 KL-05 KL-04 KL-06",
		"101019", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd436586518.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/02122006(073).jpg",
		107, 80,
		"101108-4", "Suport Servomecanism pentru KL-02, KL-07,KL-06",
		"101108", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd921142324.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/02122006(058).jpg",
		107, 80,
		"8860-002", "Suport Amortizoare fata pentru HH8860",
		"8860-002", "",
		"250000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-1362187835.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/02122006(053).jpg",
		107, 80,
		"8860-003", "Suport Amortizoare spate pentru H8860",
		"8860-003", "",
		"200000", "0",
		"1", 1,
		"buc", "55",
		"", "pd1770257568.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/images/nopicture.gif",
		75, 50,
		"8860-014", "Toba  motor 3cc H8860",
		"8860-014", "",
		"800000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-428069702.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/02122006(021).jpg",
		107, 80,
		"8860-024", "Placute de frana pentru H8860",
		"8860-024", "",
		"100000", "0",
		"1", 1,
		"buc", "55",
		"", "pd521665049.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/02122006(064).jpg",
		107, 80,
		"8860-027", "Set Bascule Fata Superioare pentru H8860",
		"8860-027", "",
		"200000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-1993625105.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/02122006(051).jpg",
		107, 80,
		"8860-028", "Set Bascule Fata Inferioare pentru H8860",
		"8860-028", "",
		"200000", "0",
		"1", 1,
		"buc", "55",
		"", "pd538494389.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/02122006(054).jpg",
		107, 80,
		"8860-025", "Pin Bascule Fata/Spate Tip A pentru H8860",
		"8860-025", "",
		"100000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-1105176853.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/02122006(060).jpg",
		107, 80,
		"8860-026", "Pin bascule Fata/Spate Tip B pentru H8860",
		"8860-026", "",
		"100000", "0",
		"1", 1,
		"buc", "55",
		"", "pd2000577297.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/images/nopicture.gif",
		75, 50,
		"8860-029", "Set Bascule spate inferioare pentru H8860",
		"8860-029", "",
		"200000", "0",
		"1", 1,
		"buc", "55",
		"", "pd1268065191.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/02122006(062).jpg",
		107, 80,
		"8860-031", "Set Pivoti tip A pentru H8860",
		"8860-031", "",
		"150000", "0",
		"1", 1,
		"buc", "55",
		"", "pd1095200301.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/images/nopicture.gif",
		75, 50,
		"8860-032", "Set Pivoti tip B pentru H8860",
		"8860-032", "",
		"150000", "0",
		"1", 1,
		"buc", "55",
		"", "pd257561635.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/02122006(100).jpg",
		107, 80,
		"8860-033", "Aripa Deportanta pentru H8860",
		"8860-033", "",
		"150000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-51100919.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/images/nopicture.gif",
		75, 50,
		"8860-034", "Sistem Directie  H8860",
		"8860-034", "",
		"150000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-1474894753.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/02122006(032).jpg",
		107, 80,
		"8860-035", "Set fuzete fata pentru H8860",
		"8860-035", "",
		"150000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-56427099.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/images/nopicture.gif",
		75, 50,
		"8860-044", "Bumper fata si spate pentru H8860",
		"8860-044", "",
		"150000", "0",
		"1", 1,
		"buc", "55",
		"", "pd809963611.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/images/nopicture.gif",
		75, 50,
		"8860-054", "Tub elastic toba H8860",
		"8860-054", "",
		"100000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-1971333350.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/4roti lrp.jpg",
		107, 142,
		"LRp1", "Set 4 roti Touring 1/10",
		"LRP", "",
		"1000000", "0",
		"1", 1,
		"buc", "60",
		"Suprafata;Mocheta@", "pd1214165841.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/LamborghiniMiuraP4001.jpg",
		107, 80,
		"8312GL", "Lamborghini Miura P400  1/18",
		"Kyosho lim. ed. 1/1686 buc", "Kyosho",
		"4200000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Auriu@", "pd1344157332.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/camaro.jpg",
		107, 80,
		"JT22", "2010 Chevrolet Camaro SS 1/18",
		"Jada Toys", "Jadatoys",
		"1800000", "0",
		"1", 1,
		"buc", "19",
		"", "pd1274362107.htm",
		"", 1,
		"Jadatoys", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/smheli.jpg",
		93, 64,
		"PALe", "Pale Elicopter ",
		"Ninco Air", "",
		"200000", "0",
		"1", 1,
		"buc", "65",
		"", "pd1278945841.htm",
		"", 1,
		"R/C Elicop", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/e500sm.JPG",
		107, 64,
		"N545", "Mercedes-Benz E500 Coupe 1/18",
		"NOREV High Quality", "Norev",
		"2400000", "0",
		"1", 1,
		"buc", "26",
		"", "pd1280925633.htm",
		"", 1,
		"Norev", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/02122006(005).jpg",
		107, 80,
		"101021-1", "Carcasa Diferential pentru KL-02 ,KL-07,KL-06",
		"101021", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1388438118.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/sasiuplinf.JPG",
		107, 79,
		"2801", "Sasiu pentru C18",
		"2801", "Haiboxing",
		"400000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1666117716.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/sasiuplsup.JPG",
		107, 70,
		"2802", "Placa Superioara C18",
		"Haiboxing", "",
		"200000", "0",
		"1", 1,
		"buc", "52",
		"", "pd745317811.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/carcdif.JPG",
		107, 68,
		"2804", "Carcasa Diferential si planetare pentru C18",
		"2804", "Haiboxing",
		"400000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1892847847.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/28102009(002).jpg",
		107, 80,
		"2805", "Set Bascule si fuzete pentru C18",
		"C18", "Haiboxing",
		"300000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1754124561.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/images/nopicture.gif",
		75, 50,
		"2808", "Traversa amortizoare pentru C18",
		"2808", "",
		"200000", "0",
		"1", 1,
		"buc", "52",
		"", "pd1125616309.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/images/nopicture.gif",
		75, 50,
		"2809", "Set roti dintate diferential pentru C18",
		"2809", "",
		"200000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-367922608.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/jante.JPG",
		107, 69,
		"2821", "Set 4 jante pentru C18",
		"2821", "Haiboxing",
		"200000", "0",
		"1", 1,
		"buc", "52",
		"", "pd1806917886.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/anvelope.JPG",
		107, 69,
		"2822", "Set 4 anvelope pentru C18",
		"2822", "Haiboxing",
		"200000", "0",
		"1", 1,
		"buc", "52",
		"", "pd2107467612.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/images/nopicture.gif",
		75, 50,
		"2813", "Pinion 17T pentru C18",
		"2813", "",
		"150000", "0",
		"1", 1,
		"buc", "52",
		"", "pd1778879942.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/217056_1.jpg",
		107, 43,
		"SS8433", "1981 Checker A11 Los Angeles, Taxi  1/18",
		"Sunstar", "Sunstar",
		"1800000", "0",
		"1", 1,
		"buc", "33",
		"", "pd-532031211.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/rancherosm.JPG",
		107, 81,
		"RS832", "1957 Ford Ranchero 1/18",
		"Road Signature", "Road Signature",
		"1300000", "0",
		"1", 1,
		"buc", "29",
		"", "pd-359179352.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/25072008(003).jpg",
		107, 80,
		"101002", "Set 2 roti pentru Buggy 1/10",
		"101002", "",
		"300000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1207227352.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/02122006(005).jpg",
		107, 80,
		"101021-2", "Carcasa Diferential pentru KL-02 ,KL-07,KL-06",
		"101021", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-187603624.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/02122006(005).jpg",
		107, 80,
		"101021-3", "Carcasa Diferential pentru KL-02 ,KL-07,KL-06",
		"101021", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd781396806.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/02122006(005).jpg",
		107, 80,
		"101021-4", "Carcasa Diferential pentru KL-02 ,KL-07,KL-06",
		"101021", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-867542300.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/02122006(002).jpg",
		107, 80,
		"101020-1", "Carcasa Transmisie pentru KL-02, KL-07, KL-06,KL-05, KL-04",
		"101020", "",
		"150000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1216910541.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/02122006(002).jpg",
		107, 80,
		"101020-2", "Carcasa Transmisie pentru KL-02, KL-07, KL-06,KL-05, KL-04",
		"101020", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-815391805.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/02122006(002).jpg",
		107, 80,
		"101020-3", "Carcasa Transmisie pentru KL-02, KL-07, KL-06,KL-05, KL-04",
		"101020", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-953543767.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/02122006(002).jpg",
		107, 80,
		"101020-4", "Carcasa Transmisie pentru KL-02, KL-07, KL-06,KL-05, KL-04",
		"101020", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-745560577.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/images/nopicture.gif",
		75, 50,
		"101097-1", "Cupa centrala pentru KL-02, Kl-07,KL-06,KL-05, KL-04",
		"101097", "Autoart",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1556337669.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/02122006(079).jpg",
		107, 80,
		"01-1", "E-clip 2.5 mm 6buc",
		"01", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1842455278.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/02122006(079).jpg",
		107, 80,
		"01-2", "E-clip 2.5 mm 6buc",
		"01", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-2044554864.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/02122006(079).jpg",
		107, 80,
		"01-3", "E-clip 2.5 mm 6buc",
		"01", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd487199294.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/images/nopicture.gif",
		75, 50,
		"101097-2", "Cupa centrala pentru KL-02, Kl-07,KL-06,KL-05, KL-04",
		"101097", "Autoart",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1723891361.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/images/nopicture.gif",
		75, 50,
		"101097-3", "Cupa centrala pentru KL-02, Kl-07,KL-06,KL-05, KL-04",
		"101097", "Autoart",
		"200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-726603337.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/images/nopicture.gif",
		75, 50,
		"101097-4", "Cupa centrala pentru KL-02, Kl-07,KL-06,KL-05, KL-04",
		"101097", "Autoart",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1687231811.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/02122006(072).jpg",
		107, 80,
		"101114-1", "Pinion 24T pentru KL-07",
		"101114", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1257429380.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/02122006(077).jpg",
		107, 80,
		"101023-1", "Pinion diferential 11T pentru KL-02, KL-07",
		"101023", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-453448878.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/02122006(077).jpg",
		107, 80,
		"101023-2", "Pinion diferential 11T pentru KL-02, KL-07",
		"101023", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1314862640.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/02122006(077).jpg",
		107, 80,
		"101023-3", "Pinion diferential 11T pentru KL-02, KL-07",
		"101023", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-607386498.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/02122006(077).jpg",
		107, 80,
		"101023-4", "Pinion diferential 11T pentru KL-02, KL-07",
		"101023", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-217794852.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/images/nopicture.gif",
		75, 50,
		"101025-1", "Semiarbore planetar   KL-02, KL-07, KL-06",
		"101025", "",
		"300000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1561926991.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/images/nopicture.gif",
		75, 50,
		"101025-2", "Semiarbore planetar   KL-02, KL-07, KL-06",
		"101025", "",
		"300000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1357226005.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/images/nopicture.gif",
		75, 50,
		"101025-3", "Semiarbore planetar   KL-02, KL-07, KL-06",
		"101025", "",
		"300000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-508151733.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/images/nopicture.gif",
		75, 50,
		"101025-4", "Semiarbore planetar   KL-02, KL-07, KL-06",
		"101025", "",
		"300000", "0",
		"1", 1,
		"buc", "59",
		"", "pd16819057.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/02122006(001).jpg",
		107, 80,
		"101064-1", "Set 2 Arbori Planetari pentru KL-07, KL-02,KL-06,KL-04,KL-05",
		"101064", "",
		"400000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1129411725.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/02122006(001).jpg",
		107, 80,
		"101064-2", "Set 2 Arbori Planetari pentru KL-07, KL-02,KL-06,KL-04,KL-05",
		"101064", "",
		"400000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-777977469.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/02122006(074).jpg",
		107, 80,
		"101055-1", "Articulatie sferica 5.8mm (Long) pentru KL-02, KL-07 (6buc)",
		"101055", "",
		"150000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1095958950.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/02122006(074).jpg",
		107, 80,
		"101055-2", "Articulatie sferica 5.8mm (Long) pentru KL-02, KL-07 (6buc)",
		"101055", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd997955652.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/02122006(074).jpg",
		107, 80,
		"101055-3", "Articulatie sferica 5.8mm (Long) pentru KL-02, KL-07 (6buc)",
		"101055", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1047345134.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/02122006(074).jpg",
		107, 80,
		"101055-4", "Articulatie sferica 5.8mm (Long) pentru KL-02, KL-07 (6buc)",
		"101055", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd795407504.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/images/nopicture.gif",
		75, 50,
		"101056-1", "Articulatie sferica 6.8mm pentru KL-02, KL-07 (6buc)",
		"101056", "",
		"150000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1606742628.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/images/nopicture.gif",
		75, 50,
		"101056-2", "Articulatie sferica 6.8mm pentru KL-02, KL-07 (6buc)",
		"101056", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1824628010.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/images/nopicture.gif",
		75, 50,
		"101056-3", "Articulatie sferica 6.8mm pentru KL-02, KL-07 (6buc)",
		"101056", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1524445032.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/images/nopicture.gif",
		75, 50,
		"101056-4", "Articulatie sferica 6.8mm pentru KL-02, KL-07 (6buc)",
		"101056", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1119503318.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/02122006(031).jpg",
		107, 80,
		"101070-1", "Set 2 arcuri pentru KL-07,Kl-06",
		"101070", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-271317960.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/02122006(067).jpg",
		107, 80,
		"101115-1", "Set Bascule Fata Sup/Inf pentru KL-07,KL-06",
		"101115", "",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1623959492.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/02122006(082).jpg",
		107, 80,
		"101053-1", "Set Articluatii Bascule pentru KL-07 Kl-06,05,04,02",
		"101053", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-711587062.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/02122006(024).jpg",
		107, 80,
		"101016-1", "Set Fuzete fata St/Dr KL-07 KL-02, KL-06, KL-05, KL-04",
		"101016", "",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1960652728.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/02122006(026).jpg",
		107, 80,
		"101017-1", "Set Fuzete spate St/Dr KL-02 KL-07 KL-06 KL-05 KL-04",
		"101017", "",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1967148982.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/images/nopicture.gif",
		75, 50,
		"101019-1", "Set Pivoti pentru KL-02 KL-07 KL-05 KL-04 KL-06",
		"101019", "",
		"150000", "0",
		"1", 1,
		"buc", "58",
		"", "pd2045760724.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/02122006(073).jpg",
		107, 80,
		"101108-1", "Suport Servomecanism pentru KL-02, KL-07,KL-06",
		"101108", "",
		"150000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-867068126.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/02122006(082).jpg",
		107, 80,
		"101053-2", "Set Articluatii Bascule pentru KL-07 Kl-06,05,04,02",
		"101053", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd737057312.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/03072008(002).jpg",
		107, 80,
		"8963-1", "Filtru aer 1/8",
		"8963", "",
		"200000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-217274914.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/03072008(002).jpg",
		107, 80,
		"8963-2", "Filtru aer pentru H8866 1/8",
		"8963", "",
		"200000", "0",
		"1", 1,
		"buc", "56",
		"", "pd-1418741956.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/images/nopicture.gif",
		75, 50,
		"108035-2", "Pin 2 x 12",
		"108035", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd139390298.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/images/nopicture.gif",
		75, 50,
		"108010-2", "Surub 3 x 6 mm",
		"108010", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd576043800.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/images/nopicture.gif",
		75, 50,
		"108042-2", "Surub 3 x 8",
		"108042", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd252606214.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/images/nopicture.gif",
		75, 50,
		"108035-3", "Pin 2 x 12",
		"108035", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd61705380.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/images/nopicture.gif",
		75, 50,
		"108010-3", "Surub 3 x 6 mm",
		"108010", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd507204466.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/images/nopicture.gif",
		75, 50,
		"108042-3", "Surub 3 x 8",
		"108042", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1072033520.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/images/nopicture.gif",
		75, 50,
		"108035-4", "Pin 2 x 12",
		"108035", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-618254690.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/images/nopicture.gif",
		75, 50,
		"108010-4", "Surub 3 x 6 mm",
		"108010", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-974164484.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/images/nopicture.gif",
		75, 50,
		"108042-4", "Surub 3 x 8",
		"108042", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd2061661322.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/servo18.JPG",
		107, 72,
		"3862-1", "Servomecanism micro pentru scara 1/18",
		"3862", "",
		"500000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1134446164.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-1", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1860748168.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-2", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "61",
		"", "pd845502310.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-3", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "51",
		"", "pd37020676.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-4", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-2124154414.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/02122006(078).jpg",
		107, 80,
		"101112-1", "Roata Dintata Cilindrica 62T pentru KL-02 KL-07",
		"101112", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-513701495.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/02122006(078).jpg",
		107, 80,
		"101112-2", "Roata Dintata Cilindrica 62T pentru KL-02 KL-07",
		"101112", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-418410785.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/02122006(001).jpg",
		107, 80,
		"101064-3", "Set 2 Arbori Planetari pentru KL-07, KL-02,KL-06,KL-04,KL-05",
		"101064", "",
		"400000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1669230441.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/02122006(098).jpg",
		107, 80,
		"101024-1", "Set sateliti diferential pentru KL-02, KL-07,KL-06,KL-04, KL-05",
		"101024", "",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd2143434720.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/02122006(098).jpg",
		107, 80,
		"101024-2", "Set sateliti diferential pentru KL-02, KL-07,KL-06,KL-04, KL-05",
		"101024", "",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd739336462.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/02122006(098).jpg",
		107, 80,
		"101024-3", "Set sateliti diferential pentru KL-02, KL-07,KL-06,KL-04, KL-05",
		"101024", "",
		"200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd611952108.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/02122006(098).jpg",
		107, 80,
		"101024-4", "Set sateliti diferential pentru KL-02, KL-07,KL-06,KL-04, KL-05",
		"101024", "",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1057566202.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/images/nopicture.gif",
		75, 50,
		"101077-1", "Bumper fata pentru Kl-04 Kl-05",
		"101077", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1547917970.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/02122006(040).jpg",
		107, 80,
		"101072-1", "Bumper pentru KL-07",
		"101072", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1672771674.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/02122006(040).jpg",
		107, 80,
		"101072-2", "Bumper pentru KL-07",
		"101072", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1476541976.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/images/nopicture.gif",
		75, 50,
		"101117", "Caroserie Acura RSX 1/10",
		"101117", "",
		"700000", "0",
		"1", 1,
		"buc", "58",
		"Culoare;Albastru@", "pd1216911451.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/100040.jpg",
		107, 93,
		"101117", "Caroserie Acura RSX 1/10",
		"101117", "",
		"700000", "0",
		"1", 1,
		"buc", "59",
		"Culoare;Albastru@", "pd-1533027305.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/101542.jpg",
		107, 93,
		"101073-1", "Caroserie Hummer 1/10 pentru KL-04 KL-05",
		"101073", "KL",
		"600000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1926542227.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/02122006(036).jpg",
		107, 80,
		"106011	", "Set 2 Jante pentru Kl-07",
		"", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"Culoare;Alb@", "pd1265720674.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/02122006(036).jpg",
		107, 80,
		"106011	", "Set 2 Jante pentru Kl-07",
		"", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"Culoare;Alb@", "pd-852478066.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/images/nopicture.gif",
		75, 50,
		"101090-1", "Clopot ambreiaj pentru Kl-04, Monitor, KL-06",
		"101090", "",
		"250000", "0",
		"1", 1,
		"buc", "58",
		"Nr dinti;14/19@", "pd-2113810632.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/images/nopicture.gif",
		75, 50,
		"101090-2", "Clopot ambreiaj pentru Kl-04, Monitor, KL-06",
		"101090", "",
		"250000", "0",
		"1", 1,
		"buc", "61",
		"Nr dinti;14/19@", "pd923084838.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/101544Monitor.jpg",
		107, 93,
		"KL 05", "Automodel Monitor Nitro 4WD Truggy 1/10 RTR",
		"KL MODEL", "KL",
		"8200000", "0",
		"1", 1,
		"buc", "61",
		"Culoare;Albastru@", "pd-1430899595.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/102141.jpg",
		107, 93,
		"kl08-1", "Automodel SPURT Nitro 4WD Truggy 1/8  RTR ",
		"KL-MODEL", "KL",
		"12400000", "0",
		"1", 1,
		"buc", "64",
		"", "pd1076045584.htm",
		"1::1::20;", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/images/nopicture.gif",
		75, 50,
		"108005", "Rulment 5x8x2.5 mm",
		"108005", "",
		"50000", "0",
		"1", 1,
		"buc", "54",
		"", "pd1216994908.htm",
		"", 1,
		"FMH 1/18", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/images/nopicture.gif",
		75, 50,
		"108005-1", "Rulment 5 x 8 x 3.5 mm",
		"108005", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1452792810.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/images/nopicture.gif",
		75, 50,
		"108005-2", "Rulment 5 x 8 x 3.5 mm",
		"108005", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-679441368.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/101541kl06.jpg",
		107, 93,
		"HH", "Automodel KL-06 Nitro 4WD On-road 1/10 RTR",
		"KL Model", "KL",
		"7900000", "0",
		"1", 1,
		"buc", "58",
		"Culoare;Albastru@", "pd-133076964.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/100041atacker.jpg",
		107, 93,
		"KL02-1", "Automodel Attacker electric 4WD Off Road Buggy 1/10 KIT Non- RTR",
		"KL Model", "KL",
		"3200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-584961560.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/ec-2028-1.jpg",
		107, 125,
		"C18-1", "Automodel C18 Electric 4WD On-road 1/18 RTR",
		"HaiBoxing", "",
		"4200000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1497298346.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/02122006(018).jpg",
		107, 80,
		"101116-1", "Set Bascule Spate St/Dr pentru KL-07,KL-06",
		"101116", "",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd992961426.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/02122006(083).jpg",
		107, 80,
		"101119-1", "Suporti Amortizoare fata si spate pentru KL-07, KL-06",
		"101119", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1042513730.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/02122006(031).jpg",
		107, 80,
		"101070-2", "Set 2 arcuri pentru KL-07,Kl-06",
		"101070", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd53644572.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/02122006(012).jpg",
		107, 80,
		"101059-2", "Set 4 amortizoare pentru KL-07,Kl-06",
		"101059", "",
		"500000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1007888554.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/02122006(067).jpg",
		107, 80,
		"101115-2", "Set Bascule Fata Sup/Inf pentru KL-07,KL-06",
		"101115", "",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd281519848.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/02122006(018).jpg",
		107, 80,
		"101116-2", "Set Bascule Spate St/Dr pentru KL-07,KL-06",
		"101116", "",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1662486358.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/images/nopicture.gif",
		75, 50,
		"101014-2", "Suport Bascule Superioare pentru KL-07 KL-06",
		"101014", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-576432780.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/02122006(083).jpg",
		107, 80,
		"101119-2", "Suporti Amortizoare fata si spate pentru KL-07, KL-06",
		"101119", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1037530942.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/02122006(012).jpg",
		107, 80,
		"101004-1", "Set 4 amortizoare pentru KL-02 buggy",
		"101004", "",
		"500000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-514759488.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/25072008(005).jpg",
		107, 80,
		"101009-1", "Set Bascule Fata Sup/Inf pentru KL-02 buggy",
		"101079", "KL",
		"200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-508831506.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/images/nopicture.gif",
		75, 50,
		"101010-1", "Set Bascule Spate St/Dr pentru KL-02 buggy",
		"101080", "",
		"200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1474060492.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/images/nopicture.gif",
		75, 50,
		"101076-1", "Set 4 amortizoare pentru KL-04,Kl-05 Truggy",
		"101059", "",
		"500000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-585505830.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/25072008(005).jpg",
		107, 80,
		"101079-1", "Set Bascule Fata Sup/Inf pentru KL-04,KL-05 Truggy",
		"101079", "KL",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-106719848.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/images/nopicture.gif",
		75, 50,
		"101080-1", "Set Bascule Spate St/Dr pentru KL-04,KL-05 Truggy",
		"101080", "",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1884695162.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/images/nopicture.gif",
		75, 50,
		"10105-1", "Suport Bumper fata/spate pentru Kl-04 Kl-05",
		"101005", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd669126436.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/02122006(024).jpg",
		107, 80,
		"101016-2", "Set Fuzete fata St/Dr KL-07 KL-02, KL-06, KL-05, KL-04",
		"101016", "",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-2137682610.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/02122006(026).jpg",
		107, 80,
		"101017-2", "Set Fuzete spate St/Dr KL-02 KL-07 KL-06 KL-05 KL-04",
		"101017", "",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd285387820.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/images/nopicture.gif",
		75, 50,
		"101019-2", "Set Pivoti pentru KL-02 KL-07 KL-05 KL-04 KL-06",
		"101019", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1656054214.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/02122006(073).jpg",
		107, 80,
		"101108-2", "Suport Servomecanism pentru KL-02, KL-07,KL-06",
		"101108", "",
		"150000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1363126536.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/02122006(082).jpg",
		107, 80,
		"101053-3", "Set Articluatii Bascule pentru KL-07 Kl-06,05,04,02",
		"101053", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1513228826.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/02122006(024).jpg",
		107, 80,
		"101016-3", "Set Fuzete fata St/Dr KL-07 KL-02, KL-06, KL-05, KL-04",
		"101016", "",
		"200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd586720900.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/02122006(026).jpg",
		107, 80,
		"101017-3", "Set Fuzete spate St/Dr KL-02 KL-07 KL-06 KL-05 KL-04",
		"101017", "",
		"200000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1962442670.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/images/nopicture.gif",
		75, 50,
		"101019-3", "Set Pivoti pentru KL-02 KL-07 KL-05 KL-04 KL-06",
		"101019", "",
		"150000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1191536336.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/images/nopicture.gif",
		75, 50,
		"2852-1", "Acumulator Ni-MH 6V 1100mAh ",
		"2852", "Autoart",
		"500000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1681234896.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/02122006(079).jpg",
		107, 80,
		"01-4", "E-clip 2.5 mm 6buc",
		"01", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-709854564.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/02122006(079).jpg",
		107, 80,
		"01-7", "E-clip 2.5 mm 6buc",
		"01", "",
		"50000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-1983461162.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/02122006(079).jpg",
		107, 80,
		"01-9", "E-clip 2.5 mm 6buc",
		"01", "",
		"50000", "0",
		"1", 1,
		"buc", "55",
		"", "pd47899202.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/images/nopicture.gif",
		75, 50,
		"108035-1", "Pin 2 x 12",
		"108035", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-150906304.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/images/nopicture.gif",
		75, 50,
		"108010-1", "Surub 3 x 6 mm",
		"108010", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1669515886.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/images/nopicture.gif",
		75, 50,
		"108042-1", "Surub 3 x 8",
		"108042", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd178433612.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-5", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "59",
		"", "pd250379344.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-8", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "52",
		"", "pd1501415146.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-10", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-954562154.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/Statie.JPG",
		107, 68,
		"8601-11", "Statie radiocomanda 2 canale",
		"8601", "",
		"1400000", "0",
		"1", 1,
		"buc", "56",
		"", "pd1415586228.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-5", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "64",
		"", "pd1158560176.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-6", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1713010526.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-9", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "55",
		"", "pd-2139178872.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-10", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "56",
		"", "pd1104638454.htm",
		"", 1,
		"8963", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/images/nopicture.gif",
		75, 50,
		"24211-1", "Rulment 8x4x3 mm",
		"151038", "",
		"50000", "0",
		"1", 1,
		"buc", "54",
		"", "pd-136527596.htm",
		"", 1,
		"FMH 1/18", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/caroserie18.JPG",
		107, 70,
		"2831-1", "Caroserie 1/18 ",
		"2831", "Haiboxing",
		"500000", "0",
		"1", 1,
		"buc", "52",
		"", "pd1227613910.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/images/nopicture.gif",
		75, 50,
		"101013-1", "Suporti Bascule pentru KL-07 KL-02",
		"101013", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1400393077.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/images/nopicture.gif",
		75, 50,
		"101013-2", "Suporti Bascule pentru KL-07 KL-02",
		"101013", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd2114955185.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/images/nopicture.gif",
		75, 50,
		"101013-3", "Suporti Bascule pentru KL-07 KL-02",
		"101013", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd140933447.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/images/nopicture.gif",
		75, 50,
		"101013-4", "Suporti Bascule pentru KL-07 KL-02",
		"101013", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1731935437.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/images/nopicture.gif",
		75, 50,
		"101046", "Saboti ambreiaj pentru Kl-06, Kl-05, Monitor 1/10",
		"101046", "",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1550369879.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/25072008(009).jpg",
		107, 80,
		"101046-1", "Saboti ambreiaj pentru Kl-06, Kl-05, Monitor 1/10",
		"101046", "",
		"200000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1566641663.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/images/nopicture.gif",
		75, 50,
		"801019", "C-Hub ",
		"801019", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd2089533509.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/images/nopicture.gif",
		75, 50,
		"108047", "Rulment 8x16x5mm",
		"108047", "",
		"100000", "0",
		"1", 1,
		"buc", "64",
		"", "pd271848443.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/images/nopicture.gif",
		75, 50,
		"801089", "Set bascule spate superioare",
		"801089", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-2028296543.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/images/nopicture.gif",
		75, 50,
		"SP-HS3813-2", "Servomecanism 6kg forta",
		"SP-HS3813", "",
		"400000", "0",
		"1", 1,
		"buc", "61",
		"", "pd293893376.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/images/nopicture.gif",
		75, 50,
		"SP-HS3813-3", "Servomecanism 6kg forta",
		"SP-HS3813", "",
		"400000", "0",
		"1", 1,
		"buc", "51",
		"", "pd613311278.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/images/nopicture.gif",
		75, 50,
		"SP-HS3813-4", "Servomecanism 6kg forta",
		"SP-HS3813", "",
		"400000", "0",
		"1", 1,
		"buc", "59",
		"", "pd2107831564.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-2", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1568991174.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-3", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-898339996.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-4", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1883221966.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/images/nopicture.gif",
		75, 50,
		"801088", "Set Bascule fata superioare Spurt 1/8",
		"801088", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd1480020407.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/images/nopicture.gif",
		75, 50,
		"801087", "Set Bascule fata inferioare Spurt 1/8",
		"801087", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-1357041350.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/images/nopicture.gif",
		75, 50,
		"801086", "Set bascule spate inferioare Spurt 1/8",
		"801086", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd1002512888.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/25072008(004).jpg",
		107, 80,
		"801084", "Suporti amortizoare fata Spurt 1/8",
		"801084", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd704935085.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/25072008(004).jpg",
		107, 80,
		"801085", "Suport amortizoare spate Spurt 1/8",
		"801085", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-232227165.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/25072008(002).jpg",
		107, 80,
		"801079", "Set 2 roti 1/8",
		"801079", "",
		"720000", "0",
		"1", 1,
		"buc", "64",
		"", "pd893563273.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/images/nopicture.gif",
		75, 50,
		"101078", "Suporti amortizoare ft/sp ",
		"101078", "",
		"200000", "0",
		"1", 1,
		"buc", "61",
		"", "pd91551455.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/images/nopicture.gif",
		75, 50,
		"101082", "Set bielete ",
		"101082", "",
		"300000", "0",
		"1", 1,
		"buc", "61",
		"", "pd633293531.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/images/nopicture.gif",
		75, 50,
		"101014-3", "Suport Bascule Superioare pentru KL-07 KL-06",
		"101014", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-306530665.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/images/nopicture.gif",
		75, 50,
		"101014-4", "Suport Bascule Superioare pentru KL-07 KL-06",
		"101014", "",
		"100000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1954219363.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/images/nopicture.gif",
		75, 50,
		"101014-5", "Suport Bascule Superioare pentru KL-07 KL-06",
		"101014", "",
		"100000", "0",
		"1", 1,
		"buc", "51",
		"", "pd665204243.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/images/nopicture.gif",
		75, 50,
		"101014-6", "Suport Bascule Superioare pentru KL-07 KL-06",
		"101014", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-854133127.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/02122006(076).jpg",
		107, 80,
		"VH-320058-1", "Cleme fixare caroserie 10buc",
		"VH-320058", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-310163435.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/02122006(076).jpg",
		107, 80,
		"VH-320058-2", "Cleme fixare caroserie 10buc",
		"VH-320058", "",
		"100000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1496064075.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/02122006(076).jpg",
		107, 80,
		"VH-320058-3", "Cleme fixare caroserie 10buc",
		"VH-320058", "",
		"100000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1745406833.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/02122006(076).jpg",
		107, 80,
		"VH-320058-4", "Cleme fixare caroserie 10buc",
		"VH-320058", "",
		"100000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1507541767.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/02122006(076).jpg",
		107, 80,
		"VH-320058-7", "Cleme fixare caroserie 10buc",
		"VH-320058", "",
		"100000", "0",
		"1", 1,
		"buc", "52",
		"", "pd-657221783.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/25072008(001).jpg",
		107, 80,
		"101075-1", "Set 2 roti Truggy 1/10",
		"101075", "",
		"400000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-748260282.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/20070801104453855.jpg",
		107, 59,
		"KL3-2", "Automodel H-8860 NItro 4WD Buggy 1/10 RTR",
		"Huada Hobby", "HH",
		"6700000", "0",
		"1", 1,
		"buc", "55",
		"", "pd1216990284.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/01082008.jpg",
		107, 80,
		"124566", "Caroserie Truggy 1/8 ",
		"", "",
		"900000", "0",
		"1", 1,
		"buc", "64",
		"", "pd1217851148.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/images/nopicture.gif",
		75, 50,
		"5312", "Caroserie Revo",
		"5312", "",
		"900000", "0",
		"1", 1,
		"buc", "62",
		"", "pd1218552883.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/images/nopicture.gif",
		75, 50,
		"5314", "Suporti caroserie",
		"5314", "Autoart",
		"400000", "0",
		"1", 1,
		"buc", "62",
		"", "pd185897369.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/images/nopicture.gif",
		75, 50,
		"5351", "Placa presiune",
		"5351", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd1919423855.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/images/nopicture.gif",
		75, 50,
		"5381", "Colivie diferential",
		"5381", "",
		"200000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-1974872779.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/images/nopicture.gif",
		75, 50,
		"5386", "Roata dintata 43T",
		"5386", "",
		"150000", "0",
		"1", 1,
		"buc", "62",
		"", "pd1803940459.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/images/nopicture.gif",
		75, 50,
		"5364", "Disc Frana",
		"5364", "",
		"150000", "0",
		"1", 1,
		"buc", "62",
		"", "pd1469803153.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/images/nopicture.gif",
		75, 50,
		"5365", "Placute frana",
		"5365", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-471369945.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/images/nopicture.gif",
		75, 50,
		"5323", "Suporti amortizoare aluminiu ",
		"5323", "",
		"400000", "0",
		"1", 1,
		"buc", "62",
		"", "pd977268141.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/images/nopicture.gif",
		75, 50,
		"5334", "Port fuzete fata",
		"5334", "",
		"400000", "0",
		"1", 1,
		"buc", "62",
		"", "pd1217699747.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/images/nopicture.gif",
		75, 50,
		"5459", "Burduf etansare planetare Revo",
		"5459", "",
		"150000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-1292911991.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/images/nopicture.gif",
		75, 50,
		"5347", "Set articulatii ",
		"5347", "",
		"400000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-353556513.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/images/nopicture.gif",
		75, 50,
		"5327", "Bascule spate dreapta Revo",
		"5327", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd689746845.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/images/nopicture.gif",
		75, 50,
		"5328", "Bascule spate stanga REvo",
		"5328", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-204957933.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/basculerev.jpg",
		107, 76,
		"5331", "Bascule fata dreapta Revo",
		"5331", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd140787577.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/images/nopicture.gif",
		75, 50,
		"5332", "Bascule fata stanga Revo",
		"5332", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd278591055.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/brate.jpg",
		107, 98,
		"5356", "Rocker Arm",
		"5356", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd696197397.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/images/nopicture.gif",
		75, 50,
		"5261", "Filtru aer",
		"5261", "",
		"200000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-247712655.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/images/nopicture.gif",
		75, 50,
		"5533", "Bascule spate Jato",
		"5533", "",
		"300000", "0",
		"1", 1,
		"buc", "62",
		"", "pd166729101.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/images/nopicture.gif",
		75, 50,
		"TR3211", "Conectori Traxxas ",
		"", "",
		"200000", "0",
		"1", 1,
		"buc", "62",
		"Tip;Mama@", "pd-1642212545.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/images/nopicture.gif",
		75, 50,
		"fmh33", "Set 2 bascule",
		"FMH", "Firelap",
		"300000", "0",
		"1", 1,
		"buc", "54",
		"", "pd810985620.htm",
		"", 1,
		"FMH 1/18", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/51HenryJYellow.jpg",
		107, 58,
		"SS5091", "1951 Kaiser Henry 1/18",
		"Sunstar Platinum", "Sunstar",
		"2400000", "0",
		"1", 1,
		"buc", "33",
		"Culoare;Galben@", "pd-1292584188.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/150g.jpg",
		107, 97,
		"J150", "Incarcator 1/32",
		"Joal", "Joal",
		"700000", "0",
		"1", 1,
		"buc", "72",
		"", "pd1222345138.htm",
		"1::1::20;", 1,
		"Utilaje", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/286g.jpg",
		107, 79,
		"286", "Excavator pe senile 1/32",
		"JOAL", "Joal",
		"1200000", "0",
		"1", 1,
		"buc", "72",
		"", "pd2129513059.htm",
		"1::1::20;", 1,
		"Utilaje", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/G4greysm.jpg",
		107, 80,
		"SGMG4", "1938 Mercedes-Benz G4  1/18",
		"Signature Models Premiere Miniauture", "Signature",
		"3900000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Alb@", "pd-404464313.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/revosm.jpg",
		107, 58,
		"TRrevo-1", "Automodel Electric E-REVO 1/8",
		"Traxxas", "",
		"17000000", "0",
		"1", 1,
		"buc", "62",
		"", "pd-1508000104.htm",
		"", 1,
		"Revo", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/juvaquatrsm2.JPG",
		107, 54,
		"SD4ut", "Renault Juvaquatre 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"", "pd1225806327.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/50544sm.jpg",
		107, 68,
		"HG50463-3", "1957 Chevrolet 150 Fire Chief 1/18",
		"Highway61", "Highway61",
		"3660000", "0",
		"1", 1,
		"buc", "15",
		"", "pd-2139668016.htm",
		"1::1::40;", 1,
		"Highway 61", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/challengersmalb.JPG",
		107, 50,
		"50603", "1970  Dodge Challenger R/T 1/18",
		"Highway61", "Highway61",
		"3500000", "0",
		"1", 1,
		"buc", "15",
		"Culoare;Alb@", "pd1634862254.htm",
		"", 1,
		"Highway 61", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/scaunsm.jpg",
		107, 54,
		"40267-1-2", "Scaun Recaro",
		"AUTOart", "Autoart",
		"1250000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1285014251.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/scrumiera2sm.jpg",
		107, 54,
		"40244-1-2", "Scrumiera prezon",
		"AUTOart", "Autoart",
		"2400000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-65074178.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/Toiletpapersm.jpg",
		107, 54,
		"40131-1-2", "Suport hartie baie",
		"", "Autoart",
		"1850000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1056343507.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/hartiesm.jpg",
		107, 54,
		"40136-1-2", "Suport hartie bucatarie",
		"AUTOart", "Autoart",
		"2250000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1038190552.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/suportbaiesm.jpg",
		107, 54,
		"AA444-2", "Suport prosop baie",
		"AUTOart", "Autoart",
		"650000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1369346143.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/umbrela2sm.jpg",
		107, 54,
		"40114-1-2", "Umbrela cu maner cu led",
		"AUTOart", "Autoart",
		"2350000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1568903166.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/umbrela3sm.jpg",
		107, 54,
		"40118-2", "Umbrela cu maner schimbator de viteze cu amortizor",
		"AUTOart", "Autoart",
		"2350000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1662764545.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/sw38kafeesm.JPG",
		107, 76,
		"SMSW38", "1937 Maybach SW38 1/18",
		"Signature Models Premiere Miniauture", "Signature",
		"2800000", "0",
		"1", 1,
		"buc", "31",
		"", "pd1229094861.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/e320blacsm.JPG",
		107, 54,
		"AA320", "Mercedes-Benz E320 1/18",
		"AUTOart", "Autoart",
		"3900000", "0",
		"1", 1,
		"buc", "5",
		"", "pd1756956226.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/286g.jpg",
		107, 79,
		"286-1", "Excavator pe senile 1/32",
		"", "Joal",
		"1200000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1261191430.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/100041atacker.jpg",
		107, 93,
		"KL02-2", "Automodel Attacker electric 4WD Off Road Buggy 1/10 KIT Non-RTR",
		"KL Model", "KL",
		"3200000", "0",
		"1", 1,
		"buc", "48",
		"", "pd400712930.htm",
		"", 1,
		"Electrice", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/100040.jpg",
		107, 93,
		"KL01-2", "Automodel KL-07 Electric 4WD On-road 1/10 KIT Non-RTR",
		"KL MODEL", "KL",
		"3200000", "0",
		"1", 1,
		"buc", "48",
		"Culoare;Albastru@", "pd-735371808.htm",
		"", 1,
		"Electrice", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/caroseriebmw.JPG",
		107, 80,
		"BMWM3body", "Caroserie BMW M3 1/10",
		"", "",
		"700000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1382869996.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/02122006(043).jpg",
		107, 80,
		"106010-1", "Set 2 Anvelope Slick onroad",
		"106010", "",
		"150000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-2138708998.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/Dacia.jpg",
		107, 107,
		"S12-1", "Renault 12 TS (Dacia 1300) 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"Culoare;Galben@", "pd1232368855.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/02122006(043).jpg",
		107, 80,
		"106010-2", "Set 2 Anvelope Slick onroad",
		"106010", "",
		"150000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-376696136.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/02122006(048).jpg",
		107, 80,
		"1054-1-1", "Rulment 10x5x4 mm",
		"1054", "",
		"50000", "0",
		"1", 1,
		"buc", "58",
		"", "pd599201702.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/02122006(048).jpg",
		107, 80,
		"1054-1-2", "Rulment 10x5x4 mm",
		"1054", "",
		"50000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1416772.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/02122006(048).jpg",
		107, 80,
		"1054-1-3", "Rulment 10x5x4 mm",
		"1054", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-49005038.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/02122006(048).jpg",
		107, 80,
		"1054-1-4", "Rulment 10x5x4 mm",
		"1054", "",
		"50000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1679861104.htm",
		"StageDiscount", 1,
		"Kl-07", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/drifttires2.JPG",
		107, 95,
		"Drift wheels", "Set 2 Roti 1/10 Pentru Drift",
		"", "",
		"300000", "0",
		"1", 1,
		"buc", "59",
		"Culoare;Albastru@", "pd402543976.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/09024.jpg",
		107, 80,
		"ARTG", "Artega 1/18",
		"Revell", "Revell",
		"1800000", "0",
		"1", 1,
		"buc", "28",
		"Culoare;Gri@", "pd302261297.htm",
		"", 1,
		"Revell", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/88001sm.jpg",
		107, 67,
		"Sl", "KAWASAKI - 750 H 2 Jbt - JOE BAR TEAM 1/18",
		"Solido", "Solido",
		"600000", "0",
		"1", 1,
		"buc", "45",
		"", "pd-1834291019.htm",
		"1::1::20;", 1,
		"moto", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/suzukirocasm.jpg",
		107, 107,
		"53451", "SUZUKI - GT 750 ROCA 1/18",
		"Solido", "Solido",
		"400000", "0",
		"1", 1,
		"buc", "45",
		"", "pd-809565400.htm",
		"1::1::20;", 1,
		"moto", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/gallardosipidersm.jpg",
		107, 71,
		"NVG", "Lamborghini Gallardo Spider 1/18",
		"NOREV", "Norev",
		"2000000", "0",
		"1", 1,
		"buc", "26",
		"Culoare;Bleu@", "pd-110630291.htm",
		"1::1::20;", 1,
		"Norev", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/Conditionerstickpack.jpg",
		107, 118,
		"STP", "Stickpack Conditioner",
		"LRP", "",
		"500000", "0",
		"1", 1,
		"buc", "60",
		"", "pd1472687982.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/conditioner celule.jpg",
		107, 72,
		"41370", "Battery Conditioner 2",
		"LRP", "",
		"1000000", "0",
		"1", 1,
		"buc", "60",
		"", "pd-9708724.htm",
		"1::1::20;", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/ulei rulmenti.jpg",
		107, 221,
		"65020", "Ulei pentru rulmenti",
		"LRP", "",
		"300000", "0",
		"1", 1,
		"buc", "60",
		"", "pd-1706040742.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/images/nopicture.gif",
		75, 50,
		"66018", "Pinioane 48P",
		"LRP ", "",
		"350000", "0",
		"1", 1,
		"buc", "60",
		"Nr dinti;16T@", "pd1732655409.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/images/nopicture.gif",
		75, 50,
		"88005-1", "GUZZI - V 7 SPéCIALE - JOE BAR TEAM 1/18",
		"Solido", "Solido",
		"600000", "0",
		"1", 1,
		"buc", "0",
		"", "pd699311079.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/ducati900.jpg",
		107, 67,
		"88004-1", "DUCATI - 900 SS - JOE BAR TEAM 1/18",
		"Solido", "Solido",
		"600000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1836332758.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[338] = new Element(
		338, "assets/images/nopicture.gif",
		75, 50,
		"53451-1", "SUZUKI - GT 750 ROCA 1/18",
		"Solido", "Solido",
		"400000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1801772187.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/asfaltgrippe.jpg",
		107, 229,
		"65021", "Solutie pentru marirea aderentei Top Grip ",
		"LRP", "",
		"350000", "0",
		"1", 1,
		"buc", "60",
		"Suprafata;Asfalt@", "pd1171686818.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/Roti 24R.jpg",
		107, 71,
		"65051", "Set 2 roti Touring 1/10",
		"LRP VTEC ", "",
		"800000", "0",
		"1", 1,
		"buc", "60",
		"Suprafata;Mocheta@temperatura;27R@", "pd-1120246834.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/03072008(002).jpg",
		107, 80,
		"8963-1-1", "Filtru aer 1/8",
		"8963", "",
		"200000", "0",
		"1", 1,
		"buc", "53",
		"", "pd144933911.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/images/nopicture.gif",
		75, 50,
		"801052-1", "Mecanism directie 1/8",
		"801052", "",
		"300000", "0",
		"1", 1,
		"buc", "53",
		"", "pd362841117.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/images/nopicture.gif",
		75, 50,
		"801032-1", "Clopot ambreiaj 13T",
		"801032", "",
		"600000", "0",
		"1", 1,
		"buc", "53",
		"", "pd329440147.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/images/nopicture.gif",
		75, 50,
		"108047-1", "Rulment 8x16x5mm",
		"108047", "",
		"100000", "0",
		"1", 1,
		"buc", "53",
		"", "pd-1203338545.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/02122006(010).jpg",
		107, 80,
		"15104-5-1", "Rulment 15x10x4mm",
		"15104", "",
		"50000", "0",
		"1", 1,
		"buc", "53",
		"", "pd204964245.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/images/nopicture.gif",
		75, 50,
		"801030-1", "Set ambreiaj 1/8",
		"801030", "",
		"300000", "0",
		"1", 1,
		"buc", "53",
		"", "pd-1473186357.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/13T.jpg",
		107, 117,
		"80582-1", "Pachet Motor Brushless 13,5T/ Variator de turatie A.I",
		"LRP", "",
		"4900000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1516884673.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/Roti 24R.jpg",
		107, 71,
		"65051-1", "Set 2 roti Touring 1/10",
		"LRP VTEC 24R", "",
		"800000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1011636421.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/asfaltgrippe.jpg",
		107, 229,
		"65021", "Solutie pentru marirea aderentei Top Grip ",
		"LRP", "",
		"350000", "0",
		"1", 1,
		"buc", "59",
		"Suprafata;Asfalt@", "pd2127129569.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/Conditionerstickpack.jpg",
		107, 118,
		"STP-1", "Stickpack Conditioner",
		"LRP", "",
		"500000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1946887165.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/ulei rulmenti.jpg",
		107, 221,
		"65020-1", "Ulei pentru rulmenti",
		"LRP", "",
		"300000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1611530637.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/102140.jpg",
		107, 93,
		"KL392", "Automodel Envoy Nitro 4WD Buggy 1/8",
		"KL Models", "",
		"11900000", "0",
		"1", 1,
		"buc", "49",
		"", "pd2142840692.htm",
		"1::1::20;", 1,
		"termic", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/images/nopicture.gif",
		75, 50,
		"101058", "Set2 roti complete 1/10",
		"101058", "",
		"300000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-1469606346.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/images/nopicture.gif",
		75, 50,
		"101040", "Rezervor combustibil 1/10",
		"101040", "",
		"300000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1311932244.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/images/nopicture.gif",
		75, 50,
		"101048", "Filtru aer",
		"101048", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"", "pd-600947294.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/28102009(004).jpg",
		107, 80,
		"101040-1", "Rezervor combustibil 1/10",
		"101040", "",
		"300000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-595268448.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/images/nopicture.gif",
		75, 50,
		"101058-1", "Set2 roti complete 1/10",
		"101058", "",
		"200000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1720591310.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/images/nopicture.gif",
		75, 50,
		"101048-1", "Filtru aer",
		"101048", "",
		"100000", "0",
		"1", 1,
		"buc", "61",
		"", "pd2142709420.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/images/nopicture.gif",
		75, 50,
		"101048-1-1", "Filtru aer",
		"101048", "",
		"100000", "0",
		"1", 1,
		"buc", "51",
		"", "pd139582566.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/conditioner celule.jpg",
		107, 72,
		"41370-2", "Battery Conditioner 2",
		"LRP", "",
		"2000000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1408986193.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/13T.jpg",
		107, 117,
		"80582-2", "Pachet Motor Brushless 13,5T/ Variator de turatie A.I",
		"LRP", "",
		"4900000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1715536537.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/ulei rulmenti.jpg",
		107, 221,
		"65020-2", "Ulei pentru rulmenti",
		"LRP", "",
		"300000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1528624669.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/Conditionerstickpack.jpg",
		107, 118,
		"STP-2", "Stickpack Conditioner",
		"LRP", "",
		"500000", "0",
		"1", 1,
		"buc", "51",
		"", "pd595930825.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/02122006(031).jpg",
		107, 80,
		"101070-1-1", "Set 2 arcuri pentru KL-07,Kl-06",
		"101070", "",
		"50000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-1102393646.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/images/nopicture.gif",
		75, 50,
		"801030", "Set ambreiaj 1/8",
		"801030", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-1344054960.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/images/nopicture.gif",
		75, 50,
		"801032", "Clopot ambreiaj 13T",
		"801032", "",
		"600000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-778100738.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/images/nopicture.gif",
		75, 50,
		"801091", "Central Gear 52T",
		"801091", "",
		"800000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-678740388.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/images/nopicture.gif",
		75, 50,
		"801052", "Mecanism directie 1/8",
		"801052", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd922237930.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/images/nopicture.gif",
		75, 50,
		"053", "Set bielete directie",
		"8860-053", "",
		"300000", "0",
		"1", 1,
		"buc", "55",
		"", "pd72870952.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/images/nopicture.gif",
		75, 50,
		"801091-1", "Central Gear 52T",
		"801091", "",
		"800000", "0",
		"1", 1,
		"buc", "53",
		"", "pd-135123547.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/images/nopicture.gif",
		75, 50,
		"801019-1", "C-Hub ",
		"801019", "",
		"250000", "0",
		"1", 1,
		"buc", "53",
		"", "pd-1580357119.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/conditioner celule.jpg",
		107, 72,
		"41370-1", "Battery Conditioner 2",
		"LRP", "",
		"2000000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1893658371.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/images/nopicture.gif",
		75, 50,
		"1060100", "Set 2 rot onroad 1/10",
		"KL", "",
		"300000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1241008523.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/02122006(036).jpg",
		107, 80,
		"106011	", "Set 2 Jante pentru Kl-07",
		"", "",
		"100000", "0",
		"1", 1,
		"buc", "58",
		"Culoare;Alb@", "pd191764145.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/Bauer.jpg",
		107, 57,
		"bauer", "1937 Bugatti Royale 41 1/18",
		"Bauer", "",
		"20000000", "0",
		"1", 1,
		"buc", "6",
		"", "pd-510938350.htm",
		"", 1,
		"Bauer", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2-5", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "58",
		"", "pd1244033204.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/espada gold.jpg",
		107, 54,
		"74502", "Lamborghini Espada 1/18",
		"AUTOart", "Autoart",
		"3800000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Auriu@", "pd829947172.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/alffeta.jpg",
		107, 54,
		"70146", "1980 Alfa Romeo &quot;Alfetta&quot; GTV 2.0 ",
		"AUTOart", "Autoart",
		"3800000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Rosu@", "pd-930725493.htm",
		"1::1::20;", 1,
		"Autoart", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/102140.jpg",
		107, 93,
		"KL392-2", "Automodel Envoy Nitro 4WD Buggy 1/8",
		"KL Models", "",
		"11900000", "0",
		"1", 1,
		"buc", "53",
		"", "pd1239276677.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/101540.jpg",
		107, 93,
		"KL09-2", "Automodel Attacker Nitro 4WD Buggy 1/10",
		"KL Models", "",
		"7900000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1274841659.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/prv_prd_202x390_77413.jpg",
		107, 206,
		"77413", "Pachet 6 celule acumulatori 4600mAh HV2 Factory Team  Matched",
		"LRP", "",
		"3400000", "0",
		"1", 1,
		"buc", "60",
		"", "pd406988869.htm",
		"1::1::40;", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/45t.jpg",
		107, 107,
		"50712", "Motor electric Brushless (fara perii) X12 3,5T",
		"LRP", "",
		"3900000", "0",
		"1", 1,
		"buc", "60",
		"", "pd373788321.htm",
		"1::1::40;", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/images/nopicture.gif",
		75, 50,
		"r4", "Set 10 lamele pentru acumulatori",
		"Robitronic", "",
		"300000", "0",
		"1", 1,
		"buc", "63",
		"", "pd2047275709.htm",
		"", 1,
		"Robitronic", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/images/nopicture.gif",
		75, 50,
		"r4-1", "Set 10 lamele pentru acumulatori",
		"REED", "",
		"300000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-1052135271.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/prv_prd_202x390_77413.jpg",
		107, 206,
		"77413-1", "Pachet 6 celule acumulatori 4600mAh HV2 Factory Team  Matched",
		"LRP", "",
		"3400000", "0",
		"1", 1,
		"buc", "59",
		"", "pd-2012814283.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/45t.jpg",
		107, 107,
		"50712-1", "Motor electric brushless (fara perii) X12 3,5T",
		"LRP", "",
		"3900000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1958701457.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "61",
		"", "pd1239711427.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2-1", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "51",
		"", "pd838545065.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2-2", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "64",
		"", "pd-1294845697.htm",
		"1::1::20;", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2-3", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "55",
		"", "pd363651909.htm",
		"", 1,
		"8860", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2-4", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "53",
		"", "pd-1385828613.htm",
		"", 1,
		"Envoy 1/8", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/03072008(005).jpg",
		107, 80,
		"801", "Set fuzete aluminiu ",
		"8963-045", "",
		"300000", "0",
		"1", 1,
		"buc", "64",
		"", "pd1242218629.htm",
		"", 1,
		"Spurt 1/8", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/nortoncsm.jpg",
		107, 67,
		"53452-1", "NORTON - MANX - LYTA SHORT CIRCUIT 1/18",
		"Solido", "",
		"400000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-491790755.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/norton.jpg",
		107, 67,
		"SD4-1", "NORTON - COMMANDO - JOE BAR TEAM 1/18",
		"", "",
		"600000", "0",
		"1", 1,
		"buc", "0",
		"", "pd45304344.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/88007.jpg",
		107, 107,
		"88001-2", "KAWASAKI - 750 H2 - JOE BAR TEAM 1/18",
		"Solido", "Solido",
		"600000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1459087986.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/gallardosipidersm.jpg",
		107, 71,
		"NVG", "Lamborghini Gallardo Spider 1/18",
		"NOREV", "Norev",
		"2000000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Bleu@", "pd-695061090.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/conditioner celule.jpg",
		107, 72,
		"41370-3", "Battery Conditioner 2",
		"LRP", "",
		"1000000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1769983831.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/prv_185x185_80100.jpg",
		107, 107,
		"899", "Variator electronic de turatie AI Brushless ",
		"LRP", "",
		"3200000", "0",
		"1", 1,
		"buc", "60",
		"", "pd1645828575.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/tornado.jpg",
		107, 107,
		"TR16", "Combustibil 16% Nitrometan 84% ulei de ricin",
		"4L", "",
		"1500000", "0",
		"1", 1,
		"buc", "49",
		"", "pd1251982488.htm",
		"", 1,
		"termic", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/alffeta.jpg",
		107, 54,
		"70146", "1980 Alfa Romeo &quot;Alfetta&quot; GTV 2.0 ",
		"AUTOart", "Autoart",
		"3800000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Rosu@", "pd1957660321.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/riviera white.jpg",
		107, 74,
		"HG50371 ", "1964 Buick Riviera 1/18",
		"Highway61", "Highway61",
		"3400000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Rosu@", "pd1453222589.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/estoquesm.JPG",
		107, 48,
		"093", "Lamborghini Estoque 1/18",
		"Mondo Motors", "MondoMotors",
		"1100000", "0",
		"1", 1,
		"buc", "24",
		"Culoare;Negru@", "pd-1223778991.htm",
		"", 1,
		"Mondo", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/Premium2018023.jpg",
		107, 80,
		"18023", "Mascota Chevrolet 1/2",
		"Signature Models", "Signature",
		"1800000", "0",
		"1", 1,
		"buc", "31",
		"", "pd-1290072927.htm",
		"1::1::20;", 1,
		"Signature", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/subaruwrc.jpg",
		107, 71,
		"SS07wrc-2", "2008 Subaru Impreza #19 WRC 1/18",
		"Sunstar", "Sunstar",
		"2200000", "0",
		"1", 1,
		"buc", "41",
		"", "pd1277215060.htm",
		"", 1,
		"WRC", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/Premium2018020.jpg",
		107, 80,
		"18020", "Mascota Pierce Arrow 1/2",
		"Signature Models", "",
		"1800000", "0",
		"1", 1,
		"buc", "31",
		"", "pd-150591561.htm",
		"1::1::20;", 1,
		"Signature", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/C30sm.jpg",
		107, 64,
		"po2", "Volvo C30 1/18",
		"Powco", "",
		"700000", "0",
		"1", 1,
		"buc", "27",
		"Culoare;Rosu@", "pd-2137699231.htm",
		"", 1,
		"Powco", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/5300sm.jpg",
		107, 107,
		"5300", "Acumulator Li-Po 7,4V 5300mAh 28C Hard Case",
		"VTEC LRP", "",
		"4200000", "0",
		"1", 1,
		"buc", "60",
		"", "pd1254915100.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/fulviasm.jpg",
		107, 54,
		"AALAN", "Lancia Fulvia Fanalone 1/18",
		"AUTOart", "Autoart",
		"3900000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Rosu@", "pd1539658372.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/statie lrp.jpg",
		107, 196,
		"24", "Statie Radicomanda 2,4 Ghz F.H.S.S. 3 canale",
		"LRP- Sanwa", "",
		"4400000", "0",
		"1", 1,
		"buc", "52",
		"", "pd840609706.htm",
		"", 1,
		"C18", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/statie lrp.jpg",
		107, 196,
		"24-1", "Statie Radicomanda 2,4 Ghz F.H.S.S. 3 canale",
		"LRP- Sanwa", "",
		"4400000", "0",
		"1", 1,
		"buc", "60",
		"", "pd-698972696.htm",
		"1::1::20;", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/28102009(004).jpg",
		107, 80,
		"101040-1-1", "Rezervor combustibil 1/10",
		"101040", "",
		"300000", "0",
		"1", 1,
		"buc", "51",
		"", "pd1256732648.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/28102009.jpg",
		107, 80,
		"Kl0", "Set diferential metalic",
		"KL", "",
		"400000", "0",
		"1", 1,
		"buc", "51",
		"", "pd-548503466.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/28102009.jpg",
		107, 80,
		"Kl0-1", "Set diferential metalic",
		"KL", "",
		"400000", "0",
		"1", 1,
		"buc", "58",
		"", "pd2121791092.htm",
		"", 1,
		"kl-06", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/28102009.jpg",
		107, 80,
		"Kl0-2", "Set diferential metalic",
		"KL", "",
		"400000", "0",
		"1", 1,
		"buc", "61",
		"", "pd-1098313278.htm",
		"", 1,
		"monitor 1/", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/28102009.jpg",
		107, 80,
		"Kl0-3", "Set diferential metalic",
		"KL", "",
		"400000", "0",
		"1", 1,
		"buc", "59",
		"", "pd1118377408.htm",
		"", 1,
		"Kl-07", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/urrcao greensm.jpg",
		107, 64,
		"KY2342", "Lamborghini Urraco 1/18",
		"Kyosho", "Kyosho",
		"3500000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Verde@", "pd-366976482.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/123206_2.jpg",
		107, 62,
		"SB7425", "1965 Shelby Cobra Daytona Coupe",
		"Shelby Collectibles", "ShelbyCollectibles",
		"2200000", "0",
		"1", 1,
		"buc", "30",
		"Culoare;Argintiu@", "pd1065356139.htm",
		"", 1,
		"shelby", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/Dennis Light Four fire.jpg",
		107, 69,
		"RS5464", "1938 Dennis Light Four fire engine 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd863838247.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/Dennis Light Four fire.jpg",
		107, 69,
		"RS5464-1", "1938 Dennis Light Four fire engine 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd-582444151.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/panhard.jpg",
		107, 107,
		"SD335", "Panhard 24 CT 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"Culoare;Rosu@", "pd1802238081.htm",
		"", 1,
		"Solido", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/boattailsm.JPG",
		107, 80,
		"SM4242", "1930 Packard Boattail 1/18",
		"Signature Models", "Signature",
		"2000000", "0",
		"1", 1,
		"buc", "31",
		"", "pd1259151918.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/volga 57 verde.jpg",
		107, 53,
		"SG332-1", "1957 Volga 1/24",
		"Road Signature", "Road Signature",
		"600000", "0",
		"1", 1,
		"buc", "29",
		"", "pd1588273764.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/851nash.jpg",
		107, 80,
		"SM54231", "1935 Auburn 851 1/32",
		"Signature Models", "Signature",
		"600000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Rosu@", "pd344792817.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/images/nopicture.gif",
		75, 50,
		"101090-2", "Clopot ambreiaj pentru Kl-04, Monitor, KL-06",
		"101090", "",
		"250000", "0",
		"1", 1,
		"buc", "51",
		"Nr dinti;14/19@", "pd-837274685.htm",
		"", 1,
		"Attacker", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/88001sm.jpg",
		107, 67,
		"Sl-1", "KAWASAKI - 750 H 2 Jbt - JOE BAR TEAM 1/18",
		"Solido", "Solido",
		"600000", "0",
		"1", 1,
		"buc", "32",
		"", "pd-8676964.htm",
		"1::1::20;", 1,
		"Solido", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/norton.jpg",
		107, 67,
		"SD4-2", "NORTON - COMMANDO - JOE BAR TEAM 1/18",
		"", "Solido",
		"600000", "0",
		"1", 1,
		"buc", "32",
		"", "pd575029221.htm",
		"1::1::20;", 1,
		"Solido", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/suzukirocasm.jpg",
		107, 107,
		"53451-2", "SUZUKI - GT 750 ROCA 1/18",
		"Solido", "Solido",
		"400000", "0",
		"1", 1,
		"buc", "32",
		"", "pd82256983.htm",
		"1::1::20;", 1,
		"Solido", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/102140.jpg",
		107, 93,
		"KL392-3", "Automodel Envoy Nitro 4WD Buggy 1/8",
		"KL Models", "",
		"11900000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1260452991.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/belair 50.JPG",
		107, 49,
		"MM532", "1950 Chevolet Bel Air 1/18",
		"MotorMax", "MotorMAx",
		"1100000", "0",
		"1", 1,
		"buc", "25",
		"", "pd933935164.htm",
		"", 1,
		"MotorMax", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/judge blue.JPG",
		107, 61,
		"MM09219", "1969 Pontiac GTO Judge 1/18",
		"MotorMax", "MotorMAx",
		"1100000", "0",
		"1", 1,
		"buc", "25",
		"Culoare;Albastru@", "pd1967900547.htm",
		"", 1,
		"MotorMax", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/ccx orangesm.jpg",
		107, 54,
		"ccx1n", "Koeniggseg CCX 1/18",
		"AUTOart", "Autoart",
		"7000000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Orange@", "pd1910565934.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/Premium2018023.jpg",
		107, 80,
		"18023-1", "Mascota Chevrolet 1/2",
		"Signature Models", "Signature",
		"1800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd647397717.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/Premium2018020.jpg",
		107, 80,
		"18020-1", "Mascota Pierce Arrow 1/2",
		"Signature Models", "",
		"1800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1656678032.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/3230719.jpg",
		107, 73,
		"125C", "Ford Focus ST 1/18",
		"Powco", "",
		"700000", "0",
		"1", 1,
		"buc", "27",
		"Culoare;Orange@", "pd899621967.htm",
		"", 1,
		"Powco", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/v70sm.jpg",
		107, 62,
		"Pwco", "Volvo V70 1/18",
		"Powco", "",
		"700000", "0",
		"1", 1,
		"buc", "27",
		"Culoare;Albastru@", "pd135672368.htm",
		"", 1,
		"Powco", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/montrealsm.jpg",
		107, 54,
		"AA4245", "1970 Alfa Romeo Montreal 1/18",
		"AUTOart", "Autoart",
		"3800000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Rosu@", "pd-180871114.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/280sesm.jpg",
		107, 54,
		"AA4242", "1968 Mercedes-Benz 280SE 1/18",
		"AUTOart", "Autoart",
		"3800000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Alb@", "pd1662028321.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/heavytang.jpg",
		107, 67,
		"FOV80056", "Russian Heavy Tank KV-1 1/32",
		"Forces of Valor", "FORCES of VALOR",
		"2200000", "0",
		"1", 1,
		"buc", "69",
		"", "pd674379106.htm",
		"", 1,
		"1/32", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/80052.jpg",
		107, 90,
		"80052", "German Elefant 1/32",
		"Forces of Valor", "FORCES of VALOR",
		"2200000", "0",
		"1", 1,
		"buc", "69",
		"", "pd-482499334.htm",
		"", 1,
		"1/32", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/ladasm.jpg",
		107, 69,
		"047", "Lada Niva 1/43",
		"IstModels", "Ixo",
		"1200000", "0",
		"1", 1,
		"buc", "18",
		"Culoare;Albastru@", "pd1894032094.htm",
		"", 1,
		"IstModels", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/ladasm.jpg",
		107, 69,
		"047", "Lada Niva 1/43",
		"IstModels", "Ixo",
		"1200000", "0",
		"1", 1,
		"buc", "37",
		"Culoare;Albastru@", "pd-1395479350.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/fiat500sm.bmp",
		107, 54,
		"500l", "Fiat 500 1/18",
		"Minichamps", "Minichamps",
		"2200000", "0",
		"1", 1,
		"buc", "23",
		"Culoare;Albastru@", "pd423708820.htm",
		"", 1,
		"Minichamps", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/images/nopicture.gif",
		75, 50,
		"PC6", "ALFA-ROMEO - 156 1/43",
		"", "",
		"440000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-389304677.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/simca fruite.jpg",
		107, 107,
		"PC8", "SIMCA - ARONDE MESSAGèRE - FRUITé 1/43",
		"", "",
		"440000", "0",
		"1", 1,
		"buc", "37",
		"", "pd900912727.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/hondansx43.jpg",
		107, 80,
		"PC29", "HONDA - NSX 1/43",
		"Delprado", "",
		"440000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-942305408.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/subaruwrc.jpg",
		107, 71,
		"SS07wrc", "2008 Subaru Impreza #19 WRC 1/18",
		"Sunstar", "Sunstar",
		"2200000", "0",
		"1", 1,
		"buc", "33",
		"", "pd1199946144.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/Mustang 2010 Gt500red.jpg",
		107, 80,
		"SC9-031", "2010 Ford Mustang Shelby GT500 1/18",
		"Shelby Collectibles", "ShelbyCollectibles",
		"2200000", "0",
		"1", 1,
		"buc", "30",
		"", "pd-2129865013.htm",
		"", 1,
		"shelby", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/macktype75.jpg",
		107, 53,
		"43001", "1935 Mack type 75BX 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd660760049.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/maximC1.jpg",
		107, 58,
		"RS53433", "1923 Maxim C1 Fire-Engine 1/43",
		"RoadSignature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd2020106631.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/Ahrens fox.jpg",
		107, 53,
		"RS43288", "1938 Ahrens Fox VC 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd115891981.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/lefrance.jpg",
		107, 55,
		"RS821", "1939 American Lafrance Type 550 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd1777070083.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/magirus.jpg",
		107, 63,
		"RS423", "1961 Magirus-Deutz Merkur 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd53281257.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/maximC1.jpg",
		107, 58,
		"RS53433-1", "1923 Maxim C1 Fire-Engine 1/43",
		"RoadSignature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-825286635.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/macktype75.jpg",
		107, 53,
		"43001-1", "1935 Mack type 75BX 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-2017740725.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/Ahrens fox.jpg",
		107, 53,
		"RS43288-1", "1938 Ahrens Fox VC 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-58580111.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/lefrance.jpg",
		107, 55,
		"RS821-1", "1939 American Lafrance Type 550 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-179021049.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/magirus.jpg",
		107, 63,
		"RS423-1", "1961 Magirus-Deutz Merkur 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-2048199539.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/images/nopicture.gif",
		75, 50,
		"4256", "Rulment 8x12x4",
		"", "",
		"50000", "0",
		"1", 1,
		"buc", "54",
		"", "pd1968334245.htm",
		"", 1,
		"FMH 1/18", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/aurelia.JPG",
		107, 67,
		"BB731", "1955 Lancia Aurelia 1/18",
		"BBurago", "bburago",
		"1200000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Rosu@", "pd1558702876.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/diablo43sm.jpg",
		107, 60,
		"DE234", "Lamborghini Diablo 1/43",
		"Delprado", "",
		"440000", "0",
		"1", 1,
		"buc", "37",
		"", "pd1268485347.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/starter box.jpg",
		107, 82,
		"CPV2-2-1", "Starter box pentru automodele nitro",
		"CPV", "",
		"2000000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-140632694.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/45t.jpg",
		107, 107,
		"50712-3", "Motor electric Brushless (fara perii) X12 3,5T",
		"LRP", "",
		"3900000", "0",
		"1", 1,
		"buc", "1",
		"", "pd-1208844100.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/prv_185x185_50840.jpg",
		107, 107,
		"50840", "Motor electric Brushless X11 13,5T",
		"LRP", "",
		"2500000", "0",
		"1", 1,
		"buc", "60",
		"", "pd1268918502.htm",
		"", 1,
		"LRP Electr", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/150g.jpg",
		107, 97,
		"J150-1", "Incarcator 1/32",
		"Joal", "Joal",
		"700000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-2076207854.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/X6Mred.jpg",
		107, 68,
		"X6M", "BMW X6 M 1/18 ",
		"Kyosho", "Kyosho",
		"3500000", "0",
		"1", 1,
		"buc", "20",
		"Culoare;Rosu@", "pd1616813546.htm",
		"", 1,
		"Kyosho", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/statie lrp.jpg",
		107, 196,
		"24-1-1", "Statie Radicomanda 2,4 Ghz F.H.S.S. 3 canale",
		"LRP- Sanwa", "",
		"4400000", "0",
		"1", 1,
		"buc", "0",
		"", "pd239571817.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/prv_prd_202x390_77413.jpg",
		107, 206,
		"77413-3", "Pachet 6 celule acumulatori 4600mAh HV2 Factory Team  Matched",
		"LRP", "",
		"3400000", "0",
		"1", 1,
		"buc", "1",
		"", "pd194587139.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/F100smm.jpg",
		107, 54,
		"SS5466", "1965 Ford F100 pick-up Styleside 1/18",
		"Sunstar", "Sunstar",
		"1800000", "0",
		"1", 1,
		"buc", "33",
		"Culoare;Alb@", "pd-1405572299.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/213738_1.jpg",
		107, 71,
		"Ky81A", "Audi A8 W12 1/18",
		"Kysoho", "Kyosho",
		"3500000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Auriu@", "pd3896180.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/IST073.jpg",
		107, 85,
		"Ist 073", "1976 ZUK A097 VAN 1/43",
		"IstModels", "Ixo",
		"1200000", "0",
		"1", 1,
		"buc", "18",
		"", "pd1268400716.htm",
		"", 1,
		"IstModels", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/IST073.jpg",
		107, 85,
		"Ist 073-1", "1976 ZUK A097 VAN 1/43",
		"IstModels", "Ixo",
		"1200000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-1042243238.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/CLS43.jpg",
		107, 71,
		"MN01", "2004 Mercedes Benz CLS 1/43",
		"Minichamps", "Minichamps",
		"1200000", "0",
		"1", 1,
		"buc", "23",
		"", "pd1873194391.htm",
		"", 1,
		"Minichamps", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/Clgold43.jpg",
		107, 48,
		"33De", "1999 Mercedes-Benz CL-Coupe 1/43",
		"Minichamps", "Minichamps",
		"1200000", "0",
		"1", 1,
		"buc", "23",
		"", "pd-213005923.htm",
		"", 1,
		"Minichamps", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/mclaren sm.jpg",
		107, 54,
		"MN4h3", "2000 McLaren F1 GTR Road Car 1/43",
		"Minichamps", "Minichamps",
		"1200000", "0",
		"1", 1,
		"buc", "23",
		"", "pd2029493523.htm",
		"", 1,
		"Minichamps", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/ahrens.jpg",
		107, 55,
		"Ahrens", "1925 Ahrens Fox N-S-4 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd692362310.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/stutz.jpg",
		107, 56,
		"43006", "1924 Stutz Model C Fire Engine 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd-2097335324.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/leyland.jpg",
		107, 69,
		"43009", "1934 Leyland FK-1 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd671632562.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/vettelsm.jpg",
		107, 53,
		"150090115", "2009 F1 Red Bull Renault Winner Chinese GP 1/18",
		"Minichamps", "Minichamps",
		"3000000", "0",
		"1", 1,
		"buc", "39",
		"Pilot;S. Vettel@", "pd-1208442630.htm",
		"", 1,
		"Formula 1", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/mclaren sm.jpg",
		107, 54,
		"MN4h3-1", "2000 McLaren F1 GTR Road Car 1/43",
		"Minichamps", "Minichamps",
		"1200000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-1657935077.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/CLS43.jpg",
		107, 71,
		"MN01-1", "2004 Mercedes Benz CLS 1/43",
		"Minichamps", "Minichamps",
		"1200000", "0",
		"1", 1,
		"buc", "37",
		"", "pd985715393.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/102141.jpg",
		107, 93,
		"kl08-3", "Automodel SPURT Nitro 4WD Truggy 1/8  RTR ",
		"KL-MODEL", "KL",
		"12400000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1270633414.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[482] = new Element(
		482, "assets/images/nopicture.gif",
		75, 50,
		"32350", "1959 Cadillac Eldorado Biarritz Convertible 1/32",
		"Signature Models", "Signature",
		"600000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Albastru@", "pd1743771000.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/mercedestlf.jpg",
		107, 60,
		"RS430013", "1950 Mercedes Benz TLF-50 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd-1653044688.htm",
		"1::1::20;", 1,
		"Road Legen", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/stutz.jpg",
		107, 56,
		"43006-1", "1924 Stutz Model C Fire Engine 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd987409293.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/ahrens.jpg",
		107, 55,
		"Ahrens-1", "1925 Ahrens Fox N-S-4 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd-1253502845.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/leyland.jpg",
		107, 69,
		"43009-1", "1934 Leyland FK-1 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd1757484649.htm",
		"1::0::20;", 1,
		"machete", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/mercedestlf.jpg",
		107, 60,
		"RS430013-1", "1950 Mercedes Benz TLF-50 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "37",
		"", "pd1282500287.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/Clgold43.jpg",
		107, 48,
		"33De-1", "1999 Mercedes-Benz CL-Coupe 1/43",
		"Minichamps", "Minichamps",
		"1200000", "0",
		"1", 1,
		"buc", "37",
		"", "pd1269303909.htm",
		"", 1,
		"machete", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/PM38212.jpg",
		107, 52,
		"38212", "1971 Audi C-100 1/18",
		"Signature Models Premiere Miniauture", "Signature",
		"2800000", "0",
		"1", 1,
		"buc", "31",
		"", "pd557029478.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/auburnsm.jpg",
		107, 81,
		"SM54231", "1935 Auburn 851 Speedster 1/32",
		"Signature Models", "Signature",
		"600000", "0",
		"1", 1,
		"buc", "36",
		"Culoare;Rosu@", "pd2018594756.htm",
		"", 1,
		"m322", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/images/nopicture.gif",
		75, 50,
		"32350", "1959 Cadillac Eldorado Biarritz Convertible 1/32",
		"Signature Models", "Signature",
		"600000", "0",
		"1", 1,
		"buc", "36",
		"Culoare;Albastru@", "pd1681208604.htm",
		"", 1,
		"m322", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/volga24.jpg",
		107, 53,
		"SG332", "1970 Volga 1/24",
		"Road Signature", "",
		"600000", "0",
		"1", 1,
		"buc", "35",
		"Culoare;Negru@", "pd-49144293.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/volga 57 verde.jpg",
		107, 53,
		"SG332-2", "1957 Gaz Wolga 1/24",
		"Road Signature", "",
		"600000", "0",
		"1", 1,
		"buc", "35",
		"Culoare;Vernil@", "pd-2029895442.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/71131a1.jpg",
		107, 54,
		"AA71131", "Chevrolet Corvette Mako Shark 1961 1/18",
		"AUTOart", "Autoart",
		"3500000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Albastru@", "pd-664993848.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/2000toring sm.jpg",
		107, 54,
		"AA70681-1", "BMW 2000 Touring 1/18",
		"AUTOart", "Autoart",
		"3330000", "0",
		"1", 1,
		"buc", "1",
		"", "pd303081835.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/alfa giullietasm.jpg",
		107, 54,
		"AA", "1957 Alfa Romeo Giulietta 1300 1/18",
		"AUTOart", "Autoart",
		"3800000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Rosu@", "pd935407327.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/leyland.jpg",
		107, 69,
		"43009-2", "1934 Leyland FK-1 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1590640793.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/stutz.jpg",
		107, 56,
		"43006-1-1", "1924 Stutz Model C Fire Engine 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1021506734.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/6310030.jpg",
		107, 73,
		"N1", "Elicopter Telecomandat, Aluminiu, 3 canale, 3 motoare",
		"NINCO AIR", "",
		"1500000", "0",
		"1", 1,
		"buc", "65",
		"", "pd2080438188.htm",
		"", 1,
		"R/C Elicop", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/nsxsm.jpg",
		107, 55,
		"MMH", "Honda Acura NSX 1/18",
		"MotorMax", "MotorMAx",
		"1000000", "0",
		"1", 1,
		"buc", "25",
		"", "pd-1724426196.htm",
		"", 1,
		"MotorMax", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/212568_1.jpg",
		107, 71,
		"SC11", "1965 Shelby Cobra 427 Engine 1/6 ",
		"Liberty Classics", "",
		"2000000", "0",
		"1", 1,
		"buc", "21",
		"", "pd-1937142702.htm",
		"1::1::20;", 1,
		"Liberty Cl", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/cayman.bmp",
		107, 65,
		"WL33", "Porsche Cayman S 1/18",
		"Welly", "Welly",
		"1300000", "0",
		"1", 1,
		"buc", "34",
		"Culoare;Rosu@", "pd-1986558642.htm",
		"", 1,
		"Welly", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/mustangboss302sm.jpg",
		107, 70,
		"We532", "1970 Ford Mustang Boss 302 1/18",
		"Welly", "Welly",
		"1300000", "0",
		"1", 1,
		"buc", "34",
		"Culoare;Rosu@", "pd-2132663363.htm",
		"", 1,
		"Welly", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/pontiac transam.jpg",
		107, 70,
		"GN22", "1989 Pontiac Trans AM 1/18 ",
		"Greenlight", "",
		"1800000", "0",
		"1", 1,
		"buc", "13",
		"Culoare;Visiniu@", "pd1583803878.htm",
		"", 1,
		"Greenlight", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/elcamino.jpg",
		107, 77,
		"ERT42", "1970 Chevrolet El Camino SS 1/18",
		"ERTL", "ERTL",
		"1800000", "0",
		"1", 1,
		"buc", "10",
		"", "pd618255643.htm",
		"", 1,
		"ERTL", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/slr43sm.jpg",
		107, 54,
		"AA2", "McLaren Mercedes SLR 1/43",
		"AUTOart", "",
		"1500000", "0",
		"1", 1,
		"buc", "37",
		"", "pd1275650606.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/muricelago43sm.jpg",
		107, 54,
		"AA54511", "Lamborghini Murcielago 1/43",
		"AUTOart", "",
		"1500000", "0",
		"1", 1,
		"buc", "37",
		"", "pd2064119000.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/m3 cutie43.JPG",
		107, 80,
		"MN9", "BMW M3 Coupe 1/43",
		"Minichamps", "",
		"1500000", "0",
		"1", 1,
		"buc", "37",
		"Culoare;Negru@", "pd1074061924.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/m3 cutie43.JPG",
		107, 80,
		"MN9", "BMW M3 Coupe 1/43",
		"Minichamps", "",
		"1500000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Negru@", "pd-1701845045.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/m3 cutie43.JPG",
		107, 80,
		"MN9", "BMW M3 Coupe 1/43",
		"Minichamps", "",
		"1500000", "0",
		"1", 1,
		"buc", "23",
		"Culoare;Negru@", "pd1167652938.htm",
		"1::1::20;", 1,
		"Minichamps", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/slr43sm.jpg",
		107, 54,
		"AA2-1", "McLaren Mercedes SLR 1/43",
		"AUTOart", "",
		"1500000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-165777056.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/slr43sm.jpg",
		107, 54,
		"AA2-2", "McLaren Mercedes SLR 1/43",
		"AUTOart", "",
		"1500000", "0",
		"1", 1,
		"buc", "5",
		"", "pd-6661254.htm",
		"1::1::20;", 1,
		"Autoart", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/volga24.jpg",
		107, 53,
		"SG332-4", "1970 Volga 1/24",
		"Road Signature", "Road Signature",
		"600000", "0",
		"1", 1,
		"buc", "29",
		"Culoare;Bleumarin@", "pd-1778444300.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/212568_1.jpg",
		107, 71,
		"SC11-1", "1965 Shelby Cobra 427 Engine 1/6 ",
		"Liberty Classics", "",
		"2000000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1207172101.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/208402_2.jpg",
		107, 80,
		"SS", "1959 Pontiac Bonneville 1/18",
		"Sunstar Platinum", "Sunstar",
		"3200000", "0",
		"1", 1,
		"buc", "33",
		"", "pd-1647368677.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/camion plug.jpg",
		107, 71,
		"HG611", "1946 Chevrolet Camion cu plug 1/16",
		"Highway 61", "Highway61",
		"3800000", "0",
		"1", 1,
		"buc", "15",
		"", "pd-2133817919.htm",
		"", 1,
		"Highway 61", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/111541_1.jpg",
		107, 53,
		"MN8311", "1988 BMW Z1 1/18",
		"Minichamps", "Minichamps",
		"3660000", "0",
		"1", 1,
		"buc", "23",
		"Culoare;Negru@", "pd-382507820.htm",
		"1::1::40;", 1,
		"Minichamps", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/111541_1.jpg",
		107, 53,
		"MN8311", "1988 BMW Z1 1/18",
		"Minichamps", "Minichamps",
		"3660000", "0",
		"1", 1,
		"buc", "1",
		"Culoare;Negru@", "pd964667170.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/fw.jpg",
		107, 54,
		"FEMIn", "1971 Ford Escort 1/18",
		"Minichamps", "Minichamps",
		"3660000", "0",
		"1", 1,
		"buc", "23",
		"Culoare;Galben@", "pd-136070473.htm",
		"1::1::40;", 1,
		"Minichamps", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/fw.jpg",
		107, 54,
		"FEMIn", "1971 Ford Escort 1/18",
		"Minichamps", "Minichamps",
		"3660000", "0",
		"1", 1,
		"buc", "1",
		"Culoare;Galben@", "pd1744968637.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/xx.jpg",
		107, 70,
		"We432", "Chevrolet Avalanche 1/18",
		"Welly", "Welly",
		"1500000", "0",
		"1", 1,
		"buc", "34",
		"Culoare;Negru@", "pd1929393796.htm",
		"", 1,
		"Welly", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/suburbansm.jpg",
		107, 70,
		"W334", "Chevrolet Suburban 1/18",
		"Welly", "Welly",
		"1500000", "0",
		"1", 1,
		"buc", "34",
		"Culoare;Negru@", "pd724044395.htm",
		"", 1,
		"Welly", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/202129_1.jpg",
		107, 50,
		"RS843", "1961 Lincoln Continental 1/18",
		"Road Signature", "Road Signature",
		"2800000", "0",
		"1", 1,
		"buc", "29",
		"", "pd1567310481.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/356por.JPG",
		107, 50,
		"SMPM1", "1950 Porsche 356 Coupe 1/18",
		"Signature Models Premier Miniature", "Signature",
		"2400000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Argintiu@", "pd82114025.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/stratosm.JPG",
		107, 79,
		"SD42", "1974 Lancia Stratos 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"Culoare;Rosu@", "pd555409995.htm",
		"1::1::20;", 1,
		"Solido", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/stratosm.JPG",
		107, 79,
		"SD42", "1974 Lancia Stratos 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Rosu@", "pd654010295.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/sw35sm.bmp",
		107, 80,
		"SG12x", "1935 Maybach SW35 Limousine 1/18",
		"Signature Models Premier Miniature", "Signature",
		"3000000", "0",
		"1", 1,
		"buc", "31",
		"", "pd1323616081.htm",
		"", 1,
		"Signature", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/356por.JPG",
		107, 50,
		"SMPM1", "1950 Porsche 356 Coupe 1/18",
		"Signature Models Premier Miniature", "Signature",
		"2400000", "0",
		"1", 1,
		"buc", "31",
		"Culoare;Argintiu@", "pd-1406771414.htm",
		"1::1::20;", 1,
		"Signature", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/corvette stingsm.JPG",
		107, 54,
		"AA32556", "1963 Chevrolet Corvette Coupe 1/18",
		"AUTOart", "Autoart",
		"3900000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Albastru@", "pd1707040383.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/GT small.JPG",
		107, 66,
		"NV227", "Citroen GT Concept 1/18",
		"Norev", "Norev",
		"2000000", "0",
		"1", 1,
		"buc", "26",
		"", "pd1278940361.htm",
		"", 1,
		"Norev", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/g55sm.JPG",
		107, 54,
		"AA2344", "Mercedes-Benz G 55 AMG 1/43",
		"AUTOart", "Autoart",
		"1700000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Argintiu@", "pd-2033986334.htm",
		"1::1::20;", 1,
		"Autoart", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/g55sm.JPG",
		107, 54,
		"AA2344", "Mercedes-Benz G 63 AMG 1/43",
		"AUTOart", "Autoart",
		"1700000", "0",
		"1", 1,
		"buc", "0",
		"Culoare;Argintiu@", "pd-1084510111.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/g55sm.JPG",
		107, 54,
		"AA2344", "Mercedes-Benz G 63 AMG 1/43",
		"AUTOart", "Autoart",
		"1700000", "0",
		"1", 1,
		"buc", "37",
		"Culoare;Argintiu@", "pd1280235572.htm",
		"1::1::20;", 1,
		"machete", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/caprism.JPG",
		107, 107,
		"INj", "Ford Capri Mk3 1/18",
		"NOREV", "Norev",
		"2200000", "0",
		"1", 1,
		"buc", "26",
		"Culoare;Negru@", "pd-2076109347.htm",
		"", 1,
		"Norev", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/maximC1.jpg",
		107, 58,
		"RS53433-2", "1923 Maxim C1 Fire-Engine 1/43",
		"RoadSignature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd177217924.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/ahrens.jpg",
		107, 55,
		"Ahrens-2", "1925 Ahrens Fox N-S-4 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd302189694.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/macktype75.jpg",
		107, 53,
		"43001-2", "1935 Mack type 75BX 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1283410776.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/C4michelinSM.JPG",
		107, 56,
		"SD9222", "1930 Citroen C4 Pneu Michelin 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "32",
		"", "pd1281525726.htm",
		"1::1::20;", 1,
		"Solido", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/Ahrens fox.jpg",
		107, 53,
		"RS43288-2", "1938 Ahrens Fox VC 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd1644230367.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/Dennis Light Four fire.jpg",
		107, 69,
		"RS5464-1-1", "1938 Dennis Light Four fire engine 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-459732862.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/lefrance.jpg",
		107, 55,
		"RS821-2", "1939 American Lafrance Type 550 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1608238975.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/mercedestlf.jpg",
		107, 60,
		"RS430013-2", "1950 Mercedes Benz TLF-50 1/43",
		"Road Signature Yatming", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-390479220.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/magirus.jpg",
		107, 63,
		"RS423-2", "1961 Magirus-Deutz Merkur 1/43",
		"Road Signature", "Road Signature",
		"800000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-1435355629.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/skylark.jpg",
		107, 80,
		"MM3321", "1953 Buick Skylark 1/18",
		"Motor Max", "MotorMAx",
		"1100000", "0",
		"1", 1,
		"buc", "25",
		"Culoare;Maro@", "pd-664246199.htm",
		"", 1,
		"MotorMax", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/39sunshine.JPG",
		107, 60,
		"RS8932", "1939 Lincoln Sunshine 1/24",
		"Road Signature Presidential Series", "Road Signature",
		"2000000", "0",
		"1", 1,
		"buc", "29",
		"", "pd1704138098.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/83 cadilac presidential.JPG",
		107, 50,
		"RS0i42", "1983 Cadillac Presidential limousine 1/24",
		"Road Signature Presidential Series", "Road Signature",
		"2000000", "0",
		"1", 1,
		"buc", "29",
		"", "pd-406093584.htm",
		"", 1,
		"Road Legen", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/ltaxism.JPG",
		107, 107,
		"SS4352", "London Taxi 1/18",
		"Sunstar", "Sunstar",
		"1800000", "0",
		"1", 1,
		"buc", "33",
		"", "pd-1829242522.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/203322_1.jpg",
		107, 59,
		"SN832", "1981 Ford Escort Mk3 1/18",
		"Sunstar", "Sunstar",
		"2000000", "0",
		"1", 1,
		"buc", "1",
		"Culoare;Maro@", "pd-51461483.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/ford falcon futura.JPG",
		107, 58,
		"SS89432", "Ford Falcon cabrio 1963 1/18",
		"Sunstar", "Sunstar",
		"2000000", "0",
		"1", 1,
		"buc", "1",
		"Culoare;Rosu@", "pd1383829458.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/C4michelinSM.JPG",
		107, 56,
		"SD9222-1", "1930 Citroen C4 Pneu Michelin 1/18",
		"Solido", "Solido",
		"1500000", "0",
		"1", 1,
		"buc", "0",
		"", "pd-33436482.htm",
		"", 1,
		"oferta", "20",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/39sunshine.JPG",
		107, 60,
		"RS8932-1", "1939 Lincoln Sunshine 1/24",
		"Road Signature Presidential Series", "Road Signature",
		"2000000", "0",
		"1", 1,
		"buc", "35",
		"", "pd388828887.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/83 cadilac presidential.JPG",
		107, 50,
		"RS0i42-1", "1983 Cadillac Presidential limousine 1/24",
		"Road Signature Presidential Series", "Road Signature",
		"2000000", "0",
		"1", 1,
		"buc", "35",
		"", "pd-1659786055.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/vettelsm.jpg",
		107, 53,
		"150090115", "2009 F1 Red Bull Renault Winner Chinese GP 1/18",
		"Minichamps", "Minichamps",
		"3000000", "0",
		"1", 1,
		"buc", "23",
		"Pilot;S. Vettel@", "pd-1030678600.htm",
		"", 1,
		"Minichamps", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/mercury park lane cabrio.jpg",
		107, 38,
		"SS5152", "1959 Mecury Park lane Convertible 1/18",
		"Sunstar Platinum", "Sunstar",
		"2800000", "0",
		"1", 1,
		"buc", "33",
		"", "pd1863149358.htm",
		"", 1,
		"Sunstar", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/r390sm.jpg",
		107, 54,
		"AA89776-1", "NISSAN R390 GT1 CALSONIC LE MANS 1997 1/18",
		"AUTOart Signature", "Autoart",
		"7000000", "0",
		"1", 1,
		"buc", "40",
		"", "pd-1071909517.htm",
		"", 1,
		"DTM", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/959silversm.jpg",
		107, 54,
		"AA78081", "Porsche 959 1/18",
		"AUTOart", "Autoart",
		"4500000", "0",
		"1", 1,
		"buc", "5",
		"Culoare;Argintiu@", "pd1630914001.htm",
		"", 1,
		"Autoart", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/50544sm.jpg",
		107, 68,
		"HG50463-3-1", "1957 Chevrolet 150 Fire Chief 1/18",
		"Highway61", "Highway61",
		"3660000", "0",
		"1", 1,
		"buc", "1",
		"", "pd633522461.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/aurelia.JPG",
		107, 67,
		"BB731", "1955 Lancia Aurelia 1/18",
		"BBurago", "bburago",
		"1200000", "0",
		"1", 1,
		"buc", "8",
		"Culoare;Rosu@", "pd805500416.htm",
		"1::1::20;", 1,
		"BBUrago", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/chevelle.JPG",
		107, 46,
		"MA31890", "1971 Chevrolet Chevelle SS454 1/18",
		"Maisto", "",
		"1400000", "0",
		"1", 1,
		"buc", "22",
		"Culoare;Negru@", "pd-168046701.htm",
		"", 1,
		"Maisto", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/e class.JPG",
		107, 46,
		"MA", "2009 Mercedes Benz E class 1/18",
		"Maisto", "Maisto",
		"1400000", "0",
		"1", 1,
		"buc", "22",
		"Culoare;Negru@", "pd359847317.htm",
		"", 1,
		"Maisto", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/stag2.JPG",
		107, 80,
		"RE9894", "1978 Triumph Stag 1/18",
		"Revell/Jadi", "Revell",
		"1650000", "0",
		"1", 1,
		"buc", "28",
		"Culoare;Alb@", "pd616506503.htm",
		"1::1::40;", 1,
		"Revell", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/stag2.JPG",
		107, 80,
		"RE9894", "1978 Triumph Stag 1/18",
		"Revell/Jadi", "Revell",
		"1650000", "0",
		"1", 1,
		"buc", "1",
		"Culoare;Alb@", "pd1433797194.htm",
		"", 1,
		"40%", "40",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/MATM6713sm.JPG",
		107, 80,
		"6713", "Ferrari 248 F1 Italian GP Champion 1/18",
		"Hotwheels", "Hotworks",
		"2800000", "0",
		"1", 1,
		"buc", "16",
		"", "pd-2010979414.htm",
		"", 1,
		"machete 1", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/MATM6713sm.JPG",
		107, 80,
		"6713-1", "Ferrari 248 F1 Italian GP Champion 1/18",
		"Hotwheels", "Hotworks",
		"2800000", "0",
		"1", 1,
		"buc", "39",
		"", "pd1283782280.htm",
		"", 1,
		"Formula 1", "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>Ne pare rau !, nu am gasit nimic care sa se potriveasca</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Nu ai introdus un criteriu de cautare!</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();
			};
		};