	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="125" height="13" 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/Paravent-120_150.jpg",
		150, 199,
		"5-01/1", "Paravent 120 cm height",
		"Foldable Room Divider-Wood + Paper ", "",
		"88", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Nr. of Wings + Colour;3 Wings natur untreated@", "pd-1483331185.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/paraventnat150.jpg",
		150, 218,
		"5-08/1", "Paravent 180 cm Classic",
		"Foldable Room Divider-Wood + Paper Classic 3 Wings", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Nr. of Wings + Colour;3 Wings natur untreated@", "pd460342272.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/tischnatur450.jpg",
		183, 125,
		"T-04/1", "Side Table nature or black",
		"All-round to use as table or stool-Varnished  40x40x30 cm", "",
		"75", "4.9",
		"1", 1,
		"stk", "30",
		"Size;40 x 40 x 30 cm@Colour;nature varnished@", "pd1027595035.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Shojirollo.jpg",
		180, 212,
		"SR-01/6", "Shoji Blind",
		"Length 240 cm", "",
		"19.5", "5.02",
		"1", 1,
		"stk", "27",
		"Width;80 cm@", "pd1035241123.htm",
		"", 1,
		"005-4", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Bambusrollo.jpg",
		180, 250,
		"BR-01/6", "Bamboo Blind 80 cm",
		"Length 240 cm", "",
		"39.5", "5.02",
		"1", 1,
		"stk", "27",
		"Width;80 cm@", "pd-1952230784.htm",
		"", 1,
		"005-4", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/double_cross_290.jpg",
		150, 188,
		"5-13/1", "Paravent 180 cm ",
		"Double Cross", "",
		"128", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Nr. of Wings + Colour;4 Wings honey colour varnished@", "pd1048826132.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/image002.jpg",
		200, 94,
		"8/0/1", "Futon Cotton-Coconut 8/0",
		"Soft resiliant Futon, compact characteristic", "",
		"167", "120",
		"1", 1,
		"stk", "44",
		"Size;100 x 200 cm@", "pd1061787294.htm",
		"", 1,
		"006-2-2", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Baumwolle 06.jpg",
		200, 90,
		"BW1/9", "Cotton Futon 6 cm",
		"The classic japanese sleeping mat", "",
		"114", "120",
		"1", 1,
		"stk", "43",
		"Size;90 x 200 cm@", "pd-44945686.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Baumwolle 08.jpg",
		200, 104,
		"BW2/9", "Cotton Futon 8 cm",
		"The classic japanese sleeping mat", "",
		"136", "120",
		"1", 1,
		"stk", "43",
		"Size;90 x 200 cm@", "pd-957406067.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Baumwolle 10.jpg",
		200, 105,
		"BW3/10", "Futon Cotton 10 cm",
		"The classic japanese sleeping mat", "",
		"158", "120",
		"1", 1,
		"stk", "43",
		"Size;90 x 200 cm@", "pd792080771.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/BW-Kokos 06.jpg",
		200, 129,
		"6/0/9", "Cotton-Coconut Futon 6/0",
		"Resiliant Futon with compact characteristic", "",
		"154", "120",
		"1", 1,
		"stk", "44",
		"Size;90 x 200 cm@", "pd-1713954967.htm",
		"", 1,
		"006-2-2", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Hanf 2.jpg",
		200, 167,
		"HF 2/9", "Futon Hemp 2 ",
		"A medium-solid, resiliant Futon", "",
		"244", "120",
		"1", 1,
		"stk", "48",
		"Size;90 x 200 cm@", "pd-1753573441.htm",
		"", 1,
		"006-2-6", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Hanf 3.jpg",
		200, 138,
		"HF 3/9", "Hemp 3 Futon",
		"A solid, resiliant Futon", "",
		"254", "120",
		"1", 1,
		"stk", "48",
		"Size;90 x 200 cm@", "pd-1376821243.htm",
		"", 1,
		"006-2-6", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/BW-Kokos 06.jpg",
		200, 129,
		"WK 6/2/9", "Futon Wool Coconut 6/2",
		"Medium compact - compact Futon", "",
		"229", "120",
		"1", 1,
		"stk", "45",
		"Size;90 x 200 cm@", "pd1062957545.htm",
		"", 1,
		"006-2-3", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Wolle-Kokos 8-2.jpg",
		200, 129,
		"WK8/2/9", "Wool Coconut Futon 8/2",
		"Comfortable, soft Futon", "",
		"274", "120",
		"1", 1,
		"stk", "45",
		"Size;90 x 200 cm@", "pd1449068912.htm",
		"", 1,
		"006-2-3", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Sandwich.jpg",
		200, 100,
		"SW1/9", "Sandwich-Futon",
		"A medium-solid Futon", "",
		"284", "120",
		"1", 1,
		"stk", "46",
		"Size;90 x 200 cm@", "pd-915263249.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Sandwich Extra.jpg",
		200, 150,
		"SW2/9", "Futon Sandwich Extra",
		"Medium-solid Futon", "",
		"324", "120",
		"1", 1,
		"stk", "46",
		"Size;90 x 200 cm@", "pd2031946650.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Super Sandwich.jpg",
		200, 131,
		"SW3/9", "Super Sandwich-Futon",
		"A solid Futon", "",
		"308", "120",
		"1", 1,
		"stk", "46",
		"Size;90 x 200 cm@", "pd1003901409.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Super Sandwich Extra.jpg",
		200, 127,
		"SW4/9", "Super Sandwich Extra-Futon",
		"A solid Futon", "",
		"374", "120",
		"1", 1,
		"stk", "46",
		"Size;90 x 200 cm@", "pd-527017740.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Komfort.jpg",
		200, 107,
		"K1/9", "Futon Comfort",
		"Soft and nestling Futon", "",
		"229", "120",
		"1", 1,
		"stk", "47",
		"Size;90 x 200 cm@", "pd-597270077.htm",
		"", 1,
		"006-2-5", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Komfort Extra.jpg",
		200, 118,
		"K212/9", "Comfort Extra Futon",
		"Soft and nestling Futon", "",
		"259", "120",
		"1", 1,
		"stk", "47",
		"Size;90 x 200 cm@", "pd2101040126.htm",
		"", 1,
		"006-2-5", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/19.jpg",
		200, 142,
		"LR-01/1", "Duckboard",
		"Rugged, rollable Duckboard", "",
		"36", "10.02",
		"1", 1,
		"Piece(s)", "54",
		"Length;196 cm@Width of Lath;059 cm@", "pd1035725436.htm",
		"", 1,
		"006-4", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/bambus-tisch01_183_neu.jpg",
		183, 132,
		"T-05/2", "Bamboo Table",
		"87 x 87 cm", "",
		"345", "20.05",
		"1", 1,
		"stk", "30",
		"Outside Size;87 x 87 cm@", "pd1075119614.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/3318.9337.jpg",
		186, 160,
		"3318.9337", "KIOTO 2+4",
		"Wall - or Ceiling Fixture", "",
		"349", "4.9",
		"1", 1,
		"stk", "19,21",
		"Type;Beech-Beech@Equipment;without equipment@Model;Kioto 2@Bulbs;without bulbs@", "pd-1464472535.htm",
		"", 1,
		"001-4-5,001-4-7", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/3324.9437s.jpg",
		186, 141,
		"3-xxx", "KIOTO 5+9",
		"Wall - or Ceiling Fixture", "",
		"459", "4.9",
		"1", 1,
		"Piece(s)", "19,21,19,21",
		"Kind of Wood;Beech- Beech@Equipment;without equipment@Model;Kioto 5@Bulbs;without bulbs@", "pd-936258992.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/3336.9537s.jpg",
		186, 141,
		"K13-16-xxx", "KIOTO 13+16",
		"Wall - or Ceiling Fixture", "",
		"570", "4.9",
		"1", 1,
		"stk", "19,21,19,21,19,21",
		"Type;Beech-black@Equipment;without equipment@Model;Kioto 16@Bulbs;without bulbs@", "pd-1969823790.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/3503.7508_2s.jpg",
		186, 261,
		"3503.7508", "STELLA 1",
		"Wall- or Ceiling fixture", "",
		"189", "4.9",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19",
		"Model;Stella 1@", "pd-1124513818.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/3320.1108s.jpg",
		186, 125,
		"3320.1108", "FOLIO 1",
		"Ceiling or Wall fixture", "",
		"179", "4.9",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21",
		"", "pd1027529220.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/6557.0908_s.jpg",
		154, 397,
		"6360.5868", "SEBA",
		"Floor Lamp", "",
		"628", "4.9",
		"1", 1,
		"stk", "20",
		"Type;Beech@", "pd-103989777.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/5335.3708s.jpg",
		186, 245,
		"5335.3708", "SHADE",
		"Wall fixture", "",
		"125", "4.9",
		"1", 1,
		"stk", "21",
		"Type;Beech@", "pd-1840837124.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/1235.3808.jpg",
		186, 318,
		"1335.3808", "SHADE",
		"Pendant Lamp", "",
		"145", "4.9",
		"1", 1,
		"stk", "22",
		"Type;Beech@", "pd1490874678.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/7234.3508s.jpg",
		186, 272,
		"7334.3508", "SHADE",
		"Table Lamp", "",
		"139", "4.9",
		"1", 1,
		"stk", "18",
		"Type;Beech@", "pd2122797218.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/7951.5408s.jpg",
		186, 219,
		"7352.6308", "GARDE",
		"Table Lamp", "",
		"169", "4.9",
		"1", 1,
		"stk", "18",
		"Kind of Wood;Beech@", "pd1448139896.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/5317.2808s.jpg",
		186, 208,
		"5317.2808", "IRIS",
		"Wall fixture", "",
		"98", "4.9",
		"1", 1,
		"stk", "21",
		"", "pd-1152875516.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/3317.2208s.jpg",
		186, 155,
		"3317.2208", "IRIS",
		"Ceiling fixture 1", "",
		"139", "4.9",
		"1", 1,
		"Piece(s)", "19",
		"Type;Iris 1, H 16 cm, Ø 34 cm@", "pd2105154640.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/1317.2608s.jpg",
		186, 257,
		"1317.2608", "IRIS",
		"Pendant Lamp", "",
		"119", "4.9",
		"1", 1,
		"stk", "22",
		"", "pd1076150877.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/tat_bank200.jpg",
		180, 125,
		"1-16/1", "Tatami Bench",
		"A multi purpose furniture from solid  Elmwood", "",
		"138.5", "20.05",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14",
		"Type;1 Wooden leaf and 1 Tatamicushion@", "pd-7821895.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/1361s.jpg",
		186, 193,
		"1363", "ARCUS",
		"Pendant Lamp", "",
		"628", "4.9",
		"1", 1,
		"stk", "22",
		"Type;Beech@", "pd1869657159.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/1331.1608s.jpg",
		186, 190,
		"1331.1608", "PILA",
		"Pendant Lamp", "",
		"169", "4.9",
		"1", 1,
		"stk", "22",
		"", "pd1076247870.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/3331.1708s.jpg",
		186, 132,
		"3331.1708", "PILA",
		"Ceiling fixture", "",
		"189", "4.9",
		"1", 1,
		"stk", "19",
		"Size;size 1@", "pd1081384348.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/5331.1508s.jpg",
		186, 162,
		"5331.1508", "PILA",
		"Wall fixture", "",
		"138", "4.9",
		"1", 1,
		"stk", "21",
		"", "pd196039638.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/double-cross150.jpg",
		150, 260,
		"JL-050", "Double Cross",
		"20 x 20 x 46 cm", "",
		"25", "1.6",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0",
		"", "pd-1122216588.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/27_250.jpg",
		250, 383,
		"46-110", "Noren &quot; Nodate&quot;",
		"Japanese Door Curtain", "",
		"99.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd-1708900556.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/28_250.jpg",
		250, 383,
		"46-100", "Noren &quot;Wa&quot;",
		"Japanese Door Curtain", "",
		"99.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd389114496.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/32_250.jpg",
		250, 383,
		"46-090", "Noren &quot;Zen&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd1789547694.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/04a_250.jpg",
		250, 339,
		"56-600", "Kimono &quot;Princess&quot;",
		"Original japanese housewear", "",
		"89.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colour;black@", "pd173243037.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/zor_ms_1_300.jpg",
		300, 199,
		"FB-01/1", "Zori",
		"Japanese house sandals-x style", "",
		"12.9", "0.01",
		"1", 1,
		"Pair", "58",
		"Type with;Cross Ribbon@Shoe size;36 - 37@", "pd2131067380.htm",
		"", 1,
		"007-4", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/lovers-vorn.jpg",
		250, 241,
		"Pmr-54", "CD &quot; Lovers&quot;",
		"Best of Jia Peng Fang", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd1152115875.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/healing-vorn.jpg",
		250, 241,
		"Pmr-55", "CD &quot; Healing&quot;",
		"Sampler from different artists", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd172787593.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/yoga-vorn.jpg",
		250, 241,
		"Pmr-61", "Cd &quot; Yoga&quot;",
		"Japanese CD Yoga", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd-1674920737.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Ahorn.jpg",
		250, 410,
		"46-086", "Noren &quot;Maple&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd1154619235.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Kirschbluete.jpg",
		250, 404,
		"46-089", "Noren &quot;Cherry&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd1259403337.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/Maru.jpg",
		250, 393,
		"46-086-2", "Noren &quot;Maru&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd368024479.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Koi.jpg",
		250, 413,
		"46-086-3", "Noren &quot;Koi&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd-362838299.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/Tsuru.jpg",
		250, 369,
		"46-086-4", "Noren &quot;Tsuru&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd-1349272677.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Bambus.jpg",
		250, 369,
		"46-086-5", "Noren &quot;Bamboo&quot;",
		"Japanese Door Curtain", "",
		"139.5", "0.5",
		"1", 1,
		"stk", "25",
		"", "pd994907969.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/Icheban250.jpg",
		250, 353,
		"56-070", "Yukata &quot;Icheban&quot;",
		"Original japanese Wear", "",
		"79.5", "0.49",
		"1", 1,
		"stk", "57",
		"", "pd938259978.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Kanji-250.jpg",
		250, 339,
		"56-126", "Yukata &quot;Kanji&quot;",
		"Original japanese Wear", "",
		"79.5", "0.49",
		"1", 1,
		"stk", "57",
		"", "pd1638232904.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/tiger-dragon.jpg",
		250, 280,
		"56-510", "Kimono &quot;Tiger Dragon&quot;",
		"Original japanese housewear", "",
		"119", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-378085588.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/Tsuru-green-250.jpg",
		250, 333,
		"56-652", "Kimono &quot;TSURU green&quot;",
		"Original japanese housewear", "",
		"99.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-1002043078.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/kaki-schwarz-250.jpg",
		250, 341,
		"56-110", "Kimono &quot;Kaki black&quot;",
		"Original japanese housewear", "",
		"89.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd1403916518.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/YIN-YANG-250.jpg",
		250, 333,
		"56-837", "Yukata &quot;Yin Yan&quot;",
		"Original japanese Wear", "",
		"69.5", "0.49",
		"1", 1,
		"stk", "57",
		"", "pd1474443652.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/orizuzu-250.jpg",
		250, 337,
		"56-030", "Yukata &quot;Orizuru&quot;",
		"Original japanese Wear", "",
		"79.5", "0.49",
		"1", 1,
		"stk", "57",
		"", "pd1828146002.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Akafuji250.jpg",
		250, 333,
		"56-205", "T- Shirt &quot;Akafuji&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd-1481231492.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Kanagawaoki250.jpg",
		250, 333,
		"56-205-1", "T- Shirt &quot;Kanagawaoki&quot;",
		"Original japanese Wear", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd1689234102.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/dragon56-222-250.jpg",
		250, 221,
		"56-221", "T- Shirt &quot;Dragon&quot;",
		"High Quality Cotton", "",
		"24.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd-2025444912.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/kimono250.jpg",
		250, 333,
		"56-224", "T- Shirt &quot;Kimono&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd1004838176.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/sutra-black250.jpg",
		250, 289,
		"56-225", "T- Shirt &quot;Sutra black&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd1936745598.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/sutra-weiss250.jpg",
		250, 333,
		"56-226", "T- Shirt &quot;Sutra white&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd-2010691506.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Kanji-Mai250.jpg",
		250, 333,
		"56-230", "T- Shirt &quot;Kanji Mai&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd1610262484.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Zen250.jpg",
		250, 333,
		"56-246", "T- Shirt &quot;Zen&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"stk", "59",
		"", "pd1631887906.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Muster107.jpg",
		250, 175,
		"Fut-Spez 100x200", "Futon Cover",
		"100 % Cotton", "",
		"89.5", "0",
		"1", 1,
		"stk", "50",
		"Size;100 x200 cm$10,00@", "pd-1142082650.htm",
		"", 1,
		"006-21", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Tori-1_200.jpg",
		200, 150,
		"JL-51-black", "TORI",
		"Table Lamp", "",
		"89.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"Colour;black varnished@", "pd1173869095.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/tsuru-black-250.jpg",
		250, 275,
		"56-650", "Kimono &quot;TSURU&quot; black",
		"Original japanese housewear", "",
		"99.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd903211416.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Tsuru-royal-blau250.jpg",
		250, 343,
		"56-651", "Kimono &quot;TSURU royal blue&quot;",
		"Original japanese housewear", "",
		"99.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd167004550.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/niko-150.jpg",
		150, 195,
		"42-392", "Paravent &quot;Niko&quot;",
		"3 wings black", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black varnished@", "pd1226657864.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/para-sasa-150.jpg",
		150, 217,
		"42-396", "Paravent &quot; SASA&quot;",
		"3 wings walnut dark varnished", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd1620202708.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/para-andon-150.jpg",
		150, 184,
		"42-415", "Paravent &quot; ANDON&quot;",
		"4 wings nature or black", "",
		"159", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black varnished@", "pd-843573470.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/para-kumo-black-150.jpg",
		150, 193,
		"42-425", "Paravent &quot; KUMO&quot;",
		"4 wings nature or black", "",
		"128", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black Varnish@", "pd425987406.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Baumwolle 10.jpg",
		200, 105,
		"AG-BW3-1", "Cotton Futon 10 90x200 cm",
		"The classic japanese sleeping mat", "",
		"148", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0",
		"", "pd1196785090.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/andon-end-table-black-big.jpg",
		150, 160,
		"42-670-en", "Andon Table Lamp",
		"40 x 40 x 49", "",
		"99.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd1635104875.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/nikko-natur-big.jpg",
		150, 192,
		"42-523-en", "Tablelamp&quot; Nikko 2&quot;",
		"22 x 22 x 40 cm", "",
		"44.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-476710682.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/dofu-black-big.jpg",
		150, 165,
		"42-530-en", "Dofu Ceiling Fixture",
		"20,5 x 20,5 x 30,5 cm", "",
		"44.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd346841476.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/akida-black-big.jpg",
		150, 181,
		"42-535-en", "Akida Lamp",
		"20 x 20 x 50 cm", "",
		"39.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1569868974.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/kumo-decke-schwarz-big.jpg",
		150, 139,
		"42-547-en", "Kumo Ceiling Fixture",
		"35 x 35 x 29,5 cm", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd1313001936.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/bambus-tisch-big.jpg",
		150, 256,
		"42-570-en", "Bamboo Table Lamp",
		"Japanese Style Lamp- Wood and Paper", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1201845122.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/shoji-lampe-schwarz-big.jpg",
		150, 202,
		"42-610", "Shoji Lamp",
		"32 x 32 x 76cm", "",
		"99.5", "1.6",
		"1", 1,
		"stk", "16",
		"Colour;black varnished@", "pd639057628.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/shizuka-lampe-schwarz-big.jpg",
		150, 231,
		"42-620-en", "Shizuka 2",
		"16 x 15 x 35cm", "",
		"34.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1154943832.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/ginza-lampe-schwarz-big.jpg",
		150, 188,
		"42-622-en", "Ginza Table Lamp",
		"20 x 20 x 40 cm", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1989935308.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/shizuka-wooden-lampe-schwarz-big.jpg",
		150, 304,
		"42-640-en", "Shizuka 3",
		"24x 21 x 73", "",
		"79.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd840910978.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/JAZZ-C2-300.jpg",
		300, 234,
		"230111-080200-1", "UZUME 2-Seater Sofa",
		"3 positions each side", "",
		"555", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41",
		"Cover;cover flower black@", "pd198255333.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Beat Drawer3.jpg",
		300, 219,
		"1111xx-080200-1", "BEAT",
		"Daybed with foldable armrests incl. Futon", "",
		"375", "120",
		"1", 1,
		"Piece(s)", "0",
		"", "pd-1570311938.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/7311.7208-small.jpg",
		186, 275,
		"7311.7208", "BOBBY",
		"Table Lamp", "",
		"99", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"", "pd-1365423847.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Bolino_6385-small.jpg",
		186, 279,
		"6385.3308", "BOLINO",
		"Floor Lamp", "",
		"489", "4.9",
		"1", 1,
		"stk", "20",
		"Type;Beech@", "pd-583764723.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/IBIS_LED_7194_quad.515_01.jpg",
		186, 186,
		"7094", "IBIS LED",
		"Table Lamp", "",
		"395", "4.9",
		"1", 1,
		"stk", "18",
		"Kind of Wood;Cherry oiled+waxed@", "pd1683994167.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/LOOP_7953-small.jpg",
		186, 271,
		"7353.5208", "LOOP",
		"Table Lamp", "",
		"155", "4.9",
		"1", 1,
		"stk", "18",
		"Type;Beech@", "pd-1482675813.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Seba_7359-small.jpg",
		186, 262,
		"7359.5908", "SEBA",
		"Table Lamp", "",
		"195", "4.9",
		"1", 1,
		"stk", "18",
		"Type;Beech@", "pd43641994.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/2551.4723-small.jpg",
		186, 252,
		"2551.4707", "ARTA",
		"Suspension Lamp", "",
		"438", "4.9",
		"1", 1,
		"stk", "22",
		"Shade;Lunolit@", "pd845386957.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Luna_1290-small.jpg",
		186, 256,
		"1690.", "LUNA 1",
		"Pendant Lamp", "",
		"575", "4.9",
		"1", 1,
		"stk", "22",
		"Type;Maple@Model;Luna 1@", "pd1726680521.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/2332.1907-norm.jpg",
		186, 193,
		"2331.1807", "PILA 1",
		"Suspension Lamp", "",
		"375", "4.9",
		"1", 1,
		"stk", "22",
		"Model;Pila 1@", "pd-99179555.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/3173._s.jpg",
		186, 112,
		"3378", "TAURUS 2",
		"Ceiling fixture", "",
		"465", "4.9",
		"1", 1,
		"stk", "19",
		"Type;Beech@", "pd-1586051408.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/9105-small.jpg",
		186, 255,
		"9104", "TONDOLO",
		"Ceiling fixture 1", "",
		"42", "4.9",
		"1", 1,
		"stk", "19",
		"Model;Tondolo 1@", "pd-1397877657.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/6510.8308-small.jpg",
		186, 239,
		"6510.8308", "ARCADE",
		"Reading Lamp", "",
		"455", "4.9",
		"1", 1,
		"stk", "20",
		"", "pd-1946941561.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Bow_6084-norm.jpg",
		200, 274,
		"6384.8809", "BOW",
		"Floor Lamp", "",
		"519", "4.9",
		"1", 1,
		"stk", "20",
		"Type;Beech@Shade;Silk orange@", "pd713922799.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/LOOP_6254.5508-norm.jpg",
		186, 533,
		"6353.5508", "LOOP",
		"Floor Lamp", "",
		"239", "4.9",
		"1", 1,
		"stk", "20",
		"Type;Beech@", "pd-1383291134.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/6304.8208-small.jpg",
		186, 234,
		"6304.8208", "POLLO",
		"Reading Lamp", "",
		"449", "4.9",
		"1", 1,
		"stk", "20",
		"Type;Beech@Bulbs;B 15d, for hand dimmer@", "pd-131588917.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/waiting-small.jpg",
		185, 267,
		"8812.8108", "WAI TING",
		"Decorative floor lamp", "",
		"439", "4.9",
		"1", 1,
		"stk", "20",
		"Type;Maron-Oil@Wire;Dark grey@", "pd1593324317.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/5309.-small.jpg",
		186, 252,
		"5307", "DECO",
		"Wall fixture", "",
		"129", "4.9",
		"1", 1,
		"stk", "21",
		"", "pd-1561100057.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/LOOP_5253_Seite-small.jpg",
		186, 248,
		"53.53.5308", "LOOP",
		"Wall fixture", "",
		"95", "4.9",
		"1", 1,
		"stk", "21",
		"Type;Beech@", "pd-224394656.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/5316.6008-small.jpg",
		186, 249,
		"5316.6008", "LUNE",
		"Wall fixture", "",
		"149", "4.9",
		"1", 1,
		"stk", "21",
		"", "pd-674655015.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/5173.s.jpg",
		186, 253,
		"5377", "TAURUS",
		"Wall fixture", "",
		"378", "4.9",
		"1", 1,
		"stk", "21",
		"Type;Beech@", "pd-1633704417.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/TUBE_5961-small.jpg",
		186, 258,
		"5161", "TUBE",
		"Wall fixture", "",
		"189", "4.9",
		"1", 1,
		"stk", "21",
		"Size;size 1@Kind of Wood;Walnut oiled@", "pd233728502.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Bolino_7385.3208-small.jpg",
		186, 274,
		"7385.3208", "BOLINO",
		"Table Lamp", "",
		"309", "4.9",
		"1", 1,
		"stk", "18",
		"Type;Beech@", "pd1326473855.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/3272.-small.jpg",
		186, 215,
		"3272", "DRUM",
		"Ceiling fixture", "",
		"115", "4.9",
		"1", 1,
		"stk", "19",
		"", "pd-1767272221.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/3320.1108s.jpg",
		186, 125,
		"3330.1307", "FOLIO 2",
		"Ceiling or Wall fixture", "",
		"383", "4.9",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21",
		"", "pd2114570927.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Wandfuton-small.jpg",
		200, 126,
		"HB-xx-en-1", "Wall Futon",
		"many Sizes, all colours", "",
		"89.5", "20.084",
		"1", 1,
		"Piece(s)", "51",
		"Size;60 x 140 cm@", "pd686177442.htm",
		"", 1,
		"006-2-6-1", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/solitaer300.jpg",
		300, 155,
		"B-13-6", "SOLITAIRE",
		"Sensual-Charismatic-Harmonic", "",
		"1070", "120",
		"1", 1,
		"Piece(s)", "40",
		"Size;140 x 200 cm@Backrest;without Backrest@Tables;without Tables@", "pd1222831826.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/ikadak_300.jpg",
		300, 135,
		"B-01-08", "IKA-DA",
		"Traditional japenese sleeping with or without Tatami", "",
		"845", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd1207568305.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Essay_350.jpg",
		300, 182,
		"B-12-08", "ESSAY",
		"Birch oiled + waxed / *walnut dark stained + varnished / ** black varnished", "",
		"1370", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd1716790231.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/dito_300.jpg",
		300, 135,
		"B-11-08", "DITO",
		"Massive Wood bed-Birch oiled + waxed / *walnut dark stained + varnished / ** black varnished", "",
		"1155", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd-1836642434.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/myako_300.jpg",
		300, 121,
		"B-03-08", "MYAKO",
		"Timeless Rest with Tatamis", "",
		"470", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd2058374460.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/olinda.jpg",
		300, 188,
		"B-06-08", "OLINDA",
		"Beauty with edges and corners", "",
		"1350", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd603985458.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/satori_nb_300.jpg",
		300, 157,
		"B-04-08", "SATORI",
		"Straight-Lined and strong in Expression", "",
		"1200", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd-1740260763.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/ShindaiB.jpg",
		300, 126,
		"B-02-08", "SHINDAI",
		"Timeless Elegance from solid birch", "",
		"1155", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd-1084567245.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/AssariN.jpg",
		300, 175,
		"B-08/3", "ASSARI",
		"The Bridge to Dreams", "",
		"2405", "120",
		"1", 1,
		"Piece(s)", "40",
		"Size;120 x 200 cm@Equipment;without equipment@", "pd-514225119.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/gotik.jpg",
		300, 129,
		"B-09/1", "GOTIK-japanese bed",
		"The sensual architecture of sleep", "",
		"3285", "120",
		"1", 1,
		"Piece(s)", "40",
		"Lying size;160 x 200 cm@", "pd-340442114.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/KhayaLEHN.jpg",
		300, 148,
		"B-05-08", "TULSA",
		"The Place of Rest", "",
		"1060", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd-46114781.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/maran2.jpg",
		300, 149,
		"B-07-08", "MARAN",
		"Passion with cool accent", "",
		"1175", "120",
		"1", 1,
		"Piece(s)", "40",
		"", "pd1891429689.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/boogie_350.jpg",
		300, 175,
		"SF-01-08-1", "BOOGIE",
		"Sofa or Bed? Sofa and Bed!", "",
		"970", "120",
		"1", 1,
		"Piece(s)", "53",
		"Type with;Plastic wheels@Kind of Wood;Birch oiled and waxed@Lying size;120 x 200 cm@", "pd-1561288645.htm",
		"", 1,
		"006-3", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Bed-300.jpg",
		300, 364,
		"201111-140200-0", "Tori Bed",
		"with backrest", "",
		"435", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40",
		"Table;without Tables@Size;140 x 200 cm@", "pd-2137854779.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Woodsofa300.jpg",
		300, 199,
		"201111-130200", "TORI- Bi Fold Sofa",
		"bed frame without Futon", "",
		"485", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53",
		"Futon-Cover;without Futon@", "pd-1812838996.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Jazz-sofa3-C-400.jpg",
		300, 224,
		"230111-080250", "UZUME 3-Seater sofa",
		"3 positions each side", "",
		"535", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53",
		"Colour;wenge@Cover;without Cover@Cushion;without cushion@", "pd-296554492.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Blues-bed-up2-300.jpg",
		300, 201,
		"11411-140200", "Susanoh bed frame",
		"with integrated headboard elevation", "",
		"395", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40",
		"Size;140 x 200 cm@Equipment;without equipment@", "pd65437899.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Blues3-300.jpg",
		300, 249,
		"114111-020050", "Susanoh Bi-fold sofa",
		"bed frame with 3 positions each side", "",
		"505", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53",
		"Cover;without Cover@", "pd-946386590.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/FIGO70N0-300.jpg",
		300, 213,
		"120100-07200", "Figo- Lounge Chair small",
		"4 positions", "",
		"185", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53",
		"Colour;nature untreated@Cover;without Cover@Cushion;without cushion@", "pd1838519287.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/FIGO120W1-300.jpg",
		300, 230,
		"120100-120200", "Figo- Lounge Chair wide",
		"4 positions", "",
		"265", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53",
		"Colour;nature untreated@Cover;without Cover@Cushion;without cushion@", "pd2094999261.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/WOOD-TABLE-600.jpg",
		300, 238,
		"69543", "Tori Sidetable",
		"wenge, glass calendered", "",
		"195", "20.084",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30",
		"Size;25 x 40 x 55 cm@", "pd-494337880.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/WOODSTOCK-KAYDO-BEDROOM4.jpg",
		300, 369,
		"69540M", "Tori Cabinet",
		"with calendered glass doors", "",
		"655", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24",
		"", "pd-1321177051.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Wooddresser300.jpg",
		300, 390,
		"69541", "Tori Dresser",
		"Pine, Aluminium", "",
		"665", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24",
		"", "pd-1876172968.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Cosmic_C_11-300.jpg",
		300, 300,
		"118111-140200", "Cosmic Bed",
		"Pine wenge varnished", "",
		"455", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40",
		"Size;140 x 200 cm@Equipment;1 pair of tables, green$65@", "pd-503824049.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Jazz-bed-300.jpg",
		300, 222,
		"230111-140200", "Uzume Bed",
		"with integrated headboard", "",
		"495", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40",
		"Table;without Tables@Size;140 x 200 cm@", "pd-463605671.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/JAZZ-C2-300.jpg",
		300, 234,
		"230111-080200", "UZUME 2-Seater Sofa",
		"3 positions each side", "",
		"455", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53",
		"Colour;cherry@Cover;without Cover@Cushion;without cushion@", "pd318623853.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/Jazz-chest-300.jpg",
		300, 393,
		"230111-060005", "Uzume Sideboard",
		"5 drawer chest", "",
		"295", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24",
		"", "pd-1683247928.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Jazz-Dresser-300.jpg",
		300, 196,
		"230111-150006", "Uzume Dresser",
		"with 6 drawers", "",
		"395", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24",
		"", "pd-1058730625.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/Jazz_mirror_consol-300.jpg",
		300, 449,
		"230111-060100", "Uzume Mirror",
		"wenge", "",
		"85", "20.084",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24",
		"", "pd1966067618.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/Close-up-Jazz-table2-300.jpg",
		300, 298,
		"230113-045100", "Uzume Tables",
		"wenge", "",
		"195", "20.084",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30",
		"Size;40 x 39 x 52 cm@Colour;cherry@", "pd1474325025.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/14a_183.jpg",
		183, 111,
		"42-330", "Tatami Table  big",
		"Wooden frame, Board Wal Nut  veneer", "",
		"239", "20.05",
		"1", 1,
		"stk", "30",
		"", "pd1942165747.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/tat_rund_250.jpg",
		183, 119,
		"42-335", "Tatami Table  round",
		"Materials: Wooden frame, Board Wal Nut  veneer", "",
		"209", "20.05",
		"1", 1,
		"stk", "30",
		"", "pd504239193.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/03_183.jpg",
		183, 173,
		"42-340", "Tatami Table  small",
		"Materials: Wooden frame, Board Wal Nut  veneer.", "",
		"189", "20.05",
		"1", 1,
		"stk", "30",
		"", "pd1970296367.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/36_r1_250.jpg",
		250, 383,
		"56-806", "Yukata &quot;Sasa&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"stk", "57",
		"Type;not stuffed@", "pd-658616151.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/Zabuton_250_bw.jpg",
		250, 210,
		"46-351", "Chair / Floor cushion &quot;Zabuton&quot;",
		"Cotton darkblue/ white pattern", "",
		"64.5", "1.9",
		"1", 1,
		"stk", "29",
		"", "pd1096364425.htm",
		"", 1,
		"005-6", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/32_r1_150.jpg",
		150, 230,
		"R-54", "Shoji Paper",
		"Fine japanese paper to string Shoji Screens", "",
		"89.5", "4.93",
		"1", 1,
		"Rolle", "12",
		"", "pd1013819997.htm",
		"", 1,
		"1-1-9", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/12_250.jpg",
		250, 163,
		"10-370", "Teaset &quot;Imari&quot;",
		"Original japanese tea ceremonie", "",
		"85.5", "5.011",
		"1", 1,
		"Piece(s)", "62",
		"", "pd-1842240214.htm",
		"", 1,
		"008-2", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/18_250.jpg",
		250, 165,
		"21-105", "Teaset &quot;Dobinmushi&quot;",
		"Original japanese tea ceremonie", "",
		"29.5", "5.011",
		"1", 1,
		"Piece(s)", "62",
		"", "pd-1753560106.htm",
		"", 1,
		"008-2", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/11_250.jpg",
		250, 139,
		"10-372", "Teaset &quot;Green&quot;",
		"Original japanese tea ceremonie", "",
		"74.5", "5.011",
		"1", 1,
		"Piece(s)", "62",
		"", "pd1693218664.htm",
		"", 1,
		"008-2", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/24_250.jpg",
		250, 163,
		"88-110", " &quot;Tokujo Sencha Orange&quot;",
		"Original japanese tea", "",
		"18.5", "0.005",
		"1", 1,
		"Pack à 100 g", "61",
		"", "pd456263.htm",
		"", 1,
		"008-1", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/26_250.jpg",
		250, 163,
		"88-175", "&quot;Sencha Kaori&quot;",
		"Original japanese tea", "",
		"11.5", "0.005",
		"1", 1,
		"Pack à 100 g", "61",
		"Trend of Taste;Sencha Kaori@", "pd1096403657.htm",
		"", 1,
		"008-1", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/24_250.jpg",
		250, 163,
		"88-100", " &quot;Jo Sencha Green&quot;",
		"Original japanese tea", "",
		"11.5", "0.005",
		"1", 1,
		"Pack à 100 g", "61",
		"", "pd-1155268147.htm",
		"", 1,
		"008-1", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/24_250.jpg",
		250, 163,
		"88-105", " &quot;Fukamushi Sencha Blue&quot;",
		"Original japanese tea", "",
		"12.9", "0.005",
		"1", 1,
		"Pack à 100 g", "61",
		"", "pd1417892035.htm",
		"", 1,
		"008-1", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/01_250.jpg",
		250, 163,
		"22-171", "Chop Sticks",
		"Original japanese bamboo sticks", "",
		"5.9", "0.01",
		"1", 1,
		"Pair", "62",
		"", "pd-1883795481.htm",
		"", 1,
		"008-2", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/34a_250.jpg",
		250, 238,
		"20-142", "Sushiset",
		"Original japanese-for 2 persons", "",
		"49.5", "5.011",
		"1", 1,
		"Piece(s)", "62",
		"", "pd1453443093.htm",
		"", 1,
		"008-2", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/23_250.jpg",
		250, 193,
		"42-351/1", "Floorchair &quot;Zaisu&quot;",
		"with Floor Cushion &quot; Zabuton&quot;", "",
		"130", "2.01",
		"1", 1,
		"Piece(s)", "29",
		"Colour;black varnished@Cover;with Cushion@", "pd-993582619.htm",
		"", 1,
		"005-6", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/Asian-Drums-vorn_250.jpg",
		250, 212,
		"Pmr-13", "CD &quot;Asian Drums&quot;-Original from Japan",
		"The pulsing rythm of Japanese Thaiko drums", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd1363544219.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/east-wind-vorn_250.jpg",
		250, 241,
		"Pmr-12", "CD &quot;East Wind&quot;-Original from Japan",
		"Uttara Kuru-Breathtaking sound of Shakuhachi", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd861327447.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/River-Jia-Peng-Fang-vorn_25.jpg",
		250, 241,
		"Pmr-05", "CD &quot;River&quot;- Original from Japan",
		"Jia Peng Fang-The rich and elegant sound of the Erhu and Niko.", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd1692150849.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/sushi3_250.jpg",
		250, 188,
		"21-200", "Sushiset 2",
		"Original japanese-including recipe book", "",
		"69.5", "5.011",
		"1", 1,
		"Piece(s)", "62",
		"", "pd1099303576.htm",
		"", 1,
		"008-2", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/Untersetzer_250.jpg",
		250, 184,
		"28-310", "Tatamiset",
		"Small Tatami mats", "",
		"8.5", "0.05",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14",
		"Size;15 x 15 cm@", "pd1446176498.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/glockeneu_250.jpg",
		250, 333,
		"64-160", "Greyhound &quot; Small Pagode&quot; with Bell",
		"Original japanese greyhound", "",
		"29.5", "0.65",
		"1", 1,
		"stk", "26",
		"", "pd-171835699.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/Tablett1_250.jpg",
		250, 181,
		"23-130", "Varnished tray",
		"Upside black varnished,downside red varnished", "",
		"22.5", "0.4",
		"1", 1,
		"stk", "26",
		"", "pd1772459459.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/Asanoha_250.jpg",
		250, 198,
		"56-812", "Yukata &quot;Asanoha&quot;",
		"Original japanese housewear", "",
		"89.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Colour;blue@Type;not stuffed@", "pd1100695886.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/drachenvorn_250.jpg",
		250, 298,
		"56-191", "Kimono &quot;Dragon&quot;",
		"Original japanese housewear", "",
		"129.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd82757676.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/lullaby_vorn250.jpg",
		250, 252,
		"Pmr-15", "CD &quot;Lullaby&quot;-Original from Japan",
		"Mizuyo Komiya", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd-1409017286.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/asian_drums2_250.jpg",
		250, 257,
		"Pmr-27", "CD &quot;Asian Drums 2&quot;-Original from Japan",
		"Kiyoshi Yoshida-Japanese Wadaiko drums", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd-1098501384.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/samurai-collection_250.jpg",
		250, 243,
		"Pmr-49", "CD &quot;Samurai Collection&quot;-Original from Japan",
		"Thundering Thaiko drums, Shakuhachi flutes, rythmic Buddah songs, meditative Koto tunes....", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd586625510.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/3354.9637decke_200.jpg",
		200, 267,
		"3354.9637", "KIOTO 10",
		"Ceiling or Wall fixture", "",
		"549", "4.9",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19",
		"Equipment;without equipment@Bulbs;without bulbs@", "pd1947469370.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/3314.9837Decke_200.jpg",
		200, 160,
		"Kioto 6-xxx", "KIOTO 6",
		"Ceiling or Wall fixture", "",
		"425", "4.9",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19",
		"Equipment;without equipment@Bulbs;without bulbs@", "pd-1336660061.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/niko-150.jpg",
		150, 195,
		"42-392", "Paravent Niko",
		"Foldable Room Divider-Wood + Paper,3 Wings black", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black varnished@", "pd-2092148830.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/Aschrank-breit-42-150_250.jpg",
		250, 309,
		"42-150", "Chemist`s Cupboard wide",
		"Elm dark stained + clear varnished", "",
		"315", "120.4",
		"1", 1,
		"stk", "24",
		"", "pd-780282180.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/Apothekerschrank-schmal-250.jpg",
		250, 354,
		"42-160", "Chemist`s Cupboard high",
		"Elm dark stained + clear varnished", "",
		"325", "120.4",
		"1", 1,
		"stk", "24",
		"", "pd-43906230.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/Paravent-White-Bamboo_150.jpg",
		150, 218,
		"5-17/1", "Paravent &quot; White Bamboo&quot; ",
		"Foldable Room Divider-Wood + Paper Height 180 cm", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Type;black wooden Frame@", "pd-7642824.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/Damen-Geta-52-100_3.jpg",
		300, 225,
		"52-100", "GETA",
		"Original japanese Lady´s Shoes", "",
		"48", "0.06",
		"1", 1,
		"Pair", "58",
		"", "pd-620060224.htm",
		"", 1,
		"007-4", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/Zoris-damen_300_2.jpg",
		300, 225,
		"59-100", "Zoris for Ladies",
		"Original japanese Zoris for Ladies", "",
		"29.5", "0.01",
		"1", 1,
		"Pair", "58",
		"", "pd274423278.htm",
		"", 1,
		"007-4", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/Wandleuchte-Nikko-42_150.jpg",
		150, 215,
		"42-521", "Wall Fixture &quot;Nikko&quot;",
		"Japanese Style Lamp- Wood and Paper", "",
		"59.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1131713076.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/Windspiel-Drachen-gruen_425.jpg",
		250, 333,
		"64-165", "Greyhound &quot; Dragon-green&quot;",
		"Original japanese greyhound-in and outdoor use", "",
		"25.5", "0.65",
		"1", 1,
		"stk", "26",
		"", "pd-1661749030.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/Windspiel-Drachen-schwarz_2.jpg",
		250, 333,
		"64-164", "Greyhound &quot; Dragon-black&quot;",
		"Original japanese greyhound-in and outdoor use", "",
		"22.5", "0.65",
		"1", 1,
		"stk", "26",
		"", "pd1120236184.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Winspiel-Fisch_250.jpg",
		250, 333,
		"64-167", "Greyhound &quot;Fish&quot;",
		"Original japanese greyhound", "",
		"9.5", "0.65",
		"1", 1,
		"stk", "26",
		"", "pd1249049222.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/Windspiel-Matsuri_250.jpg",
		250, 333,
		"64-166", "Greyhound &quot;Matsuri&quot;",
		"Original japanese greyhound", "",
		"9.5", "0.65",
		"1", 1,
		"stk", "26",
		"", "pd1220787236.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/Hana_56_250.jpg",
		250, 333,
		"56-616", "Kimono &quot;Hana&quot;",
		"Original japanese housewear", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colour;black@", "pd-1316286734.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/Kaki-56_250.jpg",
		250, 333,
		"56-123", "Kimono &quot;Kaki&quot;",
		"Original japanese housewear", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"basic colour;ivory@", "pd2092570224.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/Kikusuru_250.jpg",
		250, 333,
		"56-606", "Kimono &quot;Kikusuru&quot;",
		"Original japanese housewear", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd1779502460.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/Seikaiha_250.jpg",
		250, 333,
		"56-829", "Kimono &quot;Seikaiha&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Type;stuffed@", "pd1944789002.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/Gutschein-Motiv--Liebe.jpg",
		100, 145,
		"GS-01-4", "Gift Tokens",
		"", "",
		"25", "0",
		"1", 1,
		"stk", "65",
		"Value;25,00 €@", "pd-1670346171.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/ikadak_300.jpg",
		300, 135,
		"B-SF", "IKA-DA",
		"Traditional japenese sleeping with or without Tatami:Instant delivery", "",
		"720", "120",
		"1", 1,
		"stk", "39",
		"", "pd1114461405.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/glueckskatze_250.jpg",
		250, 333,
		"GK-01", "Japanese Cat",
		"Manekineko", "",
		"22.5", "0.65",
		"1", 1,
		"stk", "26",
		"", "pd-1932785312.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/yokohama-small.jpg",
		150, 228,
		"J.440.", "Yokohama Floor lamp",
		"Rattan style", "",
		"129.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd948571835.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/Nikko-1_150.jpg",
		150, 200,
		"J.00B", "Nikko-Table Lamp 1",
		"Japanese Style Lamp- Wood and Paper", "",
		"39.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd318273655.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/32_r1_150.jpg",
		100, 153,
		"Service-01", "Deliberation at your home..",
		"We come to your home", "",
		"150", "0",
		"1", 1,
		"stk", "65",
		"", "pd58581807.htm",
		"", 1,
		"009", "0",
		 1)
	
		Entry[197] = new Element(
		197, "assets/thumb/Hokaido-schwarz_300.jpg",
		300, 188,
		"Jl-44/1", "Hokaido Suspension Lamp",
		"", "",
		"59.5", "1.6",
		"1", 1,
		"stk", "16",
		"Colour;nature varnished@", "pd1124180985.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/Jing_1373_186.jpg",
		186, 147,
		"1373.7334", "JING",
		"Pendant Lamp", "",
		"225", "4.9",
		"1", 1,
		"stk", "22",
		"", "pd1124787786.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/Mikado_1975_186.jpg",
		186, 133,
		"1375.7354", "MIKADO",
		"Pendant Lamp", "",
		"225", "4.9",
		"1", 1,
		"stk", "22",
		"Base;Beech@", "pd-504881784.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/Jang_1274_186.jpg",
		186, 143,
		"1374.7348", "JANG",
		"Pendant Lamp", "",
		"449", "4.9",
		"1", 1,
		"stk", "22",
		"Type;Beech@", "pd1921786103.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/foja-opener.jpg",
		195, 193,
		"OMX-Foja", "Foja",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"stk", "13",
		"", "pd-1769201718.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/akoja-opener.jpg",
		195, 193,
		"OMX-Akoja", "Akoja",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"stk", "13",
		"", "pd109179656.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/oasis-opener.jpg",
		195, 193,
		"OMX-Oasis", "Oasis",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"stk", "13",
		"", "pd430387318.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/Los Almendros mostanza 3038130.jpg",
		225, 300,
		"3038130", "Los Almendros Mostanza",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-1685887839.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/Kioto coral 3037616.jpg",
		225, 300,
		"3037616", "Kioto Coral",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-469352521.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/Los Samurai tabaco 3038133.jpg",
		225, 300,
		"3038133", "Los Samurai Tabaco",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd861677757.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/Los Samurai-terracotta 3038134.jpg",
		225, 300,
		"3038134", "Los Samurai Terracotta",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-18509517.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/Nanban multi 3037614.jpg",
		225, 300,
		"3037614", "Nanban Multi",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-1911667047.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/Matsuyama natur.jpg",
		225, 300,
		"0815", "Matsuyama Natur",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd388813423.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/Matsuyama azul 3037611.jpg",
		225, 300,
		"3037611", "Matsuyama Azul",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-1729045963.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/Los Almendros verde 3038129.jpg",
		225, 300,
		"3038129", "Los Almendros Verde",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd519602027.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/Honshu-tabaco 3037622.jpg",
		225, 300,
		"3037622", "Honshu Tabaco",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd568639377.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/Los Almendros rosa 3038127.jpg",
		225, 300,
		"3038127", "Los Almendros Rosa",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-1962617817.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/Los Almendros azul 3038126.jpg",
		225, 300,
		"3038126", "Los Almendros Azul",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-2123328851.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/Matsuyama verde 3037609.jpg",
		225, 300,
		"3037609", "Matsuyama Verde",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-97923933.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/Nagoya arena 3037620.jpg",
		225, 300,
		"3037620", "Nagoya Arena",
		"Fine textile with asian paints", "",
		"95", "0.001",
		"1", 1,
		"Meter-full meters only", "31",
		"", "pd-23285879.htm",
		"", 1,
		"005-1-1", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/Yuudai_250.jpg",
		250, 167,
		"S-885 FG", "Yuudai",
		"Original japanese paper lamp", "",
		"179", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd-281166461.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/Bukuro_250.jpg",
		250, 375,
		"NOW18MINO", "Bukuro",
		"Original japanese paper lamp", "",
		"189", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd-1990087071.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/Moe_250.jpg",
		250, 379,
		"NOW17", "Moe",
		"Original japanese paper lamp", "",
		"498", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd1677510075.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/Aiko_250.jpg",
		250, 375,
		"NOW16", "Aiko",
		"Original japanese paper lamp", "",
		"195", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd-2108650491.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/Yoko_250.jpg",
		250, 166,
		"NOW1", "YOKO",
		"Original japanese paper lamp", "",
		"129", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd-2116449431.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/Miu_250.jpg",
		250, 375,
		"Leaf-31FG", "Miu",
		"Original japanese paper lamp", "",
		"78", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd700227447.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/Akio_250.jpg",
		250, 166,
		"NOW14", "Akio",
		"Original japanese paper lamp", "",
		"239", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd-680336449.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/Keiko_250.jpg",
		250, 166,
		"S-754FG Mino", "Keiko",
		"Original japanese paper lamp", "",
		"79", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd1543466227.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/Yumi_250.jpg",
		250, 375,
		"S-74FG", "Yumi",
		"Original japanese paper lamp", "",
		"139", "1.6",
		"1", 1,
		"stk", "17",
		"", "pd4230781.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/Erster Schritt1.jpg",
		192, 300,
		"JP-01", "First Step",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-2117737785.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/Budo2opt.jpg",
		192, 270,
		"JP-02", "Budo-the way of the warrior",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-945896883.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/Der Mut zum Wandel3.jpg",
		192, 284,
		"JP-03", "Courage of Change",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd1122895171.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/Freude.jpg",
		192, 272,
		"JP-04", "The Gladness",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-1075177175.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/Die Liebe5.jpg",
		192, 284,
		"JP-05", "The Love",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd2100635519.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/Die vier Jahreszeiten6.jpg",
		192, 295,
		"JP-06", "The four Seasons",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-1791789627.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/Ikebana.jpg",
		192, 270,
		"JP-07", "Ikebana",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-188168837.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/Shodo.jpg",
		192, 270,
		"JP-11", "Shodo-the way of Calligraphie",
		"Japanese Calligraphie", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd695608499.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/Schweigen ist Gold10.jpg",
		192, 312,
		"JP-10", "Silence is Gold",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-1403162563.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/Kodo9.jpg",
		192, 270,
		"JP-09", "Kodo- the way of Fragrance",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd-1148839113.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/Judo.jpg",
		192, 270,
		"JP-08", "Judo- the smooth Way",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd1507111969.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/Die-Teezeremonie_250.jpg",
		192, 300,
		"JP-12", "The Tea Ceremony",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd1138285558.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/Enso_250.jpg",
		192, 174,
		"JP-13", "Enso-the symbol of Return ",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"stk", "64",
		"", "pd337918740.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/Kikko-56_250.jpg",
		250, 333,
		"56-125", "Yukata &quot;Kiko&quot;",
		"Japanese Yukata in traditional Style with belt", "",
		"79.5", "0.49",
		"1", 1,
		"stk", "57",
		"", "pd-1119575522.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/Samurai2-vorn.jpg",
		250, 241,
		"Pmr-53", "CD &quot;Samurai-Collection 2&quot;-Original from Japan",
		"Sampler from different Artists", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd1141051094.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/Snow-vorn.jpg",
		250, 241,
		"Pmr-18", "CD &quot;Snow-Piano Collection&quot;-Original from Japan",
		"Sampler- Piano tracks", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd1395206388.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/Sorma-vorn.jpg",
		250, 241,
		"Pmr-14", "CD &quot;Sorma&quot;-Original from Japan",
		"Mirage of the East", "",
		"22.5", "0.01",
		"1", 1,
		"stk", "63",
		"", "pd-711489470.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/5320.1008_186.jpg",
		186, 205,
		"5320.1008", "FOLIO",
		"Ceiling or  Wall Fixture", "",
		"125", "4.9",
		"1", 1,
		"stk", "21",
		"Type;Beech oiled@", "pd966961301.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/consol-300.jpg",
		300, 221,
		"230111-040100", "Uzume Consol Table",
		"with 2 glass plates", "",
		"285", "20.084",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30",
		"", "pd947868536.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/CCR5-300.jpg",
		300, 200,
		"115111", "MIKADO",
		"2 seater sofa", "",
		"495", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53",
		"Equipment;without equipment@Cover;without Cover@Cushion;without cushion@", "pd1686569967.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/CCR2-300.jpg",
		300, 200,
		"115111-0", "MIKADO",
		"1 seater sofa", "",
		"415", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53,53,38",
		"Table;without Tables@Cover;without Cover@Cushion;without cushion@", "pd-2016227838.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3,006-3,koll6", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/FRESH_901_SOFA2-300.jpg",
		300, 225,
		"117100-140200", "FRESH",
		"Daybed", "",
		"295", "120",
		"1", 1,
		"stk", "53",
		"Colour;nature untreated@", "pd1440388330.htm",
		"", 1,
		"006-3", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/FRAME1-300.jpg",
		300, 278,
		"550311-140200", "Frame Bed",
		"oak wenge varnished", "",
		"675", "120",
		"1", 1,
		"stk", "40",
		"Size;140 x 200 cm@Colour;wenge varnished@", "pd349364056.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/mojo-300.jpg",
		300, 229,
		"240111160200", "MOJO BED",
		"Oak wenge varnished", "",
		"345", "120",
		"1", 1,
		"stk", "40",
		"Tables;without Tables@", "pd-1815028944.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/Komfort Extra.jpg",
		200, 118,
		"K212-AG-1", "Comfort Extra Futon 120x200, black/brown",
		"Soft and nestling Futon", "",
		"225", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53,53,38,52,0",
		"", "pd1228399557.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3,006-3,koll6,006-2-7,00001", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/04a_400.jpg",
		250, 149,
		"1-07/157", "Tatami Standard ",
		"Japanese floor cover-different side bands-many sizes", "",
		"53", "60.2",
		"1", 1,
		"Piece(s)", "14",
		"Size;90 x 90 cm@Side Band;black@", "pd-1906935354.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/Tatami450.jpg",
		250, 173,
		"1-06/157", "Tatami Classic",
		"Japanese floor cover", "",
		"65", "60.2",
		"1", 1,
		"Piece(s)", "14",
		"Size;90 x 90 cm@Side Band;black@", "pd1022664972.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/tat_roll450.jpg",
		211, 125,
		"1-17", "Tatami Mat",
		"Rollable Tatami Mat from Igusa Grass", "",
		"39.5", "4.9",
		"1", 1,
		"stk", "14",
		"", "pd1093228422.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/tatkiss300.jpg",
		156, 125,
		"1-15", "Tatami Cushion",
		"Small Tatami mat made from Igusa Grass", "",
		"35", "5.011",
		"1", 1,
		"stk", "14",
		"", "pd1027589108.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/1fach_186.jpg",
		132, 125,
		"1-18/1", "Folding Tatami",
		"with Bag", "",
		"135", "5.021",
		"1", 1,
		"stk", "14",
		"Type;with bag$30,00@", "pd1076843351.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/P1010179.jpg",
		211, 158,
		"1-08-1", "Flat-Tatami",
		"Light and easy to lay", "",
		"39", "4.94",
		"1", 1,
		"Piece(s)", "14",
		"Size;90 x 180$30@Side Band;black@", "pd1126774231.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/42-225.jpg",
		300, 338,
		"42-225", "Chest of Drawers",
		"59x57x40, (HxWxD)", "",
		"419", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd1238147260.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/42-285.jpg",
		300, 316,
		"42-285", "Jeonju Chest ",
		"Elm dark stained ", "",
		"599", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd-499784374.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/42-290.jpg",
		300, 325,
		"42-290", "Drawer Cupboard",
		"109x91x42 (HxWxD)", "",
		"1195", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd1814508680.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/42-140.jpg",
		300, 194,
		"42-140", "Medicin Chest of Drawers",
		"Brass fittings", "",
		"245", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd1411665398.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/42-205.jpg",
		300, 260,
		"42-205", "Chest of Drawers",
		"Elm dark stained and clear varnished ", "",
		"559", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd1994718484.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/42-180.jpg",
		300, 468,
		"42-180", "Chest with Drawers, high",
		"", "",
		"795", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd1730410850.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/karup_nr_016-big.jpg",
		300, 210,
		"NEST9xx", "Kobe",
		"Futon Lounge Chair", "",
		"215", "30.126",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53,53,38,52,0,49,29",
		"", "pd-768349150.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3,006-3,koll6,006-2-7,00001,006-2-8,005-6", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/Bed-300.jpg",
		300, 364,
		"Tori-AG", "Tori Bed",
		"140 x 200 cm", "",
		"395", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53,53,38,52,0,49,29,0,41",
		"", "pd-1921374050.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3,006-3,koll6,006-2-7,00001,006-2-8,005-6,00001,006-1-1", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/solitaer300.jpg",
		300, 155,
		"B-13-1-AG", "SOLITAIRE Bed incl. Equipment",
		"140x200, 160x200, 180x200 cm", "",
		"850", "120",
		"1", 1,
		"Piece(s)", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53,53,38,52,0,49,29,0,41,0,41",
		"Size;140 x 200 cm@Backrest;with 2 single Backrests@", "pd1683011965.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3,006-3,koll6,006-2-7,00001,006-2-8,005-6,00001,006-1-1,00001,006-1-1", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/2009-ohne_Seite_07_Bild_0001.jpg",
		186, 432,
		"9788", "TULIP",
		"", "",
		"595", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Oak natural, cable anthracite@", "pd1257937524.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/CORSETT_TL_Gruppe1_515.jpg",
		186, 186,
		"8722", "CORSETT",
		"Table Lamp", "",
		"159", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Wire;anthracite,with dimmer@", "pd1258110538.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/Bohannon_005.515.jpg",
		186, 186,
		"8112", "BOHANNON",
		"Pendant Lamp", "",
		"119", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Wire;anthracite@", "pd704420706.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/NIMBUS_1783.8508_257.jpg",
		186, 186,
		"NIM-xs1", "NIMBUS",
		"Pendant Lamp", "",
		"259", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Size;Height 30 cm Ø 36 cm@Wire;textile wire dark grey@", "pd1142337132.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/james-1.jpg",
		186, 304,
		"87-xxx", "JAMES",
		"Floor Lamp", "",
		"559", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Kind of Wood;cherry$76@Shade;Lunolit@", "pd1258973040.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/JAMES_XL_8780.2027_D.386.jpg",
		186, 304,
		"8-xl", "JAMES XL",
		"Floor Lamp", "",
		"895", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Kind of Wood;cherry$100@", "pd2143062862.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/NIMBUS_Steh-1.jpg",
		186, 304,
		"6082.8404", "NIMBUS",
		"Floor Lamp", "",
		"429", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Kind of Wood;Cherry oiled@", "pd-1238715418.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/NIMBUS-wand2.jpg",
		186, 304,
		"nim-wall", "NIMBUS",
		"Wall fixture", "",
		"95", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"Kind of Wood;beech@", "pd1654398546.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/Beat Drawer3.jpg",
		300, 219,
		"1111xx-080200-540", "BEAT",
		"Daybed with foldable armrests", "",
		"219", "120",
		"1", 1,
		"Piece(s)", "53",
		"Table;without Tables@Colour;nature untreated@Cover;without Cover@Storage Box;without box@", "pd1260356891.htm",
		"", 1,
		"006-3", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/WAVE2.jpg",
		300, 300,
		"121102-080200", "WAVE",
		"Daybed", "",
		"269", "120",
		"1", 1,
		"Piece(s)", "53",
		"Cover;without Cover@", "pd108106595.htm",
		"", 1,
		"006-3", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/Roots-300.jpg",
		300, 196,
		"123100 140200", "ROOTS",
		"Daybed", "",
		"129", "120",
		"1", 1,
		"Piece(s)", "53",
		"Colour;nature untreated@Lying size;138 x 200 cm@", "pd-2144338948.htm",
		"", 1,
		"006-3", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/Close-up-Jazz-table2-300.jpg",
		300, 298,
		"230113-045100-1", "Uzume Table",
		"wenge", "",
		"245", "20.084",
		"1", 1,
		"Piece(s)", "0",
		"", "pd634164704.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/karup_nr_016-big.jpg",
		300, 210,
		"NEST9xx-1", "Kobe",
		"Futon Lounge Chair", "",
		"125", "30.126",
		"1", 1,
		"Piece(s)", "0",
		"", "pd-1170476844.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/cane-sand-opener.jpg",
		195, 193,
		"OMX-Cane-Sand", "Cane-Sand",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"stk", "13",
		"", "pd1265894143.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/laguna-opener.jpg",
		195, 195,
		"OMX-Laguna", "Laguna",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"stk", "13",
		"", "pd-16007867.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/papyrus-opener.jpg",
		195, 193,
		"OMX-Papyrus", "Papyrus",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"stk", "13",
		"", "pd75264929.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/Super Sandwich.jpg",
		200, 131,
		"SW3-2", "Super Sandwich-Futon 180 x220",
		"A solid Futon", "",
		"465", "120",
		"1", 1,
		"stk", "19,21,19,21,19,21,21,19,19,21,30,14,16,0,52,0,0,41,19,21,34,40,34,53,33,53,36,40,36,53,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,33,24,33,24,24,33,30,26,14,21,19,21,19,33,24,30,38,53,53,38,52,0,49,29,0,41,0,41,0,52",
		"", "pd-147594305.htm",
		"", 1,
		"001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7,001-4-7,001-4-5,001-4-5,001-4-7,005-7,001-3,001-4-1,00001,006-2-7,00001,00001,006-1-1,001-4-5,001-4-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll4,006-3,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1,koll1,006-3,koll1,005-1,koll1,005-1,koll1,005-1,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll1,005-1,005-7,koll6,006-3,006-3,koll6,006-2-7,00001,006-2-8,005-6,00001,006-1-1,00001,006-1-1,00001,006-2-7", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/Sandwich.jpg",
		200, 100,
		"SW1-1", "Sandwich-Futon 140x200, linen",
		"A medium-solid Futon", "",
		"310", "120",
		"1", 1,
		"stk", "0",
		"", "pd-498211022.htm",
		"", 1,
		"00001", "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>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</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();
			};
		};