	// 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/btnaddtobag2_4.gif" width="150" height="31" alt=" adaugă în coș " 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 anterior cu TVA:&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 cu TVA:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on demand";
			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/dualsim_online_panglica_A_small.jpg",
		120, 120,
		"DS-03", "ADAPTOR DUAL SIM ONLINE PANGLICA-A",
		"in STOC", "",
		"30", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1160340973.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/KiT_10dualsim+1cleste_small.jpg",
		120, 120,
		"DS-05", "KiT distribuitor: ADAPTOARE DUAL SIM ONLINE SUBTIRE",
		"EPUIZAT din Martie 2010, nu mai revine in stoc; Contine: 10 dual sim + 1 cleste miniSiM -50% reducere", "",
		"170", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1179810082.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Tigra-Bike-Suport-iPhone-poza1-mic.jpg",
		120, 120,
		"S-09", "Suport TIGRA Bike Mount pentru montaj iPhone si iPod pe bicicleta",
		"in STOC, rezistent la apa si mizerie, compatibil cu iPhone 3G, 3GS, 4, Apple iPod touch 3, 4", "",
		"140", "6",
		"1", 1,
		"bucata", "14,11",
		"", "pd-1252679472.htm",
		"", 1,
		"14,11", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/iGlo-Unique-A103-negru-a1-small.jpg",
		120, 120,
		"T-56-negru", "iGlo Unique A103: Smartphone Dual SiM cu Android ver.2.2.1 -negru",
		"in STOC, CPU 460Mhz, port Wi-Fi, localizare LBS, ecran tactil rezistiv 3.5&quot;, agenda infinita, baterie 1500mAh", "SAMSUNG",
		"480", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1324340823.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/iGlo-Unique-A101-3G-negru-a-mic.jpg",
		120, 120,
		"T-57-negru", "iGlo Unique A101: Smartphone Dual SiM 3G cu Android ver.2.3.4 -negru",
		"EPUIZAT din prima zi - revine in stoc pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM11 la 650Mhz, 3G WCDMA/GSM internet la viteza 7.2mbps, port Wi-Fi, navigatie GPS, ecran tactil capacitiv 3.5&quot;, agenda infinita, baterie 1500mAh", "iGlo",
		"680", "24",
		"1", 1,
		"bucata", "2",
		"", "pd-103426042.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/iGlo-Unique-A103-alb-a1-small.jpg",
		120, 120,
		"T-56-alb", "iGlo Unique A103: Smartphone Dual SiM cu Android ver.2.2.1 -alb",
		"in STOC, CPU 460Mhz, port Wi-Fi, localizare LBS, ecran tactil rezistiv 3.5&quot;, agenda infinita, baterie 1500mAh", "SAMSUNG",
		"480", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1103807793.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/iGlo-Unique-A103-galben-a1-small.jpg",
		120, 120,
		"T-56-galben", "iGlo Unique A103: Smartphone Dual SiM cu Android ver.2.2.1 -galben",
		"in STOC, CPU 460Mhz, port Wi-Fi, localizare LBS, ecran tactil rezistiv 3.5&quot;, agenda infinita, baterie 1500mAh", "SAMSUNG",
		"480", "24",
		"1", 1,
		"bucata", "2",
		"", "pd2069647048.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/iGlo-Unique-A101-3G-alb-a-small.jpg",
		120, 120,
		"T-57-alb", "iGlo Unique A101: Smartphone Dual SiM 3G cu Android ver.2.3.4 -alb",
		"EPUIZAT din prima zi - revine in stoc pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM11 la 650Mhz, 3G WCDMA/GSM internet la viteza 7.2mbps, port Wi-Fi, navigatie GPS, ecran tactil capacitiv 3.5&quot;, agenda infinita, baterie 1500mAh", "iGlo",
		"680", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1444722043.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/iGlo-Unique-A101-3G-galben-a-small.jpg",
		120, 120,
		"T-57-galben", "iGlo Unique A101: Smartphone Dual SiM 3G cu Android ver.2.3.4 -galben",
		"EPUIZAT din prima zi - revine in stoc pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM11 la 650Mhz, 3G WCDMA/GSM internet la viteza 7.2mbps, port Wi-Fi, navigatie GPS, ecran tactil capacitiv 3.5&quot;, agenda infinita, baterie 1500mAh", "iGlo",
		"680", "24",
		"1", 1,
		"bucata", "2",
		"", "pd-541902662.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/husa-krusell-piele-intoarsa-negru.jpg",
		120, 120,
		"L-01-negru1", "Krusell Luna Pouch -husa din piele adevarata, intoarsa, negru, marime XL",
		"in STOC, ideala pentru Samsung Galaxy, iPhone 3/4 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1324415527.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/samsung-microSD-16GB-clasa10-small.jpg",
		120, 120,
		"M-17", "SAMSUNG microSDHC 16GB Clasa 10 - card de memorie",
		"in STOC, adaptor SD", "",
		"100", "12",
		"1", 1,
		"bucata", "16",
		"", "pd1324489776.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/husa-krusell-piele-clasica-negru.jpg",
		120, 120,
		"L-01-negru2", "Krusell Luna Pouch -husa din piele adevarata, clasica, negru, marime XL",
		"in STOC, ideala pentru Samsung Galaxy, iPhone 3/4 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1324671657.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/dualsim_online_panglica_B_small.jpg",
		120, 120,
		"DS-02", "ADAPTOR DUAL SIM ONLINE PANGLICA-B",
		"in STOC", "",
		"30", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1161436935.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/dualsim_online_subtire_nu consuma bateria_small.jpg",
		120, 120,
		"DS-07", "ADAPTOR DUAL SIM ONLINE SUBTIRE",
		"EPUIZAT din Martie 2010, nu mai revine in stoc", "",
		"30", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1140809872.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Cleste_8_small1.gif",
		120, 120,
		"DS-04", "CLESTE miniSIM",
		"in STOC, Taie perfect cartela GSM in format miniSIM necesar utilizarii in adaptoarele DUAL SIM", "",
		"40", "12",
		"1", 1,
		"bucata", "0",
		"", "pd846215580.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/cablu_usb_tinno_KT01-small.jpg",
		120, 169,
		"C-14", "Cablu de date USB dedicat compatibil cu WATCH MOBILE Q9, Q6 versiune 2011",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd1299050483.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/samsung-flip-cover-C1A2-galaxy-S2-portocaliu.jpg",
		120, 120,
		"Cp-08-orange", "Carcasa Flip pentru Samsung Galaxy S II   -alb/portocaliu",
		"in STOC, accesoriu original COD: EF-C1A2, inlocuieste capacul spate cu acest capac cu flip, protectie pentru ecran", "",
		"90", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1268788641.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/husa-krusell-piele-intoarsa-maron.jpg",
		120, 120,
		"L-01-maron", "Krusell Luna Pouch -husa din piele adevarata, intoarsa, maron, marime XL",
		"in STOC, ideala pentru Samsung Galaxy, iPhone 3/4 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-931909449.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/husa-krusell-piele-intoarsa-maron.jpg",
		120, 120,
		"L-02-maron", "Krusell Luna Pouch, husa din piele adevarata, intoarsa -maron, marime L",
		"in STOC, ideala pentru Tinno KT02, KT04, iGlo A1xx, Samsung B7722 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-1801678285.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/husa-krusell-piele-intoarsa-negru.jpg",
		120, 120,
		"L-02-negru1", "Krusell Luna Pouch, husa din piele adevarata, intoarsa -negru, marime L",
		"EPUIZAT, ideala pentru Tinno KT02, KT04, iGlo A1xx, Samsung B7722 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-1954467943.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/husa-krusell-piele-clasica-negru.jpg",
		120, 120,
		"L-02-negru2", "Krusell Luna Pouch, husa din piele adevarata, clasica -negru, marime L",
		"in STOC, ideala pentru Tinno KT02, KT04, iGlo A1xx, Samsung B7722 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1029563247.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/husa-krusell-piele-clasica-alb.jpg",
		120, 120,
		"L-02-alb", "Krusell Luna Pouch, husa din piele adevarata, clasica -nisip alb, marime L",
		"in STOC, ideala pentru Tinno KT02, KT04, iGlo A1xx, Samsung B7722 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-1850977483.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/husa-krusell-piele-clasica-alb.jpg",
		120, 120,
		"L-03-alb", "Krusell Luna Pouch, husa din piele adevarata, clasica -nisip alb, marime M",
		"in STOC, ideala pentru Samsung C6712 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-1847287701.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/husa-krusell-piele-intoarsa-maron.jpg",
		120, 120,
		"L-03-maron", "Krusell Luna Pouch, husa din piele adevarata, intoarsa -maron, marime M",
		"in STOC, ideala pentru Samsung C6712 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd269600913.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/husa-krusell-piele-intoarsa-negru.jpg",
		120, 120,
		"L-03-negru1", "Krusell Luna Pouch, husa din piele adevarata, intoarsa -negru, marime M",
		"in STOC, ideala pentru Samsung C6712 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1425868071.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/husa-krusell-piele-clasica-negru.jpg",
		120, 120,
		"L-03-negru2", "Krusell Luna Pouch, husa din piele adevarata, clasica -negru, marime M",
		"EPUIZAT, ideala pentru Samsung C6712 si altele...", "",
		"70", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-1681380435.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/husa-samsung-mini.jpg",
		120, 120,
		"L-05", "Samsung Mini portofel, husa din piele adevarata, clasica, negru, marime S",
		"in STOC, dimensiune 8x5cm, contine si clema de prindere la curea, ideala pentru telefonul iGlo L900", "",
		"30", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-191951453.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/cablu_USB_micro-USB-small.jpg",
		120, 120,
		"C-18-1", "Cablu de date USB Blackberry cu mufa micro-USB   -Marime 25cm",
		"in STOC, cablu scurt de mare viteza, compatibil cu orice telefon ce se alimenteaza prin mufa micro-USB: Nokia, Samsung, LG, Sony-Ericsson, HTC, Blackberry, iPro, Tinno, iGlo, etc.", "SAMSUNG",
		"20", "6",
		"1", 1,
		"bucata", "19",
		"", "pd560453769.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/cablu_USB_micro-USB-small.jpg",
		120, 120,
		"C-18-1-1", "Cablu de date USB Sony Ericsson cu mufa micro-USB   -Marime 17cm",
		"in STOC, cablu scurt de mare viteza, compatibil cu orice telefon ce se alimenteaza prin mufa micro-USB: Nokia, Samsung, LG, Sony-Ericsson, HTC, Blackberry, iPro, Tinno, iGlo, etc.", "SAMSUNG",
		"20", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-1864731169.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/cablu_USB_samsung D780, D880_small.jpg",
		120, 169,
		"C-17-1", "Cablu de date USB SAMSUNG cu mufa S20 - Compatibil si cu TINNO KT02",
		"in STOC, Mufa tip S20, COD: APCBS10BB, compatibil cu SAMSUNG Dual D780, D880, D980, C5212, B5702, C6112, B5722, E2152 si multe altele; Compatibil si cu Tinno KT02", "",
		"20", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-1364792539.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/cablu_usb_tinno_KT01-small.jpg",
		120, 169,
		"C-15", "Cablu de date USB dedicat compatibil cu TINNO KT04i",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-814564901.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[31] = new Element(
		31, "",
		0, 0,
		"L-04-negru", "Samsung Pouch -husa din piele adevarata, clasica, negru, marime S",
		"in STOC, EF-C935L, compatibila cu Samsung S3650 Corby", "",
		"40", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-306888831.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[32] = new Element(
		32, "",
		0, 0,
		"L-04-alb", "Samsung Pouch -husa din piele adevarata, clasica, negru-alb, marime S",
		"in STOC, EF-C935L, compatibila cu Samsung S3650 Corby", "",
		"40", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-1241836137.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"L-04-galben", "Samsung Pouch -husa din piele adevarata, clasica, negru-galben, marime S",
		"in STOC, EF-C935L, compatibila cu Samsung S3650 Corby", "",
		"40", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-296193635.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"L-04-roz", "Samsung Pouch -husa din piele adevarata, clasica, negru-roz, marime S",
		"in STOC, EF-C935L, compatibila cu Samsung S3650 Corby", "",
		"40", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd-2002615021.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/iGlo-Aquila-A801-3G-negru-a-small.jpg",
		120, 120,
		"T-58-negru", "iGlo Aquila A801: Smartphone Dual SiM 3G cu Android ver.2.3.4 -negru",
		"EPUIZAT din prima zi - revine in stoc pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM11 la 650Mhz, 3G WCDMA/GSM internet la viteza 7.2mbps, port Wi-Fi, navigatie GPS, ecran tactil capacitiv 4.3&quot;, agenda infinita, baterie 1320mAh", "SAMSUNG",
		"840", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1325461720.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/samsung-flip-cover-C1A2-galaxy-S2-vernil.jpg",
		120, 120,
		"Cp-08-vernil", "Carcasa Flip pentru Samsung Galaxy S II   -alb/vernil",
		"in STOC, accesoriu original COD: EF-C1A2W, inlocuieste capacul spate cu acest capac cu flip, protectie pentru ecran", "",
		"90", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1326389014.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/krusell_g209884-small.jpg",
		120, 120,
		"Cp-07-red", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: XL, rosu",
		"in STOC, compatibila cu foarte multe telefoane plate: HTC Desire, LG Optimus, Motorola Droid, Samsung Galaxy S 2, Sony Ericsson X10, Nokia si multe altele...", "",
		"140", "12",
		"1", 1,
		"bucata", "15",
		"", "pd-1989317836.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/krusell-yellow-small.jpg",
		120, 120,
		"Cp-06-yellow", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: L, galben",
		"in STOC, compatibila cu foarte multe telefoane plate: iPhone, Blackberry, Samsung, Nokia, iGlo A101 si multe altele...", "",
		"140", "6",
		"1", 1,
		"bucata", "15",
		"", "pd-1768939346.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/krusell-orange-small.jpg",
		120, 120,
		"Cp-06-orange", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: L, portocaliu",
		"in STOC, compatibila cu foarte multe telefoane plate: iPhone, Blackberry, Samsung, Nokia, iGlo A101 si multe altele...", "",
		"140", "6",
		"1", 1,
		"bucata", "15",
		"", "pd1227575827.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/baterie-samsung-EB-F1A2GBU-galaxy-s-II.jpg",
		120, 120,
		"B-49", "Baterie originala SAMSUNG, COD: EB-F1A2GBU Li-ion 1650mAh",
		"in STOC, compatibila cu SAMSUNG Galaxy S II, I9100, I9100G, I9100T, I9103 R/Z si altele...", "",
		"70", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1685788082.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/suport-auto-samsung-note.jpg",
		120, 120,
		"S-10", "Suport auto pentru Galaxy NOTE - Samsung ECS-K1E1 + incarcator auto",
		"in STOC, compatibil cu Samsung Galaxy Note N7000, profilat specific cu linia tabletei; se poate roti in orice pozitie", "",
		"150", "6",
		"1", 1,
		"bucata", "14",
		"", "pd2116844336.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/K1-black-d-small.jpg",
		120, 120,
		"TC-11-negru", "WATCH Mobile K1 Sport: Telefon in forma de CEAS -negru",
		"in STOC, foarte usor greutate 59gr, Busola, ecran tactil 4.6cm, Bluetooth, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"500", "24",
		"1", 1,
		"bucata", "9",
		"", "pd1326558947.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/K1-pink-b-small.jpg",
		120, 120,
		"TC-11-roz", "WATCH Mobile K1 Sport: Telefon in forma de CEAS -roz",
		"in STOC, foarte usor greutate 59gr, Busola, ecran tactil 4.6cm, Bluetooth, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"500", "24",
		"1", 1,
		"bucata", "9",
		"", "pd400345538.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/K1-green-b-small.jpg",
		120, 120,
		"TC-11-verde", "WATCH Mobile K1 Sport: Telefon in forma de CEAS -verde",
		"in STOC, foarte usor greutate 59gr, Busola, ecran tactil 4.6cm, Bluetooth, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"500", "24",
		"1", 1,
		"bucata", "9",
		"", "pd-547303203.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/K1-cream-a-small.jpg",
		120, 120,
		"TC-11-bej", "WATCH Mobile K1 Sport: Telefon in forma de CEAS -bej",
		"in STOC, foarte usor greutate 59gr, Busola, ecran tactil 4.6cm, Bluetooth, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"500", "24",
		"1", 1,
		"bucata", "9",
		"", "pd378857508.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/iGlo-Andromeda-M710+3G-c1-small.jpg",
		120, 120,
		"TP-02-negru", "iGlo Andromeda M710+3G: Tableta cu Android ver.2.3.4 + Modem 3G Huawei E1750 -negru",
		"in CURAND - Lansare in Romania pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM Cortex 8 la 1.0 GHz, GPU: Mali-400, WiFi, 4GB, ecran tactil capacitiv 7&quot; (17.8cm), grosime 9.9cm, greutate 329gr, baterie 4500mAh", "iGlo",
		"680", "24",
		"1", 1,
		"bucata", "1",
		"", "pd1326944868.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/iGlo-Andromeda-M710+3G-a-small.jpg",
		120, 120,
		"TP-02-alb", "iGlo Andromeda M710+3G: Tableta cu Android ver.2.3.4 + Modem 3G Huawei E1750 -negru",
		"in CURAND - Lansare in Romania pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM Cortex 8 la 1.0 GHz, GPU: Mali-400, WiFi, 4GB, ecran tactil capacitiv 7&quot; (17.8cm), grosime 9.9cm, greutate 329gr, baterie 4500mAh", "iGlo",
		"680", "24",
		"1", 1,
		"bucata", "1",
		"", "pd-1226680373.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/iGlo-Andromeda-M710-c1-small.jpg",
		120, 120,
		"TP-01-negru", "iGlo Andromeda M710: Tableta cu Android ver.2.3.4 -negru",
		"in CURAND - Lansare in Romania pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM Cortex 8 la 1.0 GHz, GPU: Mali-400, WiFi, 4GB, ecran tactil capacitiv 7&quot; (17.8cm), grosime 9.9cm, greutate 329gr, baterie 4500mAh", "iGlo",
		"540", "24",
		"1", 1,
		"bucata", "1",
		"", "pd-1420040610.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/iGlo-Andromeda-M710-a1-small.jpg",
		120, 120,
		"TP-01-alb", "iGlo Andromeda M710: Tableta cu Android ver.2.3.4 -alb",
		"in CURAND - Lansare in Romania pe 16 Februarie 2012 - puteti lansa comanda in avans, CPU: ARM Cortex 8 la 1.0 GHz, GPU: Mali-400, WiFi, 4GB, ecran tactil capacitiv 7&quot; (17.8cm), grosime 9.9cm, greutate 329gr, baterie 4500mAh", "iGlo",
		"540", "24",
		"1", 1,
		"bucata", "1",
		"", "pd1410226189.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/incarcator_auto_USB_compatibil cu CECT Q638+, TK806, C320, A200, ZT6688, T689_small.jpg",
		120, 169,
		"I-01-01", "Incarcator auto cu port USB, compatibil cu CECT Q638+, TK806, C320, A200, ZT6688, T689",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1182545410.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/incarcator_euro_usb_small.jpg",
		120, 120,
		"Iu-01", "Incarcator de priza cu mufa euro si port USB",
		"Compatibil cu orice telefon sau player mp3 ce se alimenteaza si prin cablu USB, inclusiv telefoane dual sim CECT, CESIM, ZTC, TiNNO.", "",
		"10", "6",
		"1", 1,
		"bucata", "18",
		"", "pd165635955.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/KiT_3dualsim+1cleste_small.jpg",
		120, 120,
		"DS-06", "KiT: ADAPTOARE DUAL SIM ONLINE SUBTIRE",
		"EPUIZAT din Martie 2010, nu mai revine in stoc; Contine: 3 dual sim + 1 cleste miniSIM -30% reducere ", "",
		"91", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1164232284.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/incarcator_universal_orice_baterie_c.jpg",
		120, 120,
		"Iu-03", "Incarcator de baterie UNIVERSAL 1 cu afisaj LCD",
		"in STOC, incarca independent orice baterie de telefon mobil scoasa din telefon", "",
		"40", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1210983776.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/cablu_usb_dubao_small.jpg",
		120, 169,
		"C-02", "Cablu de date USB dedicat compatibil cu telefon Tinno LT X3, Dubao 728, O3 818",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd1470067250.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/cablu_usb_cect_small.jpg",
		120, 169,
		"C-01", "Cablu de date USB dedicat compatibil cu telefon CECT Q638+, TK806, Q638, C320, T689, ZTC ZT6688",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd1204764004.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/casti_stereo_CECT Q638+, TK806, C320, A200, ZT6688, T689_small.jpg",
		120, 169,
		"CA-01", "Casti stereo cu microfon pentru telefon dual sim CECT T520, T689, C320, TK806, Q638, Q638+, ZTC ZT66",
		"in STOC", "",
		"10", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-1002247962.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"CA-02", "Casti stereo cu microfon pentru telefon dual sim TiNNO LT X3, Dubao 728+, O3 818",
		"in STOC", "",
		"10", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-1427975804.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/casti_stereo_V909,V30,M90_small.jpg",
		120, 169,
		"CA-04", "Casti stereo cu microfon pentru telefon dual sim CECT V909, M90, CESIM V30, V30i",
		"in STOC", "",
		"10", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-363316098.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/baterie-telefon-ceas-M800-rosu-small.jpg",
		120, 120,
		"B-10", "Baterie pentru telefon in forma de ceas M800 -rosu",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-1042276246.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/baterie-telefon-ceas-M800-negru-small.jpg",
		120, 120,
		"B-11", "Baterie pentru telefon in forma de ceas M800 -negru",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "17",
		"", "pd453272744.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/baterie-samsung-D880-D980-small.jpg",
		120, 120,
		"B-28", "Baterie originala SAMSUNG, COD: AB553850DU, Li-ion 1200mAh",
		"in STOC, compatibila cu Samsung Dual D880, D980 si altele...", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-1016726256.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/incarcator_masina_cu_port_USB_small.jpg",
		120, 169,
		"IM-01", "Incarcator auto Multi-GSM cu port USB si conector mini-USB",
		"in STOC, 6 conectori - incarca Tinno KT01, HFTD V9688, Samsung, Nokia, Sony Ericsson, Motorola, orice telefoane Dual SiM si playere MPEG", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1219179781.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/incarcator_auto_TINNO LT X3, Dubao 728+, O3 818_small.jpg",
		120, 169,
		"I-01-02", "Incarcator auto cu port USB, compatibil cu TiNNO LT X3, Dubao 728+, O3 818",
		"in STOC, compatibil cu TiNNO LT X3, Dubao 728+, O3 818", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd-1018072495.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/PIX-ecran-tactil-alb.jpg",
		61, 169,
		"P04", "PIX pentru ecran tactil pentru CECT V909",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"", "pd12618605.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/PIX-ecran-tactil-negru.jpg",
		64, 169,
		"P05", "PIX pentru ecran tactil pentru WATCH MOBILE M800, Q8",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"", "pd-1572845866.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/PIX-ecran-tactil-negru.jpg",
		64, 169,
		"P06", "PIX pentru ecran tactil pentru WATCH MOBILE M810 si M860",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"", "pd-46229605.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/incarcator-de-birou-dedicat-LT-X3-small.JPG",
		120, 120,
		"I-13", "Incarcator de birou dedicat pentru incarcarea bateriei, compatibil cu telefonul TiNNO LT X3",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "18",
		"", "pd-400974803.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/cablu_usb_tinno_KT01-small.jpg",
		120, 169,
		"C-08", "Cablu de date USB dedicat compatibil cu WATCH MOBILE M810, M860, Q8, F1 fashion",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-122334967.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/incarcator_auto_FLYING F698_small.jpg",
		120, 169,
		"I-01-05", "Incarcator auto cu port USB, compatibil cu WATCH MOBILE M810, M860 si Q8 dualsim",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd908822931.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[70] = new Element(
		70, "",
		0, 0,
		"B-14", "Baterie pentru telefon in forma de ceas M810 -negru",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-772275395.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[71] = new Element(
		71, "",
		0, 0,
		"B-15", "Baterie pentru telefon dual sim in forma de ceas M860 -negru",
		"EPUIZAT", "",
		"20", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1919612024.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[72] = new Element(
		72, "",
		0, 0,
		"E26", "Inlocuire ecran LCD pentru TiNNO LT X3 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"40", "12",
		"1", 1,
		"bucata", "21",
		"", "pd-1254338120.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[73] = new Element(
		73, "",
		0, 0,
		"B-33", "Baterie originala pentru TechFaith WG1, WG2, General Mobile DST3G",
		"in STOC, 880mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1265356681.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/PIX-ecran-tactil-negru.jpg",
		64, 169,
		"P09", "PIX pentru ecran tactil pentru BALLY K88 si K98",
		"", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"Culoare;Negru@", "pd1526558374.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/baterie-tinno-LT-X3-1000mAh-small.jpg",
		120, 169,
		"B-19", "Baterie pentru TiNNO LT X3",
		"in STOC, 1000mAh, capacitate mai mare, invelis nou rezistent la zgarieturi!", "",
		"20", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-1081968240.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/casti_stereo_V909,V30,M90_small.jpg",
		120, 169,
		"CA-05", "Casti stereo cu microfon pentru telefon dual sim BALLY K88 si K98",
		"in STOC", "",
		"10", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-2146682306.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/incarcator-de-birou-dedicat-CECT-T689-small.jpg",
		120, 120,
		"I-14", "Incarcator de birou dedicat pentru incarcarea bateriei, compatibil cu telefonul ceas M810",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1238669908.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[78] = new Element(
		78, "",
		0, 0,
		"C-09", "Cablu de date USB dedicat compatibil cu CECT A969",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-1687602257.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/cablu-usb-miniUSB-dual-sim-small.jpg",
		120, 169,
		"C-16", "Cablu de date USB cu mufa STANDARDIZATA mini-USB",
		"in STOC, compatibil cu orice alt telefon ce foloseste mufa standardizata mini-USB: HTC, Motorola, Huawei, HFTD V9688, TechFaith WG1, WG2, etc.", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-122096750.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/casti_stereo_V909,V30,M90_small.jpg",
		120, 169,
		"CA-08", "Casti stereo cu microfon pentru telefon dual sim HFTD V9688",
		"in STOC", "",
		"10", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1229926883.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/incarcator_auto_FLYING F698_small.jpg",
		120, 169,
		"I-01-06", "Incarcator auto cu port USB, compatibil cu HFTD V9688",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1240596030.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/microsd-8gb-4-small.jpg",
		120, 120,
		"M-08", "SanDisk microSDHC 8GB Clasa 4 - card de memorie",
		"in STOC, adaptor SD", "",
		"50", "12",
		"1", 1,
		"bucata", "16",
		"", "pd1246973443.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/incarcator-de-birou-dedicat-CECT-T689-small.jpg",
		120, 120,
		"I-15", "Incarcator de birou dedicat pentru incarcarea bateriei, compatibil cu telefonul ceas M860",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1251310968.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/cablu_usb_dubao_small.jpg",
		120, 169,
		"C-10", "Cablu de date USB dedicat compatibil cu TINNO DST10, NG-900, Allview S1i Tytan",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd1874551294.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/incarcator_auto_TINNO LT X3, Dubao 728+, O3 818_small.jpg",
		120, 169,
		"I-01-09", "Incarcator auto cu port USB, compatibil cu TiNNO DST10, NG-900",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd496355373.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/incarcator-auto-samsung-dual-sim-a-small.jpg",
		120, 169,
		"IS-02", "Incarcator auto - SAMSUNG ORIGINAL, compatibil si cu TINNO KT02",
		"in STOC, Mufa tip S20, COD: CAD300SBE, pentru Samsung D780, D880, D980, C5212, C6112, B5702, B5722, E2152 si altele", "",
		"30", "6",
		"1", 1,
		"bucata", "18",
		"", "pd604154285.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[87] = new Element(
		87, "",
		0, 0,
		"B-22", "Baterie pentru TINNO KT01",
		"in STOC, 1200mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1264454873.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/PIX-ecran-tactil-alb.jpg",
		61, 169,
		"P12", "PIX pentru ecran tactil pentru TINNO KT01, Allview F1",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"", "pd-1392463164.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[89] = new Element(
		89, "",
		0, 0,
		"B-25", "Baterie pentru WATCH MOBILE Q8 -negru",
		"in STOC", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1265483436.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/baterie-samsung-AB463651BU-small.jpg",
		120, 120,
		"B-31", "Baterie originala SAMSUNG, COD: AB463651BU, Li-ion Polymer 960mAh",
		"in STOC, compatibila cu Samsung Dual SiM C6112, C3222 si altele...", "",
		"50", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1267067129.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/ceas-telefon-1SiM-c-small.jpg",
		120, 120,
		"TC-08-negru", "WATCH Mobile Q6: Telefon in forma de CEAS -negru",
		"in STOC, tastatura externa cu 1 tasta de apel, ecran tactil orizontal 3.5cm, 70grame, Bluetooth, inregistrare convorbiri, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"400", "24",
		"1", 1,
		"bucata", "9",
		"", "pd-101523699.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/ceas-sony-ericsson-mbw-200-c-elegance-a-small.jpg",
		120, 120,
		"CSB-05", "Sony Ericsson MBW-200 Contemporary Elegance: Ceas cu Bluetooth ",
		"in STOC, Compatibil: iPhone, Android, BB, Symbian, Arata ID apelant, Vibratii, alerte SMS, Control muzica, Afișaj OLED, Oțel inoxidabil, Precizie de Cuart, Cristale minerale cu efect antistrălucire", "Sony Ericsson",
		"300", "12",
		"1", 1,
		"bucata", "10",
		"", "pd934805582.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/ceas-sony-ericsson-mbw-200-evening-a-small2.jpg",
		120, 120,
		"CSB-06", "Sony Ericsson MBW-200 Evening Classic: Ceas cu Bluetooth ",
		"in STOC, Compatibil: iPhone, Android, BB, Symbian, Arata ID apelant, Vibratii, alerte SMS, Control muzica, Afișaj OLED, Piele, Oțel inoxidabil, Decor cristale, Precizie de Cuart, Sticla din cristal mineral cu efect antistrălucire", "Sony Ericsson",
		"300", "12",
		"1", 1,
		"bucata", "10",
		"", "pd227229621.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/ceas-sony-ericsson-mbw-200-sparkling-a-small.jpg",
		120, 120,
		"CSB-07", "Sony Ericsson MBW-200 Sparkling Allure white: Ceas cu Bluetooth",
		"in STOC, Compatibil: iPhone, Android, BB, Symbian, Arata ID apelant, Vibratii, alerte SMS, Control muzica, Afișaj OLED, Piele, Oțel inoxidabil, Decor cristale, Precizie de Cuart, Sticla din cristal mineral cu efect antistrălucire", "Sony Ericsson",
		"300", "12",
		"1", 1,
		"bucata", "10",
		"", "pd1440742952.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/sony-ericsson-bluetooth-mw600-radio-fm-a-small.jpg",
		120, 120,
		"CB-28-negru", "Casca Bluetooth Stereo Sony Ericsson MW600 cu Radio FM -negru",
		"in STOC, prima casca bluetooth din lume cu Radio FM, procesor sunet cu reducere zgomot fara ecou, Multipoint, Afisaj OLED arata post radio, ID apelant, denumire MP3, compatibila cu orice telefon cu bluetooth 2.0, 2.1, A2DP, baterie 11 ore convorbire!", "Sony Ericsson",
		"180", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1738538519.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/cablu_usb_tinno_KT01-small.jpg",
		120, 169,
		"C-11", "Cablu de date USB dedicat compatibil cu TINNO KT01, Allview F1",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-511362440.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/incarcator-de-birou-dedicat-ZTC-ZT6688-small.jpg",
		120, 120,
		"I-16", "Incarcator de birou dedicat pentru incarcarea bateriei, compatibil cu telefonul Tinno KT01",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "18",
		"", "pd-2075126033.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[98] = new Element(
		98, "",
		0, 0,
		"E30", "Inlocuire ecran tactil cu afisaj pentru TINNO KT01, Allview F1 - Operatiune service post-garantie",
		"EPUIZAT", "",
		"140", "12",
		"1", 1,
		"bucata", "21",
		"", "pd1356446403.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/KiT_5dualsimA+5dualsimB_small.jpg",
		120, 120,
		"DS-01", "KiT distribuitor: ADAPTOARE DUAL SIM ONLINE PANGLICA",
		"in STOC, contine: 5 dualsim A + 5 dualsim B -80% reducere", "",
		"60", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1175699122.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[100] = new Element(
		100, "",
		0, 0,
		"E28", "Inlocuire ecran LCD pentru TechFaith WG1 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"40", "12",
		"1", 1,
		"bucata", "21",
		"", "pd1271405164.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/baterie-samsung-AB553446BU-small.jpg",
		120, 120,
		"B-30", "Baterie originala SAMSUNG, COD: AB553446BU, Li-ion 1000mAh",
		"in STOC, compatibila cu Samsung Dual C5212, E2152, E2652 si altele...", "",
		"50", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1271975714.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/baterie-samsung-D780-B5722-AB474350BU-small.jpg",
		120, 120,
		"B-29", "Baterie originala SAMSUNG, COD: AB474350BU, Li-ion 1200mAh",
		"în STOC, compatibila cu Samsung Dual D780, B5722, B7722, G810, i550, I7110 Pilot si altele...", "",
		"60", "6",
		"1", 1,
		"bucata", "17",
		"", "pd2101505953.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[103] = new Element(
		103, "",
		0, 0,
		"E29", "Inlocuire ecran LCD pentru TechFaith WG2 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"40", "12",
		"1", 1,
		"bucata", "21",
		"", "pd1272061245.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/telefon-dual-sim-TV-WIFI-Tinno-KT02-a-negru-small.jpg",
		120, 120,
		"T-39-negru", "TINNO KT02: Telefon Dual SiM cu TV si WiFi, Meniu in limba romana -negru",
		"in STOC, PDA, Senzor gravitational cu Rotatie Meniu, Turn to MUTE, Robot telefonic, ecran tactil 8.3cm, Agenda 800 nr, Modificare voce, Inregistrare convorbiri, Respinge numar necunoscut, JAVA 2.0, Bluetooth, Incarcator extern, Camera 2mpx, Baterie 6 zile", "TINNO",
		"400", "24",
		"1", 1,
		"bucata", "14,11,2,4",
		"", "pd-1619290689.htm",
		"", 1,
		"14,11,02,04", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/blackberry-carkit-bluetooth-VM-605-e-small.jpg",
		120, 120,
		"CK-14", "CAR KIT Bluetooth BLACKBERRY Visor VM-605 cu transmisie FM",
		"in STOC, difuzor de putere 3.3W, Procesor sunet cu reducere zgomot si anulare ecou, Arata identitate apelant pe ecranul radioului, compatibil cu orice telefon cu bluetooth 2.0, 2.1, puteti asculta muzica prin A2DP, AVRCP, baterie 11 ore convorbire!", "BlackBerry",
		"280", "12",
		"1", 1,
		"bucata", "13",
		"", "pd790285583.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/cablu-samsung-AV-pentru-TV-small.jpg",
		120, 120,
		"C-21", "Cablu audio-video AV, prezinta mufa SAMSUNG tip S20 si 3 mufe RCA",
		"in STOC, Mufa tip S20, COD: AATCS10CBE, pentru conectarea telefonului la ecranul televizorului sau la alte dispozitive video cu mufe RCA, compatibil cu telefoanele SAMSUNG cu iesire TV: i900 Omnia, B5702 si altele", "",
		"30", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-855690343.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/casti_stereo_ZF168_small.jpg",
		120, 169,
		"CA-09", "Casti stereo cu microfon pentru telefon dual sim Tinno KT01",
		"in STOC", "",
		"10", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1281603842.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[108] = new Element(
		108, "",
		0, 0,
		"B-23", "Baterie pentru TINNO KT02",
		"in STOC, 1800mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1282087318.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/incarcator-auto-nokia-DC6-micro-USB-small.jpg",
		120, 120,
		"Iu-02", "Incarcator auto cu mufa UNIVERSALA micro-USB - NOKIA ORIGINAL",
		"in STOC, COD: DC-6, putere 550mAh, 12-24 volti, compatibil cu orice telefon ce se alimenteaza prin mufa micro-USB: Nokia, Samsung, LG, Sony-Ericsson, HTC, Blackberry, iPro, Tinno, iGlo etc..", "",
		"30", "6",
		"1", 1,
		"bucata", "18",
		"", "pd944725627.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/baterie-nokia-bl-5f-950mAh-a-small.jpg",
		120, 120,
		"B-34", "Baterie originala NOKIA BL-5F, Li-ion 950mAh",
		"in STOC, compatibila cu telefoanele Nokia E65, N78, N93, N95, N96, si cu iPro i6: creste performantele cu 30%", "",
		"60", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1313664475.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/baterie-nokia-bl-6f-1200mAh-a-small.jpg",
		120, 120,
		"B-35", "Baterie originala NOKIA BL-6F, Li-ion 1200mAh",
		"in STOC, compatibila pentru telefoanele Nokia N78, N79, N95 8GB, si cu TINNO W1-GPS, KT04: creste performantele cu 30%", "",
		"60", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-1266644585.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/JBL-Radial-Micro-a-small.jpg",
		120, 120,
		"iB-01", "JBL Radial Micro Sounddock -alb",
		"in STOC, Putere: 20W, difuzoare de inalta fidelitate pentru iPod, iPhone si alte dispozitive audio MP3 sau telefoane mobile", "",
		"460", "12",
		"1", 1,
		"bucata", "11",
		"", "pd929418441.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Logic3-speaker-i-Station-c-small.jpg",
		120, 120,
		"iB-02", "Logic3 Speaker i-Station Rotate",
		"in STOC, Putere: 10W, difuzoare de inalta fidelitate pentru iPod, iPhone si alte dispozitive audio MP3 sau telefoane mobile", "",
		"360", "12",
		"1", 1,
		"bucata", "11",
		"", "pd831685663.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/navigon-suport-iphone-3G-3GS-small.jpg",
		120, 120,
		"S-01", "Suport auto pentru iPhone 3 de la NAVIGON",
		"in STOC, compatibil si profilat specific cu linia iPhone 3G si 3GS; se poate roti in orice pozitie", "",
		"130", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14",
		"", "pd1607377765.htm",
		"", 1,
		"14,11,02,04,11,14", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/navigon-suport+incarcator-iphone-3G-3GS-small.jpg",
		120, 120,
		"S-02", "Suport auto pentru iPhone 3 de la NAVIGON + Micro incarcator auto pentru iPhone de la BELKIN",
		"in STOC, compatibil si profilat specific cu linia iPhone 3G si 3GS; se poate roti in orice pozitie; voltaj intrare 12V si voltaj iesire 5V cu 1000mAh", "",
		"150", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14",
		"", "pd-2114311141.htm",
		"", 1,
		"14,11,02,04,11,14,11,14", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/cablu_USB_micro-USB-small.jpg",
		120, 120,
		"C-18", "Cablu de date USB SAMSUNG cu mufa micro-USB   -Marime 90cm",
		"in STOC, compatibil cu orice telefon ce se alimenteaza prin mufa micro-USB: Nokia, Samsung, LG, Sony-Ericsson, HTC, Blackberry, iPro, Tinno, iGlo, etc.", "SAMSUNG",
		"20", "6",
		"1", 1,
		"bucata", "19",
		"", "pd1288679762.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[117] = new Element(
		117, "",
		0, 0,
		"E31", "Inlocuire ecran tactil pentru TINNO KT02 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"60", "12",
		"1", 1,
		"bucata", "21",
		"", "pd1288683890.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/baterie-LG-GX500_LGIP-400N-small.jpg",
		120, 120,
		"B-36", "Baterie originala LG LGIP-400N, Li-ion Polymer 1500mAh",
		"in STOC, compatibila cu telefoanele LG GX200, GX300, GX500, LG GT540 Optimus, GM750 Layla, GW620 Etna, GW800, GW820, eXpo, GW880 OPhone si altele...", "",
		"60", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1289479380.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/sony-ericsson-bluetooth-mw600-radio-fm-white-a-small.jpg",
		120, 120,
		"CB-28-alb", "Casca Bluetooth Stereo Sony Ericsson MW600 cu Radio FM -alb",
		"in STOC, prima casca bluetooth din lume cu Radio FM, procesor sunet cu reducere zgomot fara ecou, Multipoint, Afisaj OLED arata post radio, ID apelant, denumire MP3, compatibila cu orice telefon cu bluetooth 2.0, 2.1, A2DP, baterie 11 ore convorbire!", "Sony Ericsson",
		"180", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1290673131.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/baterie-nokia-bl-5J-1320mAh-small.jpg",
		120, 120,
		"B-37", "Baterie originala NOKIA BL-5J, Li-ion 1320mAh",
		"in STOC, compatibila cu telefoanele Nokia 5228, 5230 XM, 5800 XM, N900, C3, X6 si altele", "",
		"60", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-1562916083.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/baterie-nokia-bp-4l-1500mAh-small.jpg",
		120, 120,
		"B-38", "Baterie originala NOKIA BP-4L, Li-ion Polymer 1500mAh",
		"in STOC, compatibila cu telefoanele Nokia 6650f, 6760s, E52, E55, E6-00, E61i, E63, E71, E72, E90, N810 Internet Tablet, N97 si altele...", "",
		"70", "6",
		"1", 1,
		"bucata", "17",
		"", "pd206253545.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/navigon-suport-iphone-4-small.jpg",
		120, 120,
		"S-04", "Suport auto pentru iPhone 4/4S de la NAVIGON + Incarcator auto pentru iPhone de la BELKIN",
		"in STOC, compatibil si profilat specific cu linia iPhone 4; se poate roti in orice pozitie; voltaj intrare 12V-24V si voltaj iesire 5V cu 1000mAh", "",
		"150", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14",
		"", "pd-621074179.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14", "0",
		 0)
	
		Entry[123] = new Element(
		123, "",
		0, 0,
		"E32", "Inlocuire ecran LCD pentru iPro i6 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"40", "12",
		"1", 1,
		"bucata", "21",
		"", "pd-271389424.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/samsung-casti-stereo-fir-jack-3.5-EHS48ES0ME-small.jpg",
		120, 120,
		"CA-11", "SAMSUNG Casti stereo -negru, microfon, difuzoare intrauriculare, mufa tip Jack 3.5mm",
		"in STOC, COD: EHS60ANN, compatibile cu Samsung, Tinno KT02 si orice alt telefon cu mufa tip jack stereo de 3.5mm", "",
		"30", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-1515202114.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[125] = new Element(
		125, "",
		0, 0,
		"CA-10", "SAMSUNG Casti stereo -negru, microfon, difuzoare intrauriculare, mufa tip SAMSUNG S20",
		"EPUIZAT, compatibile cu orice telefon Samsung cu mufa tip S20, exemple: Samsung C6112, B5702, B5722, C5212, E2152 si altele...", "",
		"30", "12",
		"1", 1,
		"bucata", "12",
		"", "pd444173852.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/ceas-telefon-dualsim-Q9-busola-negru-a-small.jpg",
		120, 120,
		"TC-09-negru", "WATCH Mobile Q9: Telefon Dual SiM in forma de CEAS, Busola -negru",
		"EPUIZAT, tastatura externa cu 2 taste de apel, ecran tactil orizontal 3.5cm, 70grame, Dual Bluetooth, inregistrare convorbiri, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "Watch Mobile",
		"500", "24",
		"1", 1,
		"bucata", "9",
		"", "pd1291337983.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/ceas-telefon-dualsim-Q9-busola-alb-a-small.jpg",
		120, 120,
		"TC-09-alb", "WATCH Mobile Q9: Telefon Dual SiM in forma de CEAS, Busola -alb",
		"EPUIZAT, tastatura externa cu 2 taste de apel, ecran tactil orizontal 3.5cm, 70grame, Dual Bluetooth, inregistrare convorbiri, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "Watch Mobile",
		"500", "24",
		"1", 1,
		"bucata", "9",
		"", "pd1291459275.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/baterie-nokia-bl-5c-1020mAh-small.jpg",
		120, 120,
		"B-39", "Baterie originala NOKIA BL-5C, Li-ion 1020Ah - versiune noua cu capacitate marita",
		"in STOC, compatibila cu telefoanele Nokia 1100, 1101, 1110, 1110i, 1112, 1200, 1208, 1209, 1600, 1650, 1680c, 1800, 2300, 2310, 2323c, 2330c, 2600, 2610, 2626, 2700c, 2710 N, 2730c, 3100, 3109c, 3110c, 3110 Evolve, 3120, 3610f si altele...", "",
		"50", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1538472023.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/cablu_usb_tinno_KT01-small.jpg",
		120, 169,
		"C-13", "Cablu de date USB dedicat compatibil cu WATCH MOBILE Q6 avatar versiune 2009-2010",
		"EPUIZAT", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-998747181.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/incarcator_auto_FLYING F698_small.jpg",
		120, 169,
		"I-01-10", "Incarcator auto cu port USB, compatibil cu WATCH MOBILE Q6 avatar 2009-2010",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd-656015601.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Plantronics-BackBeat-903+_bluetooth_stereo_a1-small.jpg",
		120, 120,
		"CB-22-negru", "Casca Bluetooth Stereo Plantronics BackBeat 903+",
		"in STOC, stereo fara fire vizibile, Premiata pentru inovatie - OpenMic, Difuzoare de 14mm cu Bass-Boost, 2 microfoane cu reducere zgomot AudioIQ2, compatibila cu orice telefon cu bluetooth 2.0, 2.1, muzica prin A2DP, baterie: 10 ore", "Plantronics",
		"260", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1292281265.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Belkin_flipblade_ipad-a-small.jpg",
		120, 120,
		"iA-07", "Suport universal pentru tablete BELKIN FlipBlade",
		"in STOC, pozitionare orizontala sau verticala, aspect compact, manevrare simpla; compatibil iPad, Samsung Galaxy Tab, Blackberry Playbook, Neofonie WeTab si alte formate similare", "",
		"80", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14",
		"", "pd1507975675.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Tunebug_vibe-a-small.jpg",
		120, 120,
		"iA-09", "Tunebug Vibe - Power Portable SurfaceSound Speaker",
		"in STOC, transforma orice suprafata plana intr-un puternic difuzor, compatibil cu orice telefon sau dispozitiv audio cu jack standard de 3,5 mm stereo", "",
		"140", "12",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12",
		"", "pd1550444733.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/samsug-e2152-dual-sim-a-small.jpg",
		120, 120,
		"T-46-negru", "SAMSUNG E2152: Telefon Dual SiM, ORIGINAL -negru lucios",
		"EPUIZAT, Meniu in limba romana, Email inbox, Agenda 1000 numere, ecran 5.1cm, 1 camera x 0.3mpx, memorie 30mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"200", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1292405087.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/micro-incarcator-auto-usb-Belkin-small.jpg",
		120, 120,
		"Iu-05", "BELKIN Micro 1 - socant de mic! -cel mai mic incarcator auto din lume",
		"in STOC, putere 1000mAh, 12 volti, port USB, compatibil cu orice telefon ce se alimenteaza prin cablul USB, exemple: iPhone, Nokia, Samsung, LG, Sony-Ericsson, HTC, Blackberry, Tinno, iPro etc.", "",
		"40", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11",
		"", "pd1293704703.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/sony-ericsson_VH410-negru-small.jpg",
		120, 120,
		"CB-23-negru", "Casca Bluetooth Mono Sony Ericsson VH410, dual POINT, 2 telefoane simultan -negru",
		"in STOC, multipoint, 11.6 grame, anulare zgomot, compatibila cu orice telefon cu bluetooth 2.0, 2.1, baterie 10 ore convorbire!", "Sony Ericsson",
		"100", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1294612990.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Jabra-Wave-a-small.jpg",
		120, 120,
		"CB-30-negru", "Casca Bluetooth JABRA WAVE, dual POINT, 2 telefoane simultan -negru",
		"in STOC, forma revolutionara, procesor de sunet si microfon cu 3 filtre impotriva vantului, ghidare vocala, compatibila cu orice telefon cu bluetooth 2.0, 2.1", "JABRA",
		"220", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1295477620.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/PIX-ecran-tactil-negru.jpg",
		64, 169,
		"P09", "PIX pentru ecran tactil pentru TINNO KT02",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"Culoare;Negru@", "pd-180520556.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/PIX-ecran-tactil-negru.jpg",
		64, 169,
		"P14", "PIX pentru ecran tactil pentru TINNO W1-GPS",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"", "pd1708342575.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Samsung-C3222-dualsim-qwerty-a-small.jpg",
		120, 120,
		"T-47-negru", "SAMSUNG C3222: Telefon Dual SiM, ORIGINAL -negru",
		"in STOC, Meniu in limba romana, Email inbox, Tastatura QWERTY de tip PC, Mouse optic tactil, Agenda 1000 numere, ecran 5.6cm, 1 camera x 1.3mpx, memorie 45mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"320", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1296648499.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/Samsung-C3222-dualsim-qwerty-alb-a-small.jpg",
		120, 120,
		"T-47-alb", "SAMSUNG C3222: Telefon Dual SiM, ORIGINAL -alb",
		"in STOC, Meniu in limba romana, Email inbox, Tastatura QWERTY de tip PC, Mouse optic tactil, Agenda 1000 numere, ecran 5.6cm, 1 camera x 1.3mpx, memorie 45mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"320", "24",
		"1", 1,
		"bucata", "2",
		"", "pd475204647.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/Sony-Ericsson-LiveView-a-small.jpg",
		120, 120,
		"CSB-08", "Sony Ericsson Display LiveView: Ceas Telecomanda",
		"in STOC, compatibil cu telefoanele Android 2, receptioneaza prin Bluetooth toate informatiile din telefon, actualizari Twitter si Facebook, Arata ID apelant, Vibratii, citeste SMS, Control muzica, se personalizeaza cu aplicatii Android.", "Sony Ericsson",
		"140", "12",
		"1", 1,
		"bucata", "10",
		"", "pd-1091724741.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/samsug-e2152-dual-sim-alb-a-small.jpg",
		120, 120,
		"T-46-alb", "SAMSUNG E2152: Telefon Dual SiM, ORIGINAL -alb",
		"in STOC, Meniu in limba romana, Email inbox, Agenda 1000 numere, ecran 5.1cm, 1 camera x 0.3mpx, memorie 30mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"200", "24",
		"1", 1,
		"bucata", "2",
		"", "pd-1055939876.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[144] = new Element(
		144, "",
		0, 0,
		"B-26", "Baterie pentru WATCH MOBILE Q6, Q9 -negru",
		"in STOC, versiune 2011", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-852894908.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/PIX-ecran-tactil-negru.jpg",
		64, 169,
		"P07", "PIX pentru ecran tactil pentru WATCH MOBILE Q6, Q9",
		"in STOC", "",
		"10", "0.1",
		"1", 1,
		"bucata", "20",
		"", "pd-1751554160.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/incarcator_auto_FLYING F698_small.jpg",
		120, 169,
		"I-01-11", "Incarcator auto cu port USB, compatibil cu WATCH MOBILE Q9, Q6 versiune 2011",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1073427309.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/incarcator_auto_FLYING F698_small.jpg",
		120, 169,
		"I-01-12", "Incarcator auto cu port USB, compatibil cu TINNO KT01",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd-372748586.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[148] = new Element(
		148, "",
		0, 0,
		"E33", "Inlocuire ecran tactil pentru TINNO W1-GPS - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"60", "12",
		"1", 1,
		"bucata", "21",
		"", "pd2130608027.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/Tinno-KT04-4sim-negru-a-small.jpg",
		120, 120,
		"T4-02", "TINNO KT04: Telefon 4 SIM - Dual CPU, TV si WiFi, meniu limba ROMANA -negru nobil",
		"in STOC, Apel in asteptare intre SIM-uri, Agenda 3000 numere, tastatura QWERTY, Ecran 6.2cm, Trackball, E-Mail inbox, JAVA 2.0, DocViewer, Black List, Bluetooth, Baterie: 4 zile", "TINNO",
		"500", "24",
		"1", 1,
		"bucata", "6",
		"", "pd1130934309.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/ceas-telefon-Q6-1SiM-alb-small.jpg",
		120, 120,
		"TC-08-alb", "WATCH Mobile Q6: Telefon in forma de CEAS -alb",
		"in STOC, tastatura externa cu 1 tasta de apel, ecran tactil orizontal 3.5cm, 70grame, Bluetooth, inregistrare convorbiri, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"400", "24",
		"1", 1,
		"bucata", "9",
		"", "pd1299314166.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/ceas-telefon-F1-fashion-inox-negru-a-small.jpg",
		120, 120,
		"TC-10-negru", "WATCH Mobile F1 Fashion: Telefon in forma de CEAS -inox fumuriu, curea neagra",
		"in STOC, otel inoxidabil, subtire doar 12mm, greutate 84gr, piele, Busola, ecran tactil 4.6cm, Bluetooth, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"600", "24",
		"1", 1,
		"bucata", "9",
		"", "pd-2005711164.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/ceas-telefon-F1-fashion-inox-maron-a-small.jpg",
		120, 120,
		"TC-10-maron", "WATCH Mobile F1 Fashion: Telefon in forma de CEAS -inox fumuriu, curea maron",
		"in STOC, otel inoxidabil, subtire doar 12mm, greutate 84gr, piele, Busola, ecran tactil 4.6cm, Bluetooth, 1 camera ascunsa x 0.3mpx, Vibratii, Cititor TEXT, Radio FM, Baterie: 3 zile", "CECT",
		"600", "24",
		"1", 1,
		"bucata", "9",
		"", "pd1299374288.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/General_Mobile_DST3G-Smart-dualsim-small.jpg",
		120, 120,
		"T-60", "General Mobile DST3G Smart: Video Telefon Dual SiM 3G - Dual CPU (chipset 3G Qualcomm USA + Philips)",
		"STOC LIMITAT - PRET REDUS, Apel in asteptare intre SIM-uri, Compatibil si cu DiGi MOBIL de la RDS, APELURI VIDEO, foarte mic 9.8cm, ecran 5.7cm, Push E-Mail, Agenda 3000 nr, Respingere Apel, Camera 2mpx, Bluetooth, JAVA 2.0, RadioFM, Baterie: 4 zile", "TechFaith",
		"380", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2",
		"", "pd1264153251.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/Samsung-B7722i-a-small.jpg",
		120, 120,
		"T-51-negru", "SAMSUNG B7722i: Video Telefon Dual SiM 3G - Dual CPU, WiFi, ORIGINAL -negru",
		"in STOC, Apel in asteptare intre SIM-uri, Compatibil si cu DiGi MOBIL de la RDS, Apeluri Video doar prin camera spate, Modem 3G HSDPA 3.6 Mbps, Push E-Mail, agenda 2000 nr, ecran tactil 3.2&quot;, camera 5mpx, Meniu in limba romana, Baterie: 4 zile", "SAMSUNG",
		"780", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2",
		"", "pd1288246355.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/adaptor-dual-sim-pentru-iphone-3g-3gs-a-small.jpg",
		120, 120,
		"DS-09", "ADAPTOR DUAL SIM 3G ONLINE PANGLICA A",
		"in STOC, compatibil iPhone 3G/3GS, compatibil software si cu alte telefoane dar sunt necesare carcase cu spatiu liber", "",
		"50", "12",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11",
		"", "pd1299487658.htm",
		"1::1::0;1::10::50;", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/adaptor-dual-sim-pentru-iphone-4-a-small.jpg",
		120, 120,
		"DS-10", "ADAPTOR DUAL SIM 3G ONLINE PANGLICA B",
		"in STOC, pentru iPhone 4/4S, compatibil software si cu alte telefoane dar sunt necesare carcase cu spatiu liber", "",
		"50", "12",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11",
		"", "pd-652709952.htm",
		"1::1::0;1::10::50;", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11", "0",
		 0)
	
		Entry[157] = new Element(
		157, "",
		0, 0,
		"B-24", "Baterie pentru WATCH MOBILE Q6 -negru",
		"in STOC, versiune 2009-2010", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1299711320.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/KIT-adaptor-dual-sim-3G-pentru-iphone-small.jpg",
		120, 120,
		"DS-08", "KiT distribuitor: ADAPTOARE DUAL SIM 3G ONLINE PANGLICA pentru iPhone 3 si 4",
		"in STOC, contine: 5 dualsim iPhone 3 + 5 dualsim iPhone 4 -50% reducere", "",
		"250", "12",
		"1", 1,
		"bucata", "0",
		"", "pd1300344306.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/baterie-samsung-galaxy-S-EB575152VUCSTD-small.jpg",
		120, 120,
		"B-41", "Baterie originala SAMSUNG, COD: EB575152VUC, Li-ion 1500mAh",
		"in STOC, compatibila cu SAMSUNG Galaxy S, I9000, I9001, Galaxy SL I9003, B7350 Omnia si altele...", "",
		"70", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1300918469.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/Mio-GPS-Car-Kit-iPhone-iPod-d-small.jpg",
		120, 120,
		"SCK-22", "CAR KIT MIO GPS pentru iPhone 3G/3GS/4/4S si iPod touch",
		"in STOC, semnal puternic prin receptorul GPS inclus, compatibil cu orice software de GPS, difuzor de putere 4W, 2 microfoane, reducerea zgomotului si anulare ecou, convorbiri handsfree.", "MIO",
		"400", "12",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11",
		"", "pd-1301717215.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/belkin-shield-shock-duo-small.jpg",
		120, 120,
		"Cp-01", "BELKIN Shield Shock Duo - Carcasa de protectie pentru iPhone 4/4S -negru",
		"in STOC, exterior rezistent plus interior captusit cu bumbac pentru dubla protectie la cazaturi", "",
		"50", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15",
		"", "pd1301702063.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/belkin-shield-fusion-small.jpg",
		120, 120,
		"Cp-02", "BELKIN Shield Fusion - Carcasa de protectie pentru iPhone 4/4S -negru",
		"in STOC, exterior rezistent la cazaturi, cu aderenta crescuta", "",
		"50", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15",
		"", "pd899260277.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/belkin-graphix-small.jpg",
		120, 120,
		"Cp-03", "BELKIN Graphix - Husa de protectie pentru iPhone 4/4S -negru",
		"in STOC, exterior din silicon, cu aderenta crescuta", "",
		"50", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15",
		"", "pd2088486571.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/belkin-verve-cinema-small.jpg",
		120, 120,
		"Cp-04", "BELKIN Verve Cinema - Husa de protectie pentru iPhone 4/4S -negru",
		"in STOC, piele adevarata, suport pentru asezare pe birou", "",
		"70", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15",
		"", "pd-1349625647.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/carcasa-protectie-iphone4-negru-small.jpg",
		120, 120,
		"Cp-05", "Carcasa de protectie pentru iPhone 4 -negru",
		"in STOC, ultra subtire, suprafata nealunecoasa, exterior rezistent la cazaturi", "",
		"30", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15",
		"", "pd239406951.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/jabra-stone-2-piele-d-small.jpg",
		120, 120,
		"CB-31-negru", "Casca Bluetooth JABRA STONE 2, dual POINT, 2 telefoane simultan -negru",
		"in STOC, comenzi vocale Answer sau Ignore, imbracata in piele, 7 grame, incarcator portabil inteligent, forma revolutionara, reducerea zgomotului, control prin atingere tactila, bluetooth 2.0, 2.1, puteti asculta muzica prin profilul A2DP", "JABRA",
		"330", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1302636794.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/Samsung-E2652W-negru-a-small.jpg",
		120, 120,
		"T-49-negru", "SAMSUNG E2652w: Telefon Dual SiM cu WiFi, ORIGINAL -negru",
		"in STOC, Meniu in limba romana, Email inbox, agenda 1000 numere, ecran tactil 2.6&quot;, 1 camera x 1.3mpx, memorie 50mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 4 zile", "SAMSUNG",
		"360", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4",
		"", "pd-1928790737.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/barely-carcasa-protectie-iphone3-negru-small.jpg",
		120, 120,
		"Cp-00", "BARELY CaseMate - Carcasa de protectie pentru iPhone 3G/3GS -negru lucios",
		"in STOC, ultra subtire, exterior rezistent la cazaturi", "",
		"50", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15",
		"", "pd1303162254.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/belkin-car-charger-iPhone-2100mAh-a-small.jpg",
		120, 120,
		"Iu-06", "BELKIN Micro 2 Power - socant de mic! -cel mai mic incarcator auto din lume",
		"in STOC, putere 2100mAh, 12 volti, port USB, Cablu iPhone inclus, compatibil cu iPhone si orice alt telefon ce se alimenteaza prin cablul USB, exemple: Nokia, Samsung, LG, Sony-Ericsson, HTC, Blackberry, Tinno, iPro etc.", "",
		"80", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18",
		"", "pd-1717057940.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/Samsung-C3222-dualsim-qwerty-roz-a-small.jpg",
		120, 120,
		"T-47-roz", "SAMSUNG C3222: Telefon Dual SiM, ORIGINAL -roz",
		"in STOC, Meniu in limba romana, Email inbox, Tastatura QWERTY de tip PC, Mouse optic tactil, Agenda 1000 numere, ecran 5.6cm, 1 camera x 1.3mpx, memorie 45mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"320", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1445582042.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/Jabra-Cruiser-2-car-kit-bluetooth-b-small.jpg",
		120, 120,
		"CK-21", "CAR KIT Bluetooth JABRA CRUISER 2 cu transmisie FM - 2 telefoane simultan",
		"in STOC, difuzor de putere 4W, 2 microfoane, Arata identitate apelant pe ecranul radioului, Procesor sunet cu reducerea extrema a zgomotului si anulare ecou, compatibil cu bluetooth 2.0, 2.1, redare muzica prin A2DP, AVRCP, baterie 14 ore convorbire!", "JABRA",
		"320", "12",
		"1", 1,
		"bucata", "13",
		"", "pd1303978362.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/BabyBear_BB01_GPS-a-small.jpg",
		120, 120,
		"TG-01-portocaliu", "BABY BEAR BB01-GPS: Telefon pentru copii -portocaliu",
		"in STOC, sistem DUAL de localizare prin LBS + GPS, parintele poate localiza pozitia telefonului in orice moment, pe orice strada si in orice cladire, Monitorizare audio, 4 taste pentru apeluri rapide + 1 tasta SOS ce formeaza automat, Baterie: 3 zile", "Senior",
		"360", "24",
		"1", 1,
		"bucata", "7",
		"", "pd1304630166.htm",
		"", 1,
		"07", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/microsd-16gb-4-small.jpg",
		120, 120,
		"M-16", "SanDisk microSDHC 16GB Clasa 4 - card de memorie",
		"in STOC", "",
		"80", "12",
		"1", 1,
		"bucata", "16",
		"", "pd1306440913.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/Samsung-C6712-dualsim-capacitiv-a-small.jpg",
		120, 120,
		"T-52-negru", "SAMSUNG C6712 Star II Duos: Telefon Dual SiM, ORIGINAL -negru",
		"in STOC, Meniu in limba romana, ecran tactil capacitiv 3.2&quot;, port WiFi, E-Mail inbox, agenda 1000 numere, 1 camera x 3mpx, memorie 30mb, Bluetooth A2DP, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"460", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4",
		"", "pd1307443611.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/krusell_g209884-small.jpg",
		120, 120,
		"Cp-06-red", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: L, rosu",
		"in STOC, compatibila cu foarte multe telefoane plate: iPhone, Blackberry, Samsung, Nokia, iGlo A101 si multe altele...", "",
		"140", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15",
		"", "pd-1913307968.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/samsung_HS3000_bluetooth_a-small.jpg",
		120, 120,
		"CB-33", "Casca Bluetooth Stereo SAMSUNG HS3000, dual POINT, 2 telefoane simultan -negru",
		"in STOC, Bluetooth v.3.0, APT-X Codec pentru muzica si film in timp real fara intarzieri, asculta muzica prin A2DP, AVRCP, compatibila cu orice telefon cu bluetooth 2.0, 2.1, 3.0, baterie 7 ore convorbire.", "SAMSUNG",
		"180", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1308201902.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/baterie-samsung-C6712-EB494353VU-small.jpg",
		120, 120,
		"B-42", "Baterie originala SAMSUNG, COD: EB494353VU, Li-ion 1200mAh",
		"in STOC, compatibila cu SAMSUNG C6712 Star II Duos, WAVE, Galaxy Mini, si altele...", "",
		"70", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1310031809.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[178] = new Element(
		178, "",
		0, 0,
		"E35", "Inlocuire ecran tactil pentru WATCH MOBILE F1 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"60", "12",
		"1", 1,
		"bucata", "21",
		"", "pd1310072732.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/iGlo_W102-negru-a-small.jpg",
		120, 120,
		"T-53-negru", "iGlo Mobile W102: Video Telefon Dual SiM 3G -negru",
		"in STOC, Meniu in limba romana, Compatibil si cu DiGi MOBIL de la RDS, Apeluri Video, ecran 5.6cm, Inregistrare convorbiri, Email Inbox, Internet 3G, Agenda 1000 nr, Camera 2mpx, Bluetooth 2.1, JAVA 2.0, RadioFM, Baterie: 5 zile", "iGlo",
		"360", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3",
		"", "pd1311204798.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/iGlo_W102-argintiu-a-small.jpg",
		120, 120,
		"T-53-argintiu", "iGlo Mobile W102: Video Telefon Dual SiM 3G -argintiu",
		"EPUIZAT, Meniu in limba romana, Compatibil si cu DiGi MOBIL de la RDS, Apeluri Video, ecran 5.6cm, Inregistrare convorbiri, Email Inbox, Internet 3G, Agenda 1000 nr, Camera 2mpx, Bluetooth 2.1, JAVA 2.0, RadioFM, Baterie: 5 zile", "iGlo",
		"360", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3",
		"", "pd1311331321.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03", "0",
		 0)
	
		Entry[181] = new Element(
		181, "",
		0, 0,
		"E34", "Inlocuire ecran tactil pentru WATCH MOBILE Q9, Q6 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"60", "12",
		"1", 1,
		"bucata", "21",
		"", "pd405936351.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[182] = new Element(
		182, "",
		0, 0,
		"B-43", "Baterie pentru iGlo Mobile W102, si altele...",
		"in STOC, Li-ion 1050mAh, COD standardizat: BL-5C", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd-979202853.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/Jabra-Chill-casti-stereo-small.jpg",
		120, 120,
		"CA-13", "JABRA Chill Casti stereo, microfon, difuzoare plate, mufa tip Jack 3.5mm -negru",
		"in STOC, compatibile cu Samsung, Tinno KT02 si orice alt telefon cu mufa tip jack stereo de 3.5mm", "",
		"40", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1312180479.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/Jabra FREEWAY poza-a-small.jpg",
		120, 120,
		"CK-22", "CAR KIT Bluetooth JABRA FREEWAY cu transmisie FM - 2 telefoane simultan",
		"in STOC, comenzi vocale Answer sau Ignore, comenzi editare SMS, 3 Difuzoare Virtual Surround, Arata identitate apelant pe ecranul radioului, Procesor sunet DSP, compatibil cu bluetooth 2.0, 2.1, redare muzica prin A2DP, AVRCP, baterie 14 ore convorbire!", "JABRA",
		"400", "12",
		"1", 1,
		"bucata", "13",
		"", "pd2112844613.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Samsung-casti-stereo-EHS62ASN-small.jpg",
		120, 120,
		"CA-12", "SAMSUNG Casti stereo -roz, microfon, difuzoare intrauriculare, mufa tip Jack 3.5mm",
		"in STOC, COD: EHS62ASN, inalta fidelitate, compatibile cu Samsung, Tinno KT02 si orice alt telefon cu mufa tip jack stereo de 3.5mm", "",
		"50", "12",
		"1", 1,
		"bucata", "12",
		"", "pd541367741.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/sony-ericsson-HPM-78-casti-stereo-small.jpg",
		120, 120,
		"CA-14", "Sony Ericsson Casti stereo, difuzoare intrauriculare, mufa tip Jack 3.5mm -negru",
		"in STOC, COD: HPM-78, inalta fidelitate, compatibile cu Sony Ericsson, Samsung, Tinno KT02 si orice alt telefon cu mufa tip jack stereo de 3.5mm", "",
		"40", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-1036579277.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/parrot_SK4000_poza7-small.jpg",
		120, 120,
		"SMK-01", "PARROT SK4000 Bluetooth Motorbike KIT",
		"in STOC, casca stereo performanta cu microfon + telecomanda pe ghidon, Radio FM incorporat, recunoastere vocala, directii GPS", "MIO",
		"360", "12",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12",
		"", "pd957352857.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/krusell_g209891-small.jpg",
		120, 120,
		"Cp-06-pink", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: L, roz",
		"in STOC, compatibila cu foarte multe telefoane plate: iPhone, Blackberry, Samsung, Nokia, iGlo A101 si multe altele...", "",
		"140", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15",
		"", "pd1312444324.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/krusell_g209822-small.jpg",
		120, 120,
		"Cp-06-blue", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: L, albastru",
		"in STOC, compatibila cu foarte multe telefoane plate: iPhone, Blackberry, Samsung, Nokia, iGlo A101 si multe altele...", "",
		"140", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15",
		"", "pd625069682.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/krusell_g209888-small.jpg",
		120, 120,
		"Cp-06-black", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: L, negru",
		"in STOC, compatibila cu foarte multe telefoane plate: iPhone, Blackberry, Samsung, Nokia, iGlo A101 si multe altele...", "",
		"140", "6",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15",
		"", "pd534569456.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15", "0",
		 0)
	
		Entry[191] = new Element(
		191, "",
		0, 0,
		"B-45", "Baterie pentru TINNO KT04, W1-GPS si altele...",
		"in STOC, Li-ion 1000mAh, COD standardizat: BL-6F", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1312449068.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[192] = new Element(
		192, "",
		0, 0,
		"B-46", "Baterie pentru WATCH MOBILE F1 -negru",
		"in STOC, Li-ion 480mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1312745135.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/blackberry HS-300 poza-a-small.jpg",
		120, 120,
		"CB-35", "Casca Bluetooth Mono Blackberry HS-300 -negru",
		"in STOC, reducere zgomot, 3.8cm si 8 grame, in acest moment este cea mai mica casca bluetooth din lume, compatibila cu orice telefon cu bluetooth 2.0, 2.1, baterie 4 ore convorbire!", "BlackBerry",
		"120", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1313651011.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[194] = new Element(
		194, "",
		0, 0,
		"B-47", "Baterie pentru BABY BEAR BB01",
		"in STOC, Li-ion 800mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1313706193.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/samsung-C6712-dualsim-alb-small.jpg",
		120, 120,
		"T-52-alb", "SAMSUNG C6712 Star II Duos: Telefon Dual SiM, ORIGINAL -alb",
		"in STOC, Meniu in limba romana, ecran tactil capacitiv 3.2&quot;, port WiFi, E-Mail inbox, agenda 1000 numere, 1 camera x 3mpx, memorie 30mb, Bluetooth A2DP, Radio FM, JAVA, Modem EDGE, Baterie: 5 zile", "SAMSUNG",
		"460", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4",
		"", "pd1314423414.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/samsung-dual-sim-B5722-maron-a-small.jpg",
		120, 120,
		"T-38-maron", "SAMSUNG B5722: Telefon Dual SiM - Dual CPU, ORIGINAL -maron inchis",
		"in STOC, Apel in asteptare intre SIM-uri, E-Mail inbox, agenda 1000 numere, ecran tactil 7.1cm, 1 camera x 3mpx, memorie 60mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Meniu in limba romana, Baterie: 5 zile", "SAMSUNG",
		"460", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2",
		"", "pd1268783878.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/samsung-dual-sim-C6112-dark-red-small.jpg",
		120, 120,
		"T-34-visiniu", "SAMSUNG C6112: Telefon Dual SiM - Dual CPU, ORIGINAL -visiniu",
		"in STOC, Apel in asteptare intre SIM-uri, Email inbox, agenda 1000 numere, ecran 5.6cm, 1 camera x 2mpx, memorie 30mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Meniu in limba romana, Baterie: 4 zile", "SAMSUNG",
		"400", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2",
		"", "pd1459136648.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/telefon-dual-sim-samsung-c6112-a-small.jpg",
		120, 120,
		"T-34-albastru", "SAMSUNG C6112: Telefon Dual SiM - Dual CPU, ORIGINAL -albastru deschis",
		"in STOC, Apel in asteptare intre SIM-uri, Email inbox, agenda 1000 numere, ecran 5.6cm, 1 camera x 2mpx, memorie 30mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Meniu in limba romana, Baterie: 4 zile", "SAMSUNG",
		"400", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2,5,2",
		"", "pd1263685520.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02,05,02", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/samsung_c5212_dualsim_a_small.jpg",
		120, 120,
		"T-32-negru", "SAMSUNG C5212i: Telefon Dual SiM - Dual CPU, ORIGINAL -negru",
		"EPUIZAT, Apel in asteptare intre SIM-uri, Email inbox, Agenda 1000 numere, ecran 5.6cm, 1 camera x 1,3mpx, memorie 60mb, Dual Bluetooth, Radio FM, JAVA, Meniu in limba romana, Baterie: 5 zile", "SAMSUNG",
		"370", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2,5,2,5,2",
		"", "pd-743284058.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02,05,02,05,02", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/cablu_usb_tinno_KT01-small.jpg",
		120, 169,
		"C-07", "Cablu de date USB dedicat compatibil cu telefon FLYING F698 dual sim",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "19",
		"", "pd-179039344.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/incarcator_auto_FLYING F698_small.jpg",
		120, 169,
		"I-01-04", "Incarcator auto cu port USB, compatibil cu telefon FLYING F698 dual sim",
		"in STOC", "",
		"20", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1314432682.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/Tinno-KT04i-4sim-negru-a-small.jpg",
		120, 120,
		"T4-03", "TINNO KT04i: Telefon 4 SIM - Dual CPU, TV si WiFi, meniu limba ROMANA -negru",
		"EPUIZAT, Apel in asteptare intre SIM-uri, Agenda 800 numere, tastatura QWERTY, Ecran 5.8cm, E-Mail inbox, JAVA 2.0, Black List, Bluetooth, Baterie: 4 zile", "TINNO",
		"500", "24",
		"1", 1,
		"bucata", "6",
		"", "pd1314966404.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/krusell_g209822-small.jpg",
		120, 120,
		"Cp-07-blue", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: XL, albastru",
		"in STOC, compatibila cu foarte multe telefoane plate: HTC Desire, LG Optimus, Motorola Droid, Samsung Galaxy S 2, Sony Ericsson X10, Nokia si multe altele...", "",
		"140", "12",
		"1", 1,
		"bucata", "15",
		"", "pd1314985065.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/iGlo_W102-rosu-a-small.jpg",
		120, 120,
		"T-53-rosu", "iGlo Mobile W102: Video Telefon Dual SiM 3G -rosu",
		"in STOC, Meniu in limba romana, Compatibil si cu DiGi MOBIL de la RDS, Apeluri Video, ecran 5.6cm, Inregistrare convorbiri, Email Inbox, Internet 3G, Agenda 1000 nr, Camera 1.3mpx, Bluetooth 2.1, JAVA 2.0, RadioFM, Baterie: 5 zile", "iGlo",
		"360", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2,5,2,5,2,2,3",
		"", "pd1315295189.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02,05,02,05,02,02,03", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/krusell_g209888-small.jpg",
		120, 120,
		"Cp-07-black", "Krusell Waterproof SEaLABox, carcasa SUBACVATICA pentru telefoane -marime: XL, negru",
		"in STOC, compatibila cu foarte multe telefoane plate: HTC Desire, LG Optimus, Motorola Droid, Samsung Galaxy S 2, Sony Ericsson X10, Nokia si multe altele...", "",
		"140", "12",
		"1", 1,
		"bucata", "15",
		"", "pd301810676.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/samsung-hm5000-casca-stilou-b-small.jpg",
		120, 120,
		"CB-38", "Casca Bluetooth Samsung Slim Stick HM5000, dual POINT, 2 telefoane simultan",
		"in STOC, multipoint, casca in forma de stilou, 23 grame, vibratii, compatibila cu orice telefon cu bluetooth 3.0, 2.1, 2.0, baterie 8 ore convorbire!", "SAMSUNG",
		"200", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-116921791.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/L900A-black-mic.jpg",
		120, 120,
		"T-54-negru", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -negru",
		"in STOC, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1315450034.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/baby_watch_M8-a-small.jpg",
		120, 120,
		"TG-021-albastru", "BABY WATCH M8-GPS: Telefon in forma de ceas pentru copii -albastru",
		"in STOC, sistem DUAL de localizare prin LBS + GPS, parintele poate localiza pozitia ceasului in orice moment, pe orice strada si in orice cladire, Monitorizare audio, 4 taste predefinite pe ecran ce formeaza automat, Baterie: 3 zile", "Senior",
		"460", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2,5,2,5,2,2,3,7,9",
		"", "pd1315562840.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02,05,02,05,02,02,03,07,09", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/L900A-pink-mic.jpg",
		120, 120,
		"T-54-roz", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -roz",
		"in STOC, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1315700273.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/L900A-rose-red-mic.jpg",
		120, 120,
		"T-54-rosu", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -rosu trandafiriu",
		"in STOC, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd-365036723.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/L900A-cyan-mic.jpg",
		120, 120,
		"T-54-violet", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -violet",
		"EPUIZAT, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd-1682513367.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/L900A-white-mic.jpg",
		120, 120,
		"T-54-alb", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -alb",
		"in STOC, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd-190394683.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/L900A-pink-red-mic.jpg",
		120, 120,
		"T-54-siclam", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -siclam",
		"in STOC, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1317593375.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/nokia-bl-5k-baterie-small.jpg",
		120, 120,
		"B-34-1", "Baterie originala NOKIA BL-5K, Li-ion 1200mAh",
		"in STOC, compatibila cu Nokia Oro, C7, N85, N86 8MP, X7-00 si cu TINNO KT04i: creste performantele cu 30%", "",
		"60", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1317885168.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/samsung-E2652w-alb-small.jpg",
		120, 120,
		"T-49-alb", "SAMSUNG E2652w: Telefon Dual SiM cu WiFi, ORIGINAL -alb",
		"in STOC, Meniu in limba romana, Email inbox, agenda 1000 numere, ecran tactil 2.6&quot;, 1 camera x 1.3mpx, memorie 50mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 4 zile", "SAMSUNG",
		"360", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2,5,2,5,2,2,3,7,9,2,4",
		"", "pd1318168034.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02,05,02,05,02,02,03,07,09,02,04", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/samsung-b7722-white-small.jpg",
		120, 120,
		"T-51-alb", "SAMSUNG B7722i: Video Telefon Dual SiM 3G - Dual CPU, WiFi, ORIGINAL -alb",
		"in STOC, Apel in asteptare intre SIM-uri, Compatibil si cu DiGi MOBIL de la RDS, Apeluri Video doar prin camera spate, Modem 3G HSDPA 3.6 Mbps, Push E-Mail, agenda 2000 nr, ecran tactil 3.2&quot;, camera 5mpx, Meniu in limba romana, Baterie: 4 zile", "SAMSUNG",
		"780", "24",
		"1", 1,
		"bucata", "14,11,2,4,11,14,11,14,11,14,11,14,11,12,18,11,3,5,2,3,4,5,2,0,11,0,11,13,11,11,15,11,15,11,15,11,15,11,15,2,4,11,15,11,18,2,4,11,15,2,3,2,3,13,12,11,15,11,15,11,15,2,4,5,2,5,2,5,2,5,2,2,3,7,9,2,4,4,3,5,2",
		"", "pd1317714764.htm",
		"", 1,
		"14,11,02,04,11,14,11,14,11,14,11,14,11,12,18,11,03,05,02,03,04,05,02,00,11,00,11,13,11,11,15,11,15,11,15,11,15,11,15,02,04,11,15,11,18,02,04,11,15,02,03,02,03,13,12,11,15,11,15,11,15,02,04,05,02,05,02,05,02,05,02,02,03,07,09,02,04,04,03,05,02", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/jabra-halo2-casca-bluetooth-mic.jpg",
		120, 120,
		"CB-40-negru", "Casca Bluetooth Stereo JABRA HALO 2, dual POINT, 2 telefoane simultan",
		"in STOC, difuzoare de inalta fidelitate 32mm si 32 Ohm, AM3D Virtual Surround si Power Bass, 2 microfoane cu reducere zgomot, multipoint, control prin atingere tactila, compatibila cu orice telefon cu bluetooth 3.0, 2.1, 2.0, profil A2DP pentru muzica", "JABRA",
		"380", "12",
		"1", 1,
		"bucata", "12",
		"", "pd748244272.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/samsung-microSD-8GB-clasa6-small.jpg",
		120, 120,
		"M-09", "SAMSUNG microSDHC 8GB Clasa 6 - card de memorie",
		"in STOC, adaptor SD", "",
		"60", "12",
		"1", 1,
		"bucata", "16",
		"", "pd380672263.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/samsung-microSD-4GB-clasa4-small.jpg",
		120, 120,
		"M-05", "SAMSUNG microSDHC 4GB Clasa 4 - card de memorie",
		"in STOC, adaptor SD", "",
		"30", "12",
		"1", 1,
		"bucata", "16",
		"", "pd-1732647489.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/samsung-microSD-2GB-small.jpg",
		120, 120,
		"M-03", "SAMSUNG microSD 2GB Clasa 2 - card de memorie",
		"in STOC, adaptor SD", "",
		"20", "12",
		"1", 1,
		"bucata", "16",
		"", "pd1578483168.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/blackberry-HS-700-casca-bluetooth-a-small.jpg",
		120, 120,
		"CB-42-negru", "Casca Bluetooth Mono Blackberry HS-700, dual POINT, 2 telefoane simultan -negru",
		"in STOC, piele naturala, indicatii GPS, reducere zgomot, multipoint, compatibila cu orice telefon cu bluetooth 2.1, 2.0, puteti asculta si muzica prin profilul A2DP, baterie 5 ore convorbire!", "BlackBerry",
		"200", "12",
		"1", 1,
		"bucata", "12",
		"", "pd792436861.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/LG-T510-dualsim-negru-small.jpg",
		120, 120,
		"T-55-negru", "LG T510: Telefon Dual SiM, meniu limba ROMANA, ORIGINAL -negru",
		"in STOC, agenda 1000 numere, ecran tactil 2.8&quot;, 1 camera x 2mpx, Email inbox, memorie 50mb, Dual Bluetooth, Radio FM, JAVA, Modem EDGE, Baterie: 4 zile", "SAMSUNG",
		"300", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1321662893.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/samsung-HM1700-casca-bluetooth-small.jpg",
		120, 120,
		"CB-37-negru", "Casca Bluetooth Mono SAMSUNG HM1700, dual POINT, 2 telefoane simultan -negru",
		"in STOC, multipoint, 10 grame, compatibila cu orice telefon cu bluetooth 3.0, 2.1, 2.0, puteti asculta si muzica prin profilul A2DP, baterie 7 ore convorbire!", "SAMSUNG",
		"120", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-1161264447.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/jabra-sport-casca-bluetooth-mic.jpg",
		120, 120,
		"CB-41", "Casca Bluetooth Stereo JABRA SPORT cu Radio FM, dual POINT, 2 telefoane simultan",
		"in STOC, stereo fara fire vizibile, Difuzoare de 32 Ohm cu Power Bass, microfon cu reducere zgomot, compatibila cu orice telefon cu bluetooth 3.0, 2.1, 2.0, profil A2DP pentru muzica, certificat US Militar rezista la ploaie, murdarie si lovituri.", "Plantronics",
		"400", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1040214237.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/jabra-supreme-casca-bluetooth-mic.jpg",
		120, 120,
		"CB-39", "Casca Bluetooth JABRA SUPREME, dual POINT, 2 telefoane simultan -negru",
		"in STOC, procesor de sunet HD si 3 microfoane pentru reducerea zgomotului, difuzor de 24mm, ghidare vocala, compatibila cu orice telefon cu bluetooth 3.0, 2.0, 2.1, profil A2DP pentru muzica", "JABRA",
		"400", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1107590790.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/HTC-Flyer-Digital-Pen-ST-D500.jpg",
		120, 120,
		"P15", "HTC Flyer Digital Pen ST D500 - PIX pentru ecran tactil capacitiv",
		"in STOC, varf subtire compatibil cu aplicatii de grafica digitala pentru creat desene, schite", "",
		"260", "6",
		"1", 1,
		"bucata", "20",
		"", "pd-1051295605.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/ozaki-iStroke-stylus-negru.jpg",
		120, 120,
		"P16-negru", "Ozaki iStroke Stylus - PIX pentru ecran tactil capacitiv -negru",
		"in STOC, un capat simuleaza degetul + un capat este PIX adevarat", "",
		"120", "6",
		"1", 1,
		"bucata", "20",
		"", "pd-1413449303.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/L900A-green-mic.jpg",
		120, 120,
		"T-54-verde", "iGlo Mobile L900: Telefon Dual SiM - Socant de mic, doar 6.7cm! -verde topaz",
		"in STOC, Meniu in limba romana, tastatura solida QWERTY, ecran 4.6cm, Inregistrare convorbiri, E-Mail Inbox, Agenda 200 nr, Camera, Bluetooth 2.1, JAVA 2.0 yahoo, facebook, RadioFM, Baterie: 5 zile", "iGlo",
		"280", "24",
		"1", 1,
		"bucata", "2",
		"", "pd1321815149.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/samsung-HM1700-casca-bluetooth-roz-small.jpg",
		120, 120,
		"CB-37-roz", "Casca Bluetooth Mono SAMSUNG HM1700, dual POINT, 2 telefoane simultan -roz",
		"in STOC, multipoint, 10 grame, compatibila cu orice telefon cu bluetooth 3.0, 2.1, 2.0, puteti asculta si muzica prin profilul A2DP, baterie 7 ore convorbire!", "SAMSUNG",
		"120", "12",
		"1", 1,
		"bucata", "12",
		"", "pd315318427.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[230] = new Element(
		230, "",
		0, 0,
		"B-44", "Baterie pentru iGlo Mobile L900",
		"in STOC, Li-ion 850mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd1322562031.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[231] = new Element(
		231, "",
		0, 0,
		"B-48", "Baterie pentru BABY WATCH M8",
		"in STOC, Li-ion 800mAh", "",
		"30", "6",
		"1", 1,
		"bucata", "17",
		"", "pd2019120875.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/jabra-stone-2-a-small.jpg",
		120, 120,
		"CB-31-alb", "Casca Bluetooth JABRA STONE 2, dual POINT, 2 telefoane simultan -alb",
		"in STOC, comenzi vocale Answer sau Ignore, 7 grame, incarcator portabil inteligent, forma revolutionara, reducerea zgomotului, control prin atingere tactila, bluetooth 2.0, 2.1, puteti asculta muzica prin profilul A2DP", "JABRA",
		"330", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1323074501.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/plantronics-voyager-pro-hd_a-small.jpg",
		120, 120,
		"CB-43-negru", "Casca Bluetooth Plantronics Voyager Pro HD, dual POINT, 2 telefoane simultan",
		"in STOC, revolutionara si legendara, Smart Sensor stie cand ai pus casca la ureche, 2 microfoane fara zgomote, difuzor de 13.6mm, indicatii GPS, indicator baterie, multipoint, compatibila cu orice telefon cu bluetooth 2.0, 2.1, muzica prin profilul A2DP", "Plantronics",
		"330", "12",
		"1", 1,
		"bucata", "12",
		"", "pd446341665.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/jabra-drive-a-small.jpg",
		120, 120,
		"CK-23", "CAR KIT Bluetooth JABRA DRIVE - 2 telefoane simultan",
		"in STOC, indicatii GPS, difuzor de putere 4W, Procesor sunet pentru reducerea zgomotului, compatibil cu bluetooth 3.0, 2.1, 2.0, redare muzica prin A2DP, baterie 20 ore convorbire!", "JABRA",
		"200", "12",
		"1", 1,
		"bucata", "13",
		"", "pd651050557.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/ozaki-iStroke-stylus-alb.jpg",
		120, 120,
		"P16-alb", "Ozaki iStroke Stylus - PIX pentru ecran tactil capacitiv -alb",
		"in STOC, un capat simuleaza degetul + un capat este PIX adevarat", "",
		"120", "6",
		"1", 1,
		"bucata", "20",
		"", "pd1878570009.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/novero_rockaway_negru-small.jpg",
		120, 120,
		"CB-44-negru", "Casca Bluetooth Stereo NOVERO Rockaway -negru",
		"in STOC, invizibila - stereo fara fire doar 10grame si 37cm lungime, compatibila cu orice telefon cu bluetooth 2.0, 2.1, A2DP, baterie 5 ore convorbire!", "Sony Ericsson",
		"280", "12",
		"1", 1,
		"bucata", "12",
		"", "pd-1297941521.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/novero_rockaway_rosu-small.jpg",
		120, 120,
		"CB-44-rosu", "Casca Bluetooth Stereo NOVERO Rockaway -rosu",
		"in STOC, invizibila - stereo fara fire doar 10grame si 37cm lungime, compatibila cu orice telefon cu bluetooth 2.0, 2.1, A2DP, baterie 5 ore convorbire!", "Sony Ericsson",
		"280", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1878547729.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/Samsung ECS-V980_GalaxyTAB-small.jpg",
		120, 120,
		"S-08", "Suport auto pentru Galaxy TAB - Samsung ECS-V980 + incarcator auto",
		"in STOC, compatibil cu Samsung Galaxy TAB GT-P1000, profilat specific cu linia tabletei; se poate roti in orice pozitie", "",
		"190", "6",
		"1", 1,
		"bucata", "14",
		"", "pd-99276406.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/Samsung ECS-V1A2BEG-galaxy-S2-poza1-mic.jpg",
		120, 120,
		"S-07", "Suport auto pentru Galaxy S II - Samsung ECS-V1A2BEG + incarcator auto",
		"in STOC, compatibil cu Galaxy S2 i9100, profilat specific cu linia telefonului; se poate roti in orice pozitie", "",
		"140", "6",
		"1", 1,
		"bucata", "14",
		"", "pd-856790199.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/Samsung ECS-V968_GalaxyS_a-small.jpg",
		120, 120,
		"S-06", "Suport auto pentru Galaxy S - Samsung ECS-V968 + incarcator auto",
		"in STOC, compatibil cu Galaxy S i9000, profilat specific cu linia telefonului; se poate roti in orice pozitie", "",
		"140", "6",
		"1", 1,
		"bucata", "14",
		"", "pd821683911.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/Samsung ECS-V1A3_Google_Nesus_S-small.jpg",
		120, 120,
		"S-05", "Suport auto pentru Google Nexus S - Samsung ECS-V1A3 + incarcator auto",
		"in STOC, compatibil cu modelele Samsung Google Nexus S GT-I9023/I9020, profilat specific cu linia telefonului; se poate roti in orice pozitie", "",
		"140", "6",
		"1", 1,
		"bucata", "14",
		"", "pd1304890352.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/senior-S02-GPS-poza1-mic.jpg",
		120, 120,
		"TG-03-negru", "SENIOR S02-GPS: Telefon cu sistem DUAL de localizare LBS + GPS -negru",
		"in STOC, pozitia telefonului poate fi localizata in orice moment, pe orice strada si in orice cladire, salvare traseu pas cu pas, 9 taste dedicate pentru apeluri rapide + 1 tasta SOS ce poate forma 3 numere automat, Baterie: 4 zile/10 zile", "Senior",
		"360", "24",
		"1", 1,
		"bucata", "8",
		"", "pd1305753856.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/husa-blackberry-portofel-piele-clasica-negru.jpg",
		120, 120,
		"L-05-negru", "BlackBerry Portofel, husa din piele adevarata, clasica -negru, marime L",
		"in STOC, COD: HDW-18975, contine si clema de prindere la curea, ideala pentru BlackBerry Storm 95xx, Bold 9000, Pearl 9100, Tinno KT04 si altele...", "",
		"60", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1327789536.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/husa-blackberry-portofel-piele-clasica-negru.jpg",
		120, 120,
		"L-06-negru-1", "BlackBerry Portofel, husa din piele adevarata, clasica -negru, marime M",
		"in STOC, COD: HDW-18965, contine si clema de prindere la curea, ideala pentru BlackBerry Bold 97xx, Curve 8xxx si altele...", "",
		"50", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd561368846.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/jabra-BT2045.jpg",
		120, 120,
		"CB-45", "Casca Bluetooth Mono JABRA BT2045, dual POINT, 2 telefoane simultan -negru",
		"in STOC, multiuse, 10 grame, compatibila cu orice telefon cu bluetooth 3.0, 2.1, 2.0, baterie 8 ore convorbire!", "JABRA",
		"70", "12",
		"1", 1,
		"bucata", "12",
		"", "pd1651229676.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/cleste-micro-sim-noosy-iphone-ipad.jpg",
		120, 120,
		"S-11", "NOOSY - Cleste micro SIM pentru iPhone 4 si iPad 2",
		"in STOC, Noosy taie perfect cartela GSM in format Micro SIM necesar utilizarii in iPhone 4, iPad 2 si alte telefoane cu slot Micro SIM", "",
		"40", "6",
		"1", 1,
		"bucata", "11",
		"", "pd-385844230.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/2phone-dual-sim-case-for-iphone-4d.jpg",
		120, 120,
		"S-13-negru", "QYG 2Phone Dual SiM pentru iPhone 4/4S -negru",
		"EPUIZAT din prima zi - revine in stoc pe 6 Martie 2012 - puteti lansa comanda in avans, transforma iPhone 4 in telefon adevarat Dual SiM cu apel in asteptare intre SiM-uri, carcasa profilata, receptor GSM 900/1800mhz, extra baterie 800mAh", "",
		"460", "24",
		"1", 1,
		"bucata", "11",
		"", "pd1069290073.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/samsung-microSD-32GB-clasa10-small.jpg",
		120, 120,
		"M-33", "SAMSUNG microSDHC 32GB Clasa 10 - card de memorie",
		"EPUIZAT, adaptor SD", "",
		"180", "12",
		"1", 1,
		"bucata", "16",
		"", "pd1327963176.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[249] = new Element(
		249, "",
		0, 0,
		"E36", "Inlocuire ecran LCD pentru TINNO KT04 - Operatiune service post-garantie",
		"in STOC, include toate materialele necesare, dureaza aprox. 7 zile de la trimiterea telefonului in service", "",
		"60", "12",
		"1", 1,
		"bucata", "21",
		"", "pd1328261998.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/2phone-dual-standby-sim-case-for-iphone-4.jpg",
		120, 120,
		"S-13-alb", "QYG 2Phone Dual SiM pentru iPhone 4/4S -alb",
		"in CURAND si pe ALB - lansare 6 Martie 2012 - puteti lansa comanda in avans, transforma iPhone 4 in telefon adevarat Dual SiM cu apel in asteptare intre SiM-uri, carcasa profilata, receptor GSM 850/900/1800/1900mhz, extra baterie 800mAh", "",
		"460", "24",
		"1", 1,
		"bucata", "11",
		"", "pd-498142765.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/incarcator-de-birou-dedicat-CECT-T689-small.jpg",
		120, 120,
		"I-17", "Incarcator de birou dedicat pentru incarcarea bateriei, compatibil cu telefonul Tinno KT02",
		"in STOC", "",
		"10", "6",
		"1", 1,
		"bucata", "18",
		"", "pd1328352408.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/incarcator-universal.jpg",
		120, 120,
		"Iu-04", "Incarcator de baterie UNIVERSAL 2 cu suport reglabil, rotativ",
		"in STOC, incarca independent orice baterie de telefon mobil scoasa din telefon", "",
		"40", "6",
		"1", 1,
		"bucata", "18",
		"", "pd978068614.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/samsung-flip-cover-C1A2-galaxy-S2-roz.jpg",
		120, 120,
		"Cp-08-roz", "Carcasa Flip pentru Samsung Galaxy S II   -negru/roz",
		"EPUIZAT, accesoriu original COD: EF-C1A2, inlocuieste capacul spate cu acest capac cu flip, protectie pentru ecran", "",
		"90", "0.2",
		"1", 1,
		"bucata", "15",
		"", "pd1328469882.htm",
		"", 1,
		"15", "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>Nu am gasit niciun produs potrivit criteriului de cautare. Va rugam incercati un alt termen...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Nu ati introdus niciun criteriu de cautare. Va rugam introduceti termenul 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();
			};
		};
