	// 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/sepeteekle.gif" width="83" height="24" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on 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/areson.jpg",
		108, 80,
		"1", "Ares Küvet 150*70 Beyaz",
		"", "",
		"305", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1119015058.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/flora.jpg",
		107, 80,
		"2", "Flora Küvet 170*70 Beyaz",
		"", "",
		"325", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1119016109.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/hestiaon.jpg",
		107, 80,
		"3", "Hestia Hidromasaj Küvet 170*85 Beyaz EKO2",
		"", "",
		"1140", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-242275562.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/hestiaon.jpg",
		107, 80,
		"4", "Hestia Küvet 170*85 Beyaz",
		"", "",
		"400", "0",
		"1", 1,
		"Adet", "34",
		"", "pd297508660.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/sarpedonon.jpg",
		107, 80,
		"5", "Sarpedon Hidromasaj Küvet 170*85/70 EKO1",
		"", "",
		"980", "0",
		"1", 1,
		"Adet", "34",
		"Yön;Sağ@", "pd2092951682.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/akteonon.jpg",
		107, 80,
		"7", "Akteon Küvet 110*110",
		"", "",
		"385", "0",
		"1", 1,
		"Adet", "34",
		"Renk;Beyaz@", "pd1119074804.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/athenaon.jpg",
		107, 80,
		"8", "Athena Küvet 120*120 Beyaz",
		"", "",
		"425", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-736488146.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/hekabeon.jpg",
		107, 80,
		"9", "Hekabe Küvet 130*130 Beyaz",
		"", "",
		"425", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-895617268.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/poseidonon.jpg",
		107, 80,
		"10", "Poseidon Hidromasaj Küvet 130*130 Beyaz EKO1",
		"", "",
		"990", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-863607782.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/minervaon.jpg",
		107, 80,
		"11", "Minerva Hidromasaj Küvet 142*142 Beyaz EKO1",
		"", "",
		"1100", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-165867560.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/minervaon.jpg",
		107, 80,
		"12", "Minerva Küvet 142*142 Beyaz",
		"", "",
		"500", "0",
		"1", 1,
		"Adet", "34",
		"", "pd916511174.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/helenaon.jpg",
		107, 80,
		"13", "Helena Hidromasajlı Küvet 140*140 Beyaz EKO1",
		"", "",
		"1370", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1119260758.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/zeugmaon.jpg",
		107, 80,
		"14", "Zeugma Hidromasajlı Küvet 150*150 Beyaz EKO1",
		"", "",
		"1300", "0",
		"1", 1,
		"Adet", "34",
		"", "pd2120124020.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/zeugmaon.jpg",
		107, 80,
		"15", "Zeugma Küvet 150*150 Beyaz",
		"", "",
		"670", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1494360514.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/nestoron.jpg",
		107, 80,
		"16", "Nestor Hidromasajlı Küvet 150*100 Beyaz EKO1",
		"", "",
		"1000", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1119858075.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/nestoron.jpg",
		107, 80,
		"17", "Nestor Küvet 150*100 Beyaz",
		"", "",
		"450", "0",
		"1", 1,
		"Adet", "34",
		"Renk;Beyaz@", "pd-445449894.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/zeuson.jpg",
		107, 80,
		"18", "Zeus Hidromasajlı Küvet Beyaz EKO1",
		"", "",
		"1510", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1119874743.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/kronos.jpg",
		53, 80,
		"19", "Kronos Köşe Duş Hamam 90*90*216cm Beyaz",
		"", "",
		"2300", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1552510909.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/hekabehamam.jpg",
		64, 80,
		"20", "Hekabe Küvet Hamam Eko1 130*130*212cm Beyaz",
		"", "",
		"4700", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-888131533.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/alionihamam.jpg",
		40, 80,
		"21", "Alioni Köşe Duş Hamam 110*110*217cm Beyaz",
		"", "",
		"4800", "0",
		"1", 1,
		"Adet", "34",
		"", "pd936770969.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/dustekkaremono.jpg",
		113, 80,
		"22", "Duş Teknesi Kare Monoblok 80*80 Beyaz",
		"", "",
		"90", "0",
		"1", 1,
		"Adet", "35",
		"Boyut;80x80@", "pd-1645356336.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/dustekkosenono.jpg",
		119, 80,
		"23", "Duş Teknesi Köşe Monoblok 90*90 Beyaz",
		"", "",
		"100", "0",
		"1", 1,
		"Adet", "35",
		"Renk;Beyaz@", "pd-638477907.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/priamosdusteknekabin.jpg",
		62, 80,
		"24", "Priamos Duş Teknesi Sol 170*89/70 Beyaz Kabin+Sifon",
		"", "",
		"1050", "0",
		"1", 1,
		"Adet", "35",
		"", "pd483273635.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/dusteknekare.jpg",
		45, 80,
		"25", "Duş Teknesi Kare 80*80 Beyaz",
		"", "",
		"165", "0",
		"1", 1,
		"Adet", "35",
		"Boyut;80x80@", "pd1983345631.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/dustekkose.jpg",
		47, 80,
		"26", "Duş Teknesi Köşe 80*80 Beyaz",
		"", "",
		"170", "0",
		"1", 1,
		"Adet", "35",
		"Boyut;80x80@", "pd-1903454245.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/antenor.jpg",
		44, 80,
		"27", "ANTENOR220 Duş Kabin Beyaz 90*90*183cm Temper Cam",
		"", "",
		"420", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-2144252543.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/hebe220kabin.jpg",
		43, 80,
		"28", "HEBE220 Duş Kabin Beyaz 90*90*183cm Temper Cam",
		"", "",
		"285", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1632490391.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/images/resimyokku.gif",
		55, 38,
		"31", "SARPEDON Küvet Kabin Beyaz 85*150cm Temper Cam",
		"", "",
		"0", "0",
		"1", 1,
		"Adet", "35",
		"Yön;Sağ@", "pd-1714973248.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/meduskaredus.jpg",
		45, 80,
		"35", "Medus Hidromasajlı Kare M 100*100 Duş Sis Kabinsiz",
		"", "",
		"1050", "0",
		"1", 1,
		"Adet", "34",
		"", "pd-1937372330.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/meduskosedus.jpg",
		45, 80,
		"34", "Medus Hidromasajlı Köşe M 100*100 Duş Sis Kabinsiz",
		"", "",
		"1050", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1120111336.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/meduskosedus.jpg",
		45, 80,
		"33", "Medus Hidromasajlı Köşe M 90*90 Duş Sis Kabinsiz",
		"", "",
		"650", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1120033485.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/meduskuvetdus.jpg",
		45, 80,
		"36", "Medus Hidromasajlı Pentagon 110*110 Duş Sis Kabinsiz",
		"", "",
		"1100", "0",
		"1", 1,
		"Adet", "34",
		"", "pd1648785780.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/kinguranus100.jpg",
		42, 80,
		"37", "KING URANUS100 Duş Kabin Beyaz 80*80*182cm",
		"", "",
		"119.19", "0",
		"1", 1,
		"Adet", "35",
		"Desen;Atlantis@", "pd-497318774.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/kinguranus100.jpg",
		42, 80,
		"38", "KING URANUS100 Kabin Beyaz 90*90*182cm Safir",
		"", "",
		"127.91", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-744823352.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/kingdus300.jpg",
		50, 80,
		"40", "KING Duş 300 Kabin Beyaz 90*182 cm Safir",
		"", "",
		"156.98", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1027621460.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/pentad300.jpg",
		40, 80,
		"41", "PENTA D300 Duş Kabin Beyaz 80*183 cm Safir",
		"", "",
		"156.98", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1120207591.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/flora100.jpg",
		40, 80,
		"43", "FLORA100 Duş Kabin Beyaz 80*80*185cm Temper Cam 6mm",
		"", "",
		"311.05", "0",
		"1", 1,
		"Adet", "35",
		"Renk;Beyaz@", "pd1076873942.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/flora100.jpg",
		40, 80,
		"44", "FLORA100 Duş Kabin Beyaz 100*100*185cm Temper Cam 6mm",
		"", "",
		"345.93", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-1298905868.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/flora300.jpg",
		42, 80,
		"45", "FLORA300 Duş Kabin Krom 90x185cm Temper Cam 6mm",
		"", "",
		"421.51", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1474823234.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/flora300.jpg",
		42, 80,
		"46", "FLORA300 Duş Kabin Beyaz 100*185cm Temper Cam 6mm",
		"", "",
		"395.35", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1830505536.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/eraslux.jpg",
		39, 80,
		"47", "ERASLUX300 Duş Kabin Krom 90x185cm Temper Cam 6mm",
		"", "",
		"476.74", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1120292021.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/kingsaturn200.jpg",
		43, 80,
		"48", "KING-SATURN200 Banyo Kabini Beyaz 150*148cm Safir",
		"", "",
		"116.28", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1489319403.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/kingsaturn200.jpg",
		43, 80,
		"49", "KING-SATURN200 Banyo Kabini 170*148cm Safir",
		"", "",
		"122.1", "0",
		"1", 1,
		"Adet", "35",
		"Renk;Beyaz@", "pd306049703.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/pentak201.jpg",
		62, 80,
		"50", "PENTA K-201 Banyo Kabini Beyaz 170*148cm Temper Cam 3mm",
		"", "",
		"220.93", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-1938238163.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/pentak200.jpg",
		45, 80,
		"51", "PENTA K-200 Banyo Kabini Beyaz 150*148cm Temper Cam 3mm",
		"", "",
		"206.4", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-106573021.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/pentak200.jpg",
		45, 80,
		"52", "PENTA K-200 Banyo Kabini Beyaz 170*148cm Temper Cam 3mm",
		"", "",
		"223.84", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-230548983.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"53", "HARMONY Jakuzi200 Kabini 110*148cm Safir",
		"", "",
		"279.1", "0",
		"1", 1,
		"Adet", "35",
		"Renk;Beyaz@", "pd-365673307.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"54", "HARMONY Jakuzi200 Kabini 110*148cm Beyaz Temper Cam 3mm",
		"", "",
		"337.21", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1735765851.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/harmonydus.jpg",
		54, 80,
		"55", "HARMONY Duş Kabini 110*182cm Beyaz Temper Cam 3mm Pentagon",
		"", "",
		"386.63", "0",
		"1", 1,
		"Adet", "35",
		"", "pd-1508429567.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"56", "HARMONY Jakuzi200 Kabini 120*148cm Beyaz Safir",
		"", "",
		"293.6", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1313104663.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"57", "HARMONY Jakuzi200 Kabini 120*148cm Beyaz Temper Cam 3mm",
		"", "",
		"354.65", "0",
		"1", 1,
		"Adet", "35",
		"", "pd650672925.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/images/resimyokku.gif",
		55, 38,
		"58", "HARMONY Jakuzi Kabini 130*148cm Beyaz Safir",
		"", "",
		"308.14", "0",
		"1", 1,
		"Adet", "35",
		"Model;Hekabe@", "pd207706261.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"59", "HARMONY Jakuzi200 Kabini 130*148cm Beyaz Temper Cam 3mm",
		"", "",
		"377.91", "0",
		"1", 1,
		"Adet", "35",
		"", "pd1407886539.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"60", "HARMONY Jakuzi200 Kabini 140*148cm Beyaz Safir",
		"", "",
		"322.68", "0",
		"1", 1,
		"Adet", "35",
		"", "pd418178033.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"61", "HARMONY Jakuzi200 Kabini 140*148cm Beyaz Temper Cam 3mm",
		"", "",
		"386.63", "0",
		"1", 1,
		"Adet", "35",
		"", "pd892276615.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/harmonyjakuzi200.jpg",
		60, 80,
		"62", "HARMONY Jakuzi200 Kabini 150*148cm Safir",
		"", "",
		"334.3", "0",
		"1", 1,
		"Adet", "35",
		"Renk;Beyaz@", "pd-404128253.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/ekosaraysari.jpg",
		56, 80,
		"63", "Kapı Kolu EKO SARAY",
		"", "",
		"7.41", "0",
		"1", 1,
		"Takım", "1",
		"Renk;Sarı@", "pd-1743273303.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/ekobastonsari.jpg",
		52, 80,
		"64", "Kapı Kolu EKO BASTON",
		"", "",
		"8.71", "0",
		"1", 1,
		"Takım", "1",
		"Renk;Sarı@", "pd-394557104.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/ekobastonalbsaten.jpg",
		53, 80,
		"65", "Kapı Kolu EKO BASTON Albrifin Saten",
		"", "",
		"10.47", "0",
		"1", 1,
		"Takım", "1",
		"", "pd112381950.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/ekobademkrom.jpg",
		57, 80,
		"66", "Kapı Kolu BADEM",
		"", "",
		"12.36", "0",
		"1", 1,
		"Takım", "1",
		"Renk;Krom@", "pd-769201174.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/gulsaten.jpg",
		62, 80,
		"67", "Kapı Kolu GÜL Saten",
		"", "",
		"14.3", "0",
		"1", 1,
		"Takım", "1",
		"", "pd1120814707.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/senfoniantik.jpg",
		55, 80,
		"68", "Kapı Kolu SENFONI Antik",
		"", "",
		"14.71", "0",
		"1", 1,
		"Takım", "1",
		"", "pd-1768751655.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/zambaksaten.jpg",
		57, 80,
		"69", "Kapı Kolu ZAMBAK Saten",
		"", "",
		"14.41", "0",
		"1", 1,
		"Takım", "1",
		"", "pd1333091247.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/zambakalbsaten.jpg",
		55, 80,
		"70", "Kapı Kolu ZAMBAK Albrifin Saten",
		"", "",
		"16.18", "0",
		"1", 1,
		"Takım", "1",
		"", "pd363431285.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/bodrumsaten.jpg",
		54, 80,
		"71", "Kapı Kolu BODRUM Saten",
		"", "",
		"10.18", "0",
		"1", 1,
		"Adet", "1",
		"", "pd1120824510.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/focaalbsaten.jpg",
		53, 80,
		"72", "Kapı Kolu FOÇA Albrifin Saten",
		"", "",
		"20", "0",
		"1", 1,
		"Adet", "1",
		"", "pd-744072932.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/images/resimyokku.gif",
		55, 38,
		"73", "Kapı Kolu FOÇA Antik",
		"", "",
		"18.82", "0",
		"1", 1,
		"Adet", "1",
		"", "pd324785322.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/cesmealbsaten.jpg",
		57, 80,
		"74", "Kapı Kolu ÇEŞME Albrifin Saten",
		"", "",
		"21.18", "0",
		"1", 1,
		"Adet", "1",
		"", "pd1651520232.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/lalesaten.jpg",
		55, 80,
		"75", "Kapı Kolu LALE Saten",
		"", "",
		"11.76", "0",
		"1", 1,
		"Adet", "1",
		"", "pd-1717374122.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/athenaalbsaten.jpg",
		58, 80,
		"76", "Kapı Kolu ATHENA Albrifin Saten",
		"", "",
		"21.18", "0",
		"1", 1,
		"Adet", "1",
		"", "pd323854708.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/dogansaten.jpg",
		81, 80,
		"77", "Kapı Kolu Rozetli DOĞAN Krom Saten",
		"", "",
		"18.82", "0",
		"1", 1,
		"Adet", "1",
		"", "pd664974530.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/rozzamkrom.jpg",
		81, 80,
		"78", "Kapı Kolu Rozetli ZAMBAK Krom Saten",
		"", "",
		"18.82", "0",
		"1", 1,
		"Adet", "1",
		"", "pd-2105052992.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/rozbodrumsaten.jpg",
		87, 80,
		"79", "Kapı Kolu Rozetli BODRUM Krom Saten",
		"", "",
		"14.41", "0",
		"1", 1,
		"Adet", "1",
		"", "pd-125778706.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/cekkumru.jpg",
		82, 80,
		"80", "KUMRU Çekme",
		"", "",
		"7.94", "0",
		"1", 1,
		"Adet", "1",
		"Renk;Antik@", "pd-588567348.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/8kosetokmak.jpg",
		180, 80,
		"81", "8 Köşe Tokmak",
		"", "",
		"6.59", "0",
		"1", 1,
		"Adet", "1",
		"Renk;Saten@", "pd1317136527.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/italtoksaten.jpg",
		62, 80,
		"82", "İTALYAN Tokmak Saten",
		"", "",
		"6.71", "0",
		"1", 1,
		"Adet", "1",
		"", "pd-830448299.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/taktak.jpg",
		88, 80,
		"83", "Tak Tak Saten",
		"", "",
		"5.29", "0",
		"1", 1,
		"Adet", "1",
		"", "pd-363055221.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/barelsari.jpg",
		48, 80,
		"84", "Barel Yale",
		"", "",
		"1.47", "0",
		"1", 1,
		"Adet", "1",
		"Renk;Sarı@", "pd-2066081331.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/fiyamsari.jpg",
		46, 80,
		"85", "Fiyam",
		"", "",
		"1.82", "0",
		"1", 1,
		"Adet", "1",
		"Renk;Saten@", "pd-1038001080.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/dsp12e_17ah.jpg",
		77, 80,
		"86", "DSP12E Kablosuz IMPACT Matkap/Screwdriver 12V 2Battery PB",
		"", "",
		"290", "0",
		"1", 1,
		"Adet", "3",
		"", "pd348067635.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/sdp12e_17ah.jpg",
		65, 80,
		"87", "SDP12E Kablosuz Matkap/Screwdriver 12V PB",
		"", "",
		"180", "0",
		"1", 1,
		"Adet", "3",
		"", "pd182140057.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/sdp12e_17ah.jpg",
		65, 80,
		"88", "SDP12E Kablosuz Matkap/Screwdriver 12V 2 Batarya PB",
		"", "",
		"248", "0",
		"1", 1,
		"Adet", "3",
		"", "pd-472205201.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/drp8e.jpg",
		64, 80,
		"89", "DRP8E Handy Matkap 460W 10mm KEYLESS CB",
		"", "",
		"106", "0",
		"1", 1,
		"Adet", "4",
		"", "pd1311322165.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/drp132eq.jpg",
		63, 80,
		"90", "DRP13-2EQ 2-Hızlı Matkap 630W 13mm CB",
		"", "",
		"162", "0",
		"1", 1,
		"Adet", "4",
		"", "pd-75446933.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/drp132eaq.jpg",
		64, 80,
		"91", "DRP13-2EAQ 2-Hızlı Matkap 630W 13mm SYST",
		"", "",
		"213", "0",
		"1", 1,
		"Adet", "4",
		"", "pd1744729489.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/drp20etq.jpg",
		81, 80,
		"92", "DRP20ETQ Yüksek-Torque Matkap 1050W 16mm MC",
		"", "",
		"255", "0",
		"1", 1,
		"Adet", "4",
		"", "pd-1664255449.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/pdp18_2e_1a.jpg",
		64, 80,
		"93", "PDP18-2E 2-Hızlı Impact Matkap 710W 13mm CB",
		"", "",
		"168", "0",
		"1", 1,
		"Adet", "4",
		"", "pd-733894483.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/pdp18_2e_1b.jpg",
		63, 80,
		"94", "PDP18-2E1 2-Hızlı Impact Matkap 650W 13mm CB",
		"", "",
		"156", "0",
		"1", 1,
		"Adet", "4",
		"", "pd-1191652701.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/pdp202eq.jpg",
		63, 80,
		"95", "PDP20-2EQ 2-Hızlı Impact Matkap 760W 13mm CB",
		"", "",
		"170", "0",
		"1", 1,
		"Adet", "4",
		"", "pd-212130423.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/pdp202eaq.jpg",
		64, 80,
		"96", "PDP202EAQ 2-Hızlı Impact Matkap 760W 13mm SYST",
		"", "",
		"225", "0",
		"1", 1,
		"Adet", "4",
		"", "pd1217563359.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/pdp322eq.jpg",
		100, 80,
		"97", "PDP32-2EQ 2-Hızlı Impact Matkap 1050W 16mm CB",
		"", "",
		"253", "0",
		"1", 1,
		"Adet", "4",
		"", "pd-1546581979.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/anemongomme.jpg",
		32, 80,
		"98", "Esvit ANEMON Banyo Dolabı 75cm Beyaz Gömme Kulplu",
		"", "",
		"416", "0",
		"1", 1,
		"Adet", "37",
		"", "pd768395059.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/sebboy.jpg",
		26, 80,
		"99", "Esvit ŞEBBOY Banyo Dolabı 55cm Beyaz Çekme Kulplu",
		"", "",
		"240", "0",
		"1", 1,
		"Adet", "37",
		"", "pd-1151308647.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/asterkcekulplu.jpg",
		29, 80,
		"100", "Esvit ASTER Banyo Dolabı 65cm Beyaz Çekme Kulplu",
		"", "",
		"284", "0",
		"1", 1,
		"Adet", "37",
		"", "pd1721985135.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/fulyacekkulp.jpg",
		33, 80,
		"101", "Esvit FULYA Banyo Dolabı 75cm Beyaz Çekme Kulplu",
		"", "",
		"384", "0",
		"1", 1,
		"Adet", "37",
		"", "pd182542389.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/gulboydolcek.jpg",
		17, 80,
		"102", "Esvit GÜL Boydolabı 35cm Beyaz Çekme Kulplu",
		"", "",
		"180", "0",
		"1", 1,
		"Adet", "37",
		"", "pd-776702613.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/gelincikcekkulp.jpg",
		36, 80,
		"103", "Esvit GELİNCİK Banyo Dolabı 80cm Beyaz Çekme Kulplu",
		"", "",
		"408", "0",
		"1", 1,
		"Adet", "37",
		"", "pd-233200239.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/gerberacek.jpg",
		38, 80,
		"104", "Esvit GERBERA Banyo Dolabı 90cm Beyaz Çekme Kulplu",
		"", "",
		"440", "0",
		"1", 1,
		"Adet", "37",
		"", "pd723266087.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/laleboycekkulp.jpg",
		25, 80,
		"105", "Esvit LALE Boydolabı 55cm Beyaz Çekme Kulplu",
		"", "",
		"280", "0",
		"1", 1,
		"Adet", "37",
		"", "pd1121508626.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/kamelyacekkulp.jpg",
		41, 80,
		"106", "Esvit KAMELYA Banyo Dolabı 100cm Beyaz Çekme Kulplu",
		"", "",
		"472", "0",
		"1", 1,
		"Adet", "37",
		"", "pd1121668645.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/images/resimyokku.gif",
		55, 38,
		"107", "Esvit ANEMON Banyo Dolabı 75cm Beyaz Çekme Kulplu",
		"", "",
		"384", "0",
		"1", 1,
		"Adet", "37",
		"", "pd48878811.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/images/resimyokku.gif",
		55, 38,
		"108", "Esvit ANEMON Banyo Dolabı 75cm Beyaz-GRİ Çekme Kulplu",
		"", "",
		"448", "0",
		"1", 1,
		"Adet", "37",
		"", "pd-1643261311.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/cbs-plastic.gif",
		100, 86,
		"109", "ÇBS Plastik Boya",
		"", "",
		"7.14", "0",
		"1", 1,
		"Adet", "25",
		"Litre;2,20@", "pd968049890.htm",
		"", 1,
		"24", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/cbs-akrilat.gif",
		100, 75,
		"110", "ÇBS Akrilat Plastik",
		"", "",
		"13.7", "0",
		"1", 1,
		"Adet", "25",
		"Litre;2,50@", "pd319824247.htm",
		"", 1,
		"24", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/konakplastik.jpg",
		81, 80,
		"111", "ÇBS KONAK SÜPER Plastik Boya",
		"", "",
		"34.52", "0",
		"1", 1,
		"Adet", "25",
		"Kilo;25,0@", "pd-1881781771.htm",
		"", 1,
		"24", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/cbssatem-aqua.gif",
		150, 126,
		"112", "ÇBS Saten Aqua YMat SuBazlı",
		"", "",
		"17.86", "0",
		"1", 1,
		"Adet", "24",
		"Litre;2,50@", "pd-1053486320.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/cbssaten-aqua-astar.gif",
		100, 83,
		"113", "ÇBS Saten Aqua Astar",
		"", "",
		"5.78", "0",
		"1", 1,
		"Adet", "24",
		"Litre;2,50@", "pd293213212.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/cbssilikonitplus.gif",
		100, 92,
		"114", "ÇBS Silikonit Plus Dış Cephe",
		"", "",
		"16.7", "0",
		"1", 1,
		"Adet", "26",
		"Litre;2,50@", "pd1650618655.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/cbsakroseal.jpg",
		107, 80,
		"115", "ÇBS Akro-Sealer",
		"", "",
		"5.95", "0",
		"1", 1,
		"Adet", "26",
		"Litre;2,50@", "pd-1039472357.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/cbstexturit.gif",
		100, 108,
		"116", "ÇBS Texturit Kaplama 25 KG",
		"", "",
		"53.6", "0",
		"1", 1,
		"Adet", "26",
		"", "pd-719454015.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/cbsakrolit.jpg",
		107, 80,
		"117", "ÇBS Akrolit Dış Cephe",
		"", "",
		"14.3", "0",
		"1", 1,
		"Adet", "26",
		"Litre;2,50@", "pd1743946458.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/cbsdekralit.gif",
		100, 94,
		"118", "ÇBS Dekra-Lit",
		"", "",
		"10.12", "0",
		"1", 1,
		"Adet", "26",
		"Litre;2,50@", "pd-662958193.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/cbsbeyaz-astar.jpg",
		100, 73,
		"119", "ÇBS Beyaz Astar Silikon Esaslı",
		"", "",
		"8.93", "0",
		"1", 1,
		"Adet", "26",
		"Litre;2,50@", "pd-1973218737.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/cbspic-deco-superlac.jpg",
		64, 80,
		"121", "ÇBS Superlac Sentetik",
		"", "",
		"4.9", "0",
		"1", 1,
		"Adet", "27",
		"Litre;0,75@", "pd-1308288679.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/cbskonak-sentetik.jpg",
		60, 80,
		"122", "ÇBS Konak Sentetik",
		"", "",
		"4.4", "0",
		"1", 1,
		"Adet", "27",
		"Litre;0,75@", "pd-103786251.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/cbs-lux.jpg",
		70, 80,
		"123", "CBS Lux",
		"", "",
		"4.8", "0",
		"1", 1,
		"Adet", "27",
		"Litre;1,0@", "pd1597420105.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/cbstruva-ahsap-koruyucu.jpg",
		71, 80,
		"124", "ÇBS Truva Ahşap Koruyucu",
		"", "",
		"3.27", "0",
		"1", 1,
		"Adet", "27",
		"Litre;0,75@", "pd-1608195867.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/cbsantipas.jpg",
		73, 80,
		"126", "ÇBS Antipas",
		"", "",
		"4.7", "0",
		"1", 1,
		"Adet", "27",
		"Litre;0,75@", "pd1551149267.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/cbspiramitastar.jpg",
		70, 80,
		"127", "ÇBS Piramit Astar",
		"", "",
		"3.8", "0",
		"1", 1,
		"Adet", "27",
		"Litre;0,75@", "pd1451460120.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/cbssuperallsentetik1.jpg",
		63, 80,
		"128", "Superral Sentetik Oto Boyası 1.0 LT",
		"", "",
		"9.52", "0",
		"1", 1,
		"Adet", "28",
		"", "pd769955599.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/autocolor-superlux.jpg",
		65, 80,
		"129", "Superlux Sentetik Oto Boyası",
		"", "",
		"8.33", "0",
		"1", 1,
		"Adet", "28",
		"Litre;0,90@", "pd1735798577.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/images/resimyokku.gif",
		55, 38,
		"131", "Belco Astar P084 1KG",
		"", "",
		"4.8", "0",
		"1", 1,
		"Adet", "28",
		"", "pd-74063672.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/autoset-polyestermacun-pm11.jpg",
		100, 43,
		"132", "Autoset P11 Polyester Macun 0.950KG GRI",
		"", "",
		"4.8", "0",
		"1", 1,
		"Adet", "28",
		"", "pd-811871178.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/cbsbelcopolish1.jpg",
		46, 80,
		"134", "Belco Polish",
		"", "",
		"3.91", "0",
		"1", 1,
		"Adet", "28",
		"Litre;0,250@", "pd1086208672.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/cbsbelkopasta1.jpg",
		112, 80,
		"135", "Belco Oto Pasta 1 KG",
		"", "",
		"8.33", "0",
		"1", 1,
		"Adet", "29",
		"", "pd-958389810.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/images/resimyokku.gif",
		55, 38,
		"130", "Belco Macun P083",
		"", "",
		"4.8", "0",
		"1", 1,
		"Adet", "29",
		"Kilo;1,0@", "pd65587082.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/images/resimyokku.gif",
		55, 38,
		"136", "ÇBS Hammerton 1KG",
		"", "",
		"4.91", "0",
		"1", 1,
		"Adet", "30",
		"", "pd1598982008.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/cbssasiboyasi.jpg",
		67, 80,
		"139", "ÇBS Şasi Boyası 1 KG",
		"", "",
		"3.91", "0",
		"1", 1,
		"Adet", "30",
		"", "pd-901986031.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/cbs-saten.jpg",
		71, 80,
		"120", "ÇBS Saten YMat Sentetik",
		"", "",
		"24.4", "0",
		"1", 1,
		"Adet", "24",
		"Litre;3,75@", "pd1992364429.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/cbs-sentetik-tiner.jpg",
		57, 80,
		"137", "ÇBS Sentetik Tiner",
		"", "",
		"3.12", "0",
		"1", 1,
		"Adet", "31",
		"", "pd448449461.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Farisbugatti5000maviel.jpg",
		80, 80,
		"140", "Faris Bugatti Banyo Bataryası Telefonlu Set Mavi El Saten",
		"", "",
		"220", "0",
		"1", 1,
		"Adet", "39",
		"Renk;Altın@", "pd619135755.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/farisliberty13.jpg",
		102, 80,
		"141", "Faris Liberty Banyo Bataryası Telefonlu Set Krom+Altın",
		"", "",
		"100", "0",
		"1", 1,
		"Adet", "39",
		"", "pd-1003770831.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/fariscolonialr7000.jpg",
		64, 80,
		"142", "Faris Colonial Banyo Bataryası Telefonlu Set Mavi El Krom",
		"", "",
		"150", "0",
		"1", 1,
		"Adet", "39",
		"", "pd971248071.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/farisperla6100.jpg",
		85, 80,
		"143", "Faris Perla Banyo Bataryası Telefonlu Set Krom",
		"", "",
		"140", "0",
		"1", 1,
		"Adet", "39",
		"", "pd1791265101.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/farisperla6110.jpg",
		132, 80,
		"144", "Faris Perla Banyo Bataryası Sade Krom",
		"", "",
		"122", "0",
		"1", 1,
		"Adet", "39",
		"", "pd1808081987.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/farisdeltamix0104.jpg",
		89, 80,
		"145", "Faris Deltamix Banyo Bataryası Telefonlu SetSAMPANYA",
		"", "",
		"60", "0",
		"1", 1,
		"Adet", "39",
		"", "pd-1204662231.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/farispanther1064ok.jpg",
		80, 80,
		"146", "Faris Panther Banyo Bataryası Sade Krom+Altın",
		"", "",
		"56", "0",
		"1", 1,
		"Adet", "39",
		"", "pd1806972543.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/trmamores3333pembeyer.jpg",
		80, 80,
		"147", "Termal Yer Karosu 33*33 AMORES PEMBE",
		"", "",
		"6.55", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd1128603389.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/trmartemis3333griyer.jpg",
		80, 80,
		"148", "Termal Yer Karosu 33*33 ARTEMIS GRI",
		"", "",
		"6.55", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd1632137587.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/trmcotto3333kizilyer.jpg",
		80, 80,
		"151", "Termal Yer Karosu 33*33 COTTO KIZIL",
		"", "",
		"8.2", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd-1602344302.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/trmdalaman3333karamelyer.jpg",
		80, 80,
		"152", "Termal Yer Karosu 33*33 DALAMAN KARAMEL",
		"", "",
		"7.85", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd-302179568.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/trmdalaman3333kmaviyer.jpg",
		81, 80,
		"153", "Termal Yer Karosu 33*33 DALAMAN K.MAVİ",
		"", "",
		"7.85", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd954054590.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/trmorlando3333yesilyer.jpg",
		80, 80,
		"155", "Termal Yer Karosu 33*33 ORLANDO YESIL",
		"", "",
		"7.2", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd239041434.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/trmriva3333cottoyer.jpg",
		80, 80,
		"156", "Termal Yer Karosu 33*33 RIVA COTTO",
		"", "",
		"7.4", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd225047384.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/trmriva3333sariyer.jpg",
		79, 80,
		"157", "Termal Yer Karosu 33*33 RIVA SARI",
		"", "",
		"7.4", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd794192198.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/trmriva3333yesilyer.jpg",
		80, 80,
		"158", "Termal Yer Karosu 33*33 RIVA YESIL",
		"", "",
		"7.4", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd-1242052380.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/trmsuva3333bejyer.jpg",
		80, 80,
		"159", "Termal Yer Karosu 33*33 SUVA BEJ",
		"", "",
		"6.55", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd1144580530.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/trmarizona3333bonepors.jpg",
		80, 80,
		"160", "Termal Yer Karosu 33*33 ARIZONA BONE PORSELEN",
		"", "",
		"8.61", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd-2064748752.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/trmtravertino3333goldpors.jpg",
		80, 80,
		"161", "Termal Yer Karosu 33*33 TRAVERTINO GOLD PORSELEN",
		"", "",
		"8.61", "0",
		"1", 1,
		"Metrekare", "33",
		"", "pd379300062.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/sth94.303jamaica.jpg",
		93, 80,
		"166", "STH Dus Bataryası Telefonlu TK. Krom",
		"", "",
		"37", "0",
		"1", 1,
		"Adet", "39",
		"", "pd65047322.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/sth94.476antigona.jpg",
		106, 80,
		"167", "STH Banyo Bataryası Telefonlu Tk. Krom",
		"", "",
		"38", "0",
		"1", 1,
		"Adet", "39",
		"", "pd-205549864.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/sth92.038jamaica.jpg",
		74, 80,
		"164", "STH Mutfak Bataryası VERTICAL(Dikey) Krom",
		"", "",
		"47", "0",
		"1", 1,
		"Adet", "40",
		"", "pd-255669202.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/sth94.300jamaica.jpg",
		84, 80,
		"165", "STH Lavabo Bataryası Tek Krom",
		"", "",
		"31", "0",
		"1", 1,
		"Adet", "40",
		"", "pd1718715916.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/kf0.jpg",
		112, 80,
		"168", "Saer Su Motoru HP 0.50 1&quot; KF/0",
		"", "",
		"47.6", "0",
		"1", 1,
		"Adet", "42",
		"", "pd1130766241.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/kf1.jpg",
		105, 80,
		"169", "Saer Su Motoru HP 0.50 1&quot; KF/1",
		"", "",
		"49.5", "0",
		"1", 1,
		"Adet", "42",
		"", "pd2033414839.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/cmp76-0.jpg",
		105, 80,
		"170", "Saer Su Motoru HP 1.00 1&quot; CMP/76/0",
		"", "",
		"90", "0",
		"1", 1,
		"Adet", "42",
		"", "pd699962301.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/bp3-4-5.jpg",
		110, 80,
		"171", "Saer Su Motoru HP 1.00 2&quot; BP3/0",
		"", "",
		"140", "0",
		"1", 1,
		"Adet", "42",
		"Hp;1,00@", "pd-1482538389.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/cb40-50.jpg",
		106, 80,
		"172", "Saer Su Motoru HP 1.50 11/2 &quot;*1&quot; Çift Pervane CB40",
		"", "",
		"168", "0",
		"1", 1,
		"Adet", "42",
		"Hp;1,50@", "pd-1394030809.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/ir32.jpg",
		102, 80,
		"173", "Saer Su Motoru+Flanza HP 2.00 240V IR32-125A-G",
		"", "",
		"277.5", "0",
		"1", 1,
		"Adet", "42",
		"", "pd-1771979347.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/m102-202.jpg",
		148, 80,
		"174", "Saer Su Motoru HP 1.00 1 1/4&quot;x1&quot;+ ENJEKTOR",
		"", "",
		"228", "0",
		"1", 1,
		"Adet", "42",
		"Hp;1,00@", "pd1397656201.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/m80-300.jpg",
		148, 80,
		"175", "Saer JET Su Motoru HP 1.50 1 1/2&quot;x1 1/4&rsquo;&rsquo; M300C",
		"", "",
		"203", "0",
		"1", 1,
		"Adet", "42",
		"Hp;1,50@", "pd1877785893.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/fs98c-d-e.jpg",
		10, 80,
		"176", "Saer Dalgıç HP 1.00/4&quot; 1 1/4&quot; +Kablo+Kontrol Kutusu FS98C/9",
		"", "",
		"369", "0",
		"1", 1,
		"Adet", "42",
		"Hp;1,00@", "pd-1887957108.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/fs98c-d-e.jpg",
		10, 80,
		"177", "Saer Dalgıç HP 3.00/4&quot; 2&rsquo;&rsquo;+Kablo+Kontrol Kutusu FS98D/19",
		"", "",
		"609", "0",
		"1", 1,
		"Adet", "42",
		"", "pd-188731238.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/fs98c-d-e.jpg",
		10, 80,
		"178", "Saer Dalgıç HP 2.00/4&quot; 2&rsquo;&rsquo;+Kablo+Kontrol Kutusu FS98E/2",
		"", "",
		"446", "0",
		"1", 1,
		"Adet", "42",
		"", "pd-49434536.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/cl95.jpg",
		21, 80,
		"179", "Saer Yedek Dalgıç Motoru HP 1.50/4&quot; 240V CL95/1,5",
		"", "",
		"188", "0",
		"1", 1,
		"Adet", "42",
		"", "pd536112710.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/images/resimyokku.gif",
		55, 38,
		"180", "BEYAZ KERESTE 1&quot;x2&quot;x4M",
		"", "",
		"1.04", "0",
		"1", 1,
		"Adet", "10",
		"", "pd1132667364.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/images/resimyokku.gif",
		55, 38,
		"181", "BEYAZ KERESTE 1&quot;x4&quot;x3M",
		"", "",
		"1.54", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-67638606.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/images/resimyokku.gif",
		55, 38,
		"182", "BEYAZ KERESTE 1&quot;x4&quot;x4M",
		"", "",
		"2.05", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-1817618384.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/images/resimyokku.gif",
		55, 38,
		"183", "BEYAZ KERESTE 1&quot;x5&quot;x3M",
		"", "",
		"1.92", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-816530978.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/images/resimyokku.gif",
		55, 38,
		"184", "BEYAZ KERESTE 1&quot;x5&quot;x4M",
		"", "",
		"2.56", "0",
		"1", 1,
		"Adet", "10",
		"", "pd583396156.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/images/resimyokku.gif",
		55, 38,
		"185", "BEYAZ KERESTE 1&quot;x7&quot;x4M",
		"", "",
		"3.59", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-1406520374.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/images/resimyokku.gif",
		55, 38,
		"186", "BEYAZ KERESTE 1&quot;x8&quot;x4M",
		"", "",
		"4.1", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-283236600.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/images/resimyokku.gif",
		55, 38,
		"187", "BEYAZ KERESTE 2&quot;x2&quot;x4M",
		"", "",
		"2.05", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-504462218.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/images/resimyokku.gif",
		55, 38,
		"188", "BEYAZ KERESTE 2&quot;x4&quot;x3M",
		"", "",
		"3.07", "0",
		"1", 1,
		"Adet", "10",
		"", "pd71571348.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/images/resimyokku.gif",
		55, 38,
		"189", "BEYAZ KERESTE 2&quot;x4&quot;x4M",
		"", "",
		"4.1", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-382560286.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/images/resimyokku.gif",
		55, 38,
		"190", "BEYAZ KERESTE 2&quot;x4&quot;x5M",
		"", "",
		"5.12", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-1889367840.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/images/resimyokku.gif",
		55, 38,
		"191", "BEYAZ KERESTE 2&quot;x5&quot;x4M",
		"", "",
		"5.24", "0",
		"1", 1,
		"Adet", "10",
		"", "pd1087248910.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/images/resimyokku.gif",
		55, 38,
		"192", "BEYAZ KERESTE 2&quot;x5&quot;x5M",
		"", "",
		"6.56", "0",
		"1", 1,
		"Adet", "10",
		"", "pd810092268.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/images/resimyokku.gif",
		55, 38,
		"193", "BEYAZ KERESTE 2&quot;x6&quot;x4M",
		"", "",
		"6.3", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-708086022.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/images/resimyokku.gif",
		55, 38,
		"194", "BEYAZ KERESTE 2&quot;x6&quot;x5M",
		"", "",
		"7.87", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-751313480.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/images/resimyokku.gif",
		55, 38,
		"195", "BEYAZ KERESTE 2&quot;x8&quot;x4M",
		"", "",
		"8.39", "0",
		"1", 1,
		"Adet", "10",
		"", "pd571726502.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/images/resimyokku.gif",
		55, 38,
		"196", "BEYAZ KERESTE 2&quot;x10&quot;x4M",
		"", "",
		"10.49", "0",
		"1", 1,
		"Adet", "10",
		"", "pd527178052.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/images/resimyokku.gif",
		55, 38,
		"197", "BEYAZ KERESTE 3&quot;x3&quot;x3M",
		"", "",
		"3.46", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-304402158.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/images/resimyokku.gif",
		55, 38,
		"198", "BEYAZ KERESTE 3&quot;x3&quot;x4M",
		"", "",
		"4.61", "0",
		"1", 1,
		"Adet", "10",
		"", "pd1181451664.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/images/resimyokku.gif",
		55, 38,
		"199", "BEYAZ KERESTE 3&quot;x6&quot;x4M",
		"", "",
		"9.76", "0",
		"1", 1,
		"Adet", "10",
		"", "pd1607214654.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/images/resimyokku.gif",
		55, 38,
		"200", "BEYAZ KERESTE 3&quot;x6&quot;x5M",
		"", "",
		"12.2", "0",
		"1", 1,
		"Adet", "10",
		"", "pd-1072648548.htm",
		"", 1,
		"57", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/images/resimyokku.gif",
		55, 38,
		"204", "ISVEC KERESTE 5&quot;*1&quot;*14&rsquo;",
		"", "",
		"4.2", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1132752222.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/images/resimyokku.gif",
		55, 38,
		"205", "ISVEC KERESTE 5&quot;*1&quot;*16&rsquo;",
		"", "",
		"4.8", "0",
		"1", 1,
		"Adet", "8",
		"", "pd73059004.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/images/resimyokku.gif",
		55, 38,
		"206", "ISVEC KERESTE 5&quot;*1&quot;*17&rsquo;",
		"", "",
		"5.1", "0",
		"1", 1,
		"Adet", "8",
		"", "pd-992469174.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/images/resimyokku.gif",
		55, 38,
		"207", "ISVEC KERESTE 6&quot;*2&quot;*10&rsquo;",
		"", "",
		"7.2", "0",
		"1", 1,
		"Adet", "8",
		"", "pd-751042936.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/images/resimyokku.gif",
		55, 38,
		"208", "ISVEC KERESTE 6&quot;*2&quot;*11&rsquo;",
		"", "",
		"7.92", "0",
		"1", 1,
		"Adet", "8",
		"", "pd489564150.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/images/resimyokku.gif",
		55, 38,
		"209", "ISVEC KERESTE 6&quot;*2&quot;*12&rsquo;",
		"", "",
		"8.64", "0",
		"1", 1,
		"Adet", "8",
		"", "pd-181770476.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/images/resimyokku.gif",
		55, 38,
		"210", "ISVEC KERESTE 6&quot;*2&quot;*13&rsquo;",
		"", "",
		"9.36", "0",
		"1", 1,
		"Adet", "8",
		"", "pd-380669086.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/images/resimyokku.gif",
		55, 38,
		"211", "ISVEC KERESTE 6&quot;*2&quot;*14&rsquo;",
		"", "",
		"10.08", "0",
		"1", 1,
		"Adet", "8",
		"", "pd910741600.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/images/resimyokku.gif",
		55, 38,
		"212", "ISVEC KERESTE 6&quot;*2&quot;*16&rsquo;",
		"", "",
		"11.52", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1070312846.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/images/resimyokku.gif",
		55, 38,
		"213", "ISVEC KERESTE 6&quot;*2&quot;*17&rsquo;",
		"", "",
		"12.24", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1960756844.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/images/resimyokku.gif",
		55, 38,
		"214", "ISVEC KERESTE 6&quot;*2.5&quot;*12&rsquo;",
		"", "",
		"10.8", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1357202042.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/images/resimyokku.gif",
		55, 38,
		"215", "ISVEC KERESTE 6&quot;*2.5&quot;*13&rsquo;",
		"", "",
		"11.7", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1931777336.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/images/resimyokku.gif",
		55, 38,
		"216", "ISVEC KERESTE 6&quot;*2.5&quot;*14&rsquo;",
		"", "",
		"12.6", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1027431974.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/images/resimyokku.gif",
		55, 38,
		"217", "ISVEC KERESTE 6&quot;*2.5&quot;*11&rsquo;",
		"", "",
		"9.9", "0",
		"1", 1,
		"Adet", "8",
		"", "pd-1110488892.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/images/resimyokku.gif",
		55, 38,
		"218", "ISVEC KERESTE 8&quot;*2.5&quot;*14&rsquo;",
		"", "",
		"16.8", "0",
		"1", 1,
		"Adet", "8",
		"", "pd255847570.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/images/resimyokku.gif",
		55, 38,
		"219", "ISVEC KERESTE 8&quot;*2.5&quot;*15&rsquo;",
		"", "",
		"18", "0",
		"1", 1,
		"Adet", "8",
		"", "pd1935453456.htm",
		"", 1,
		"55", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/pladosMO08611DX.jpg",
		290, 138,
		"220", "PLADOS Eyve Paslanmaz Çelik TekGöz 86*50 MONDIAL Sol",
		"", "",
		"85", "0",
		"1", 1,
		"Adet", "36",
		"", "pd1137481587.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/pladosCO10011DX.jpg",
		290, 140,
		"221", "PLADOS Eyve Paslanmaz Çelik 1 1/2 Göz 100*50 OLYMPUS Sağ",
		"", "",
		"175", "0",
		"1", 1,
		"Adet", "36",
		"", "pd-1277315367.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/pladosMO11621DX.jpg",
		290, 119,
		"222", "PLADOS Eyve Paslanmaz Çelik ÇiftGöz 116*50 MONDIAL Sol",
		"", "",
		"110", "0",
		"1", 1,
		"Adet", "36",
		"", "pd243449007.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/pladosLISP838320S.jpg",
		290, 168,
		"223", "PLADOS Eyve Paslanmaz Çelik Köşe ÇiftGöz 83*83 REFRESH",
		"", "",
		"260", "0",
		"1", 1,
		"Adet", "36",
		"", "pd-908472715.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/pladosSP0981.jpg",
		290, 145,
		"224", "PLADOS Eyve U. Granit 1 1/2Goz 98*50.3 SPAZIO A.Bej 94",
		"", "",
		"305", "0",
		"1", 1,
		"Adet", "36",
		"", "pd-1600942677.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/pladosSP1162.jpg",
		290, 119,
		"225", "PLADOS Eyve Quartz ÇiftGöz 116*50 SPAZIO Mavi 21",
		"", "",
		"345", "0",
		"1", 1,
		"Adet", "36",
		"", "pd-894994479.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/pladosPLA832.jpg",
		290, 180,
		"226", "PLADOS Eyve Granit Köşe Çift Göz 83*50 ATLANTIC Bej 80",
		"", "",
		"400", "0",
		"1", 1,
		"Adet", "36",
		"", "pd178210407.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/pladosHR1162.jpg",
		290, 123,
		"227", "PLADOS Eyve Quartz ÇiftGöz 116*50 HARMONY Beyaz01",
		"", "",
		"240", "0",
		"1", 1,
		"Adet", "36",
		"", "pd491867885.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>Özür dileriz, aradığınız ürün bulunamadı. Lütfen tekrar deneyin...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Aranacak kriterleri girmediniz. Aradığınız ürün ismini girin lütfen.</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();
			};
		};
