	// 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/sansui-decke.jpg",
		250, 218,
		"42-585-en", "Ceiling Fixtures &quot;Sansui Take&quot;",
		"ø=30 cm, H=20 cm", "",
		"39.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"", "pd1075237015.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/42-605.jpg",
		250, 498,
		"42-605", "Floor Lamp &quot; Stringlite&quot;",
		"19 x 19 x 58 cm", "",
		"49.5", "1.9",
		"1", 1,
		"Piece(s)", "16",
		"Colour of wood;black varnish@", "pd-194599779.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/shoji-lampe-schwarz-big.jpg",
		250, 337,
		"42-610-en", "Shoji Lamp",
		"32 x 32 x 76 cm", "",
		"99.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"Colour of wood;black varnish@", "pd-1967701895.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/shizuka-lampe-schwarz-big.jpg",
		250, 385,
		"42-620-en", "Table Lamp &quot;Shizuka 2&quot;",
		"16 x 15 x 35 cm", "",
		"34.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"", "pd504115733.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/42-621.jpg",
		250, 381,
		"42-621-en", "Table Lamp &quot;Ido&quot;",
		"26 x 26 x 42 cm", "",
		"54.9", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"", "pd-179889589.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/ginza-lampe-schwarz-big.jpg",
		250, 313,
		"42-622-en", "Table Lamp &quot;Ginza&quot;",
		"20 x 20 x 40 cm", "",
		"49.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"", "pd-1337698959.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/shizuka-wooden-lampe-schwarz-big.jpg",
		250, 507,
		"42-640-en", "Floor Lamp &quot;Shizuka 3&quot;",
		"24x 21 x 73 cm", "",
		"79.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"", "pd1802099975.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/andon-end-table-black-big.jpg",
		250, 267,
		"42-670-en", "Table Lamp &quot;Andon&quot;",
		"40 x 40 x 49 cm", "",
		"99.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"Colour of wood;black varnish@", "pd-665312381.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/42-680.jpg",
		250, 346,
		"42-680-en", "Table Lamp &quot;Gentolite&quot;",
		"23 x 23 x 47 cm", "",
		"44.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"", "pd1412409791.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/45-210.jpg",
		250, 204,
		"45-200", "Lampion &quot; Maru&quot;",
		"ø 40 ", "",
		"9.9", "1.6",
		"1", 1,
		"stk", "16",
		"Diameter;40 cm@", "pd1912635322.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/45-105.jpg",
		250, 373,
		"45-110", "Paperlantern &quot; Kyoto&quot;",
		"30 x 30 x 175 cm", "",
		"42.9", "1.6",
		"1", 1,
		"stk", "16",
		"Size;30 x 30 x 175 cm@", "pd389082982.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Tori-1-400.jpg",
		400, 300,
		"JL-51-b", "Table Lamp &quot; Tori&quot;",
		"55 x 35 x 25 cm", "",
		"89.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"Colour;black Varnish@", "pd-2104606061.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Hokaido-schwarz_300.jpg",
		300, 188,
		"JL-44-b", "Ceiling Fixture &quot; Hokaido&quot;",
		"42 x 42 x 19 cm", "",
		"69.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"Colour;black Varnish@", "pd123061092.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/13.jpg",
		200, 111,
		"BW4-TR", "Travel-Cotton Futon 8 cm",
		"The classic japanese sleeping mat", "",
		"99", "4.93",
		"1", 1,
		"Piece(s)", "43",
		"", "pd-1067051517.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/56-141.jpg",
		250, 289,
		"56-141", "Kimono &quot;MOMIJI&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"85.5", "0.49",
		"1", 1,
		"stk", "56",
		"Colours;dark blue@", "pd315525446.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/56-621.jpg",
		250, 282,
		"56-620", "Kimono &quot;RIBBON&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"105", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;blue@", "pd1710456454.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/56-625.jpg",
		250, 277,
		"56-625", "Kimono &quot;Golden Dragon&quot;",
		"Original japanese housewear", "",
		"105", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-756756173.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/56-626.jpg",
		250, 289,
		"56-627", "Kimono &quot;Drache-Kiefer&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"94.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-685799783.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/56-629.jpg",
		250, 286,
		"56-629", "Kimono &quot;Wave&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"87.9", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-476048785.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/56-641.jpg",
		250, 290,
		"56-641", "Kimono &quot;UKIYOE&quot;",
		"Traditional japanese housewear", "",
		"105", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;green@", "pd-543811019.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/56-648.jpg",
		250, 269,
		"56-647", "Kimono &quot; DAIMONJI&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"87.9", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;blue@", "pd-1906167170.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/56-512.jpg",
		250, 271,
		"56-513", "Kimono &quot;Peacock&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"94.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;purple@", "pd-1786908791.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/56-515.jpg",
		250, 278,
		"56-516", "Kimono &quot;Long Live&quot;",
		"Original japanese housewear", "",
		"94.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Farbe;grey@", "pd-1584050558.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/56-520.jpg",
		250, 282,
		"56-520", "Kimono &quot;UMAGATA&quot;",
		"Original japanese housewear", "",
		"94.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-2107713396.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/56-282.jpg",
		250, 229,
		"56-283", "Short-Kimono &quot;HIME SAKURA&quot;",
		"silk blue", "",
		"186", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;blue@", "pd-1056431718.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/56-284.jpg",
		250, 282,
		"56-286", "Silk Kimono &quot;UME&quot;",
		"Japanese Kimono traditional  style", "",
		"254", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;pink@", "pd-1011466524.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/56-287.jpg",
		250, 278,
		"56-287", "Silk Kimono &quot;FUJI no HANA&quot;",
		"Japanese Kimono traditional  style", "",
		"254", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;green@", "pd396708209.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/56-290.jpg",
		250, 261,
		"56-291", "Silk Kimono &quot;KUMO&quot;",
		"Japanese Kimono traditional  style", "",
		"254", "0.49",
		"1", 1,
		"stk", "56",
		"Colours;pink@", "pd-1787021110.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/56-656.jpg",
		250, 266,
		"56-658", "Kimono &quot;Sensu Take&quot;",
		"Traditional japanese housewear", "",
		"99.5", "0.49",
		"1", 1,
		"stk", "56",
		"Colours;blue@", "pd-877642305.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/56-293.jpg",
		250, 254,
		"56-293", "Seidenkimono &quot;DRAGON PINE&quot;",
		"Japanese Kimono traditional  style", "",
		"264", "0.49",
		"1", 1,
		"stk", "56",
		"", "pd156062297.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/56-137.jpg",
		250, 274,
		"56-137", "Kimono &quot;SENSU TSURU&quot;",
		"Original japanese housewear", "",
		"94.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;aqua-blue@", "pd-1107704785.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/56-294.jpg",
		250, 259,
		"56-294", "Silk Kimono &quot;DRAGON&quot;",
		"Japanese Kimono traditional  style", "",
		"264", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-13892783.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/56-130.jpg",
		250, 295,
		"56-133", "Kimono &quot;KAKI&quot; ivory",
		"Japanese Kimono traditional  style with belt", "",
		"85.5", "0.49",
		"1", 1,
		"stk", "56",
		"Colours;ivory@", "pd587161420.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/56-142.jpg",
		250, 276,
		"56-142", "Kimono &quot;TOMBO&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-1955259827.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/56-143.jpg",
		250, 277,
		"56-145", "Kimono &quot;SHOCHIKUBAI&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;ivory@", "pd1896619331.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/56-190.jpg",
		250, 282,
		"56-190", "Kimono &quot;KOTOBUKI&quot;",
		"Japanese Kimono traditional -embroidered", "",
		"109.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-1455307948.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/56-192.3.jpg",
		250, 279,
		"56-192", "Kimono &quot;TSURU&quot;",
		"Original japanese housewear- embroidered", "",
		"165", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd375335330.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/56-194.3.jpg",
		250, 273,
		"56-194", "Kimono &quot; MON&quot;",
		"Original japanese housewear- embroidered", "",
		"139.5", "0.49",
		"1", 1,
		"stk", "56",
		"", "pd2100326560.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/56-193.3.jpg",
		250, 290,
		"56-193", "Kimono &quot; CHERRY BLOSSOM&quot;",
		"Original japanese housewear- embroidered", "",
		"139.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-2001385522.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/56-085.jpg",
		250, 285,
		"56-085", "Kimono &quot;AKA&quot;",
		"Japanese Kimono traditional  style", "",
		"87.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd1378812090.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/56-751.jpg",
		250, 277,
		"56-752", "Kimono &quot;TSUMUGI&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"119", "0.49",
		"1", 1,
		"stk", "56",
		"Colours;green@", "pd-134906504.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/56-760.jpg",
		250, 263,
		"56-750-1", "Kimono &quot;TSUMUGI&quot; Drache",
		"Original japanese housewear- embroidered", "",
		"195", "0.49",
		"1", 1,
		"stk", "56",
		"", "pd-928206126.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/56-570.jpg",
		250, 301,
		"56-570", "Samue &quot;TSUGUMI&quot;",
		"Japanese Housewear", "",
		"196", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Sizes;L (57)@Colours;black@", "pd1288187530.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/56-586.jpg",
		250, 199,
		"56-579-l", "Samue &quot;SASHIKO&quot;",
		"Japanese Housewear", "",
		"142.9", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Sizes;L (57)@Colours;dark blue@", "pd-1978553694.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/56-846.jpg",
		250, 290,
		"56-847", "Yukata &quot;Icheban&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Size;L (57)@", "pd-713475999.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/56-815.jpg",
		250, 288,
		"56-816", "Yukata &quot;Igeta&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Sizes;L (57)@", "pd-1003658757.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/56-128.jpg",
		250, 291,
		"56-128", "Yukata &quot;Sasa 2&quot;",
		"Japanese Yukata traditional  style", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"", "pd-870750019.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/56-826.jpg",
		250, 285,
		"56-827", "Yukata &quot;Seikaiha&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Size;L (57)@", "pd-1702264693.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/56-831.jpg",
		250, 299,
		"56-832", "Yukata &quot;Tombo&quot;",
		"Original japanische Kleidung", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Size;L (57)@", "pd-1100514280.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/56-821.jpg",
		250, 283,
		"56-822", "Yukata &quot;Tsuyu Shiba&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Sizes;L (57)@", "pd680229289.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/56-836.jpg",
		250, 296,
		"56-837", "Yukata &quot;YingYang&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Size;L (57)@", "pd-1253696501.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/56-324.jpg",
		250, 202,
		"56-324", "Tabi",
		"traditional Japanese socks", "",
		"37.5", "0.01",
		"1", 1,
		"Pair", "58",
		"Sizes;24 cm@Colours;white@", "pd-254707515.htm",
		"", 1,
		"007-4", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/46-300.jpg",
		250, 399,
		"46-300", "Wall Cover &quot;Sakura&quot;",
		"100% Linen, 115 x 45 cm", "",
		"109.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd1289838697.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/46-301.jpg",
		250, 442,
		"46-301", "Wall Cover &quot;Bamboo&quot;",
		"100% Linen, 115 x 45 cm", "",
		"109.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd393396415.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/46-302.jpg",
		250, 411,
		"46-302", "Wall Cover &quot;Ume&quot;",
		"100% Linen, 115 x 45 cm", "",
		"109.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd-953700091.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/46-303.jpg",
		250, 385,
		"46-303", "Wall Cover Tsuki&quot;",
		"100% Linen, 115 x 45 cm", "",
		"109.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd-1784909125.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/komplett-bambus.jpg",
		250, 177,
		"14002-1", "Japan  Bed Linen &quot; Bamboo&quot;",
		"135 x 200 cm", "",
		"189", "1.6",
		"1", 1,
		"Piece(s)", "50",
		"Size;135 x 200 cm@", "pd1289924203.htm",
		"", 1,
		"006-21", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/komplett-gedicht.jpg",
		250, 187,
		"14000-1", "Japan Bed Linen &quot;Kanji&quot;",
		"135 x 200 cm", "",
		"189", "1.6",
		"1", 1,
		"Piece(s)", "50",
		"Size;135 x 200 cm@", "pd-541686127.htm",
		"", 1,
		"006-21", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/bettwaesche-pflaumenbluete-s.jpg",
		250, 202,
		"10618-1", "Japan Bed Linen &quot;Prune Blossom&quot;",
		"135 x 200 cm", "",
		"189", "1.6",
		"1", 1,
		"Piece(s)", "50",
		"Size;135 x 200 cm@", "pd2120741671.htm",
		"", 1,
		"006-21", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/1063.jpg",
		300, 250,
		"FL 1063", "WOODEN",
		"Natur", "",
		"95", "20.5",
		"1", 1,
		"Piece(s)", "28",
		"", "pd-1184484917.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/FL2063-b.jpg",
		300, 316,
		"FL 2063 ZEN", "ZEN",
		"Black", "",
		"95", "20.5",
		"1", 1,
		"Piece(s)", "28",
		"", "pd1855282620.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Podest 1.jpg",
		250, 188,
		"TP", "Tatami Platform",
		"", "",
		"1500", "180.6",
		"1", 1,
		"Piece(s)", "14",
		"", "pd8448586.htm",
		"", 1,
		"001-3", "0",
		 1)
	
		Entry[62] = new Element(
		62, "assets/thumb/2008031016205989.jpg",
		300, 225,
		"1111-lotus", "LOTUS",
		"4-seater - sleeper combination with 2 Tables", "",
		"1250", "120",
		"1", 1,
		"Piece(s)", "40,53",
		"Cover;without Cover@", "pd1301052113.htm",
		"", 1,
		"006-1,006-3", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/4331.1608-norm.jpg",
		300, 368,
		"4331.1608", "PILA",
		"Twin pendant Lamp", "",
		"489", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"", "pd1303812700.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/64-156.jpg",
		250, 358,
		"64-156", "Wind Bell &quot; Tsurigane&quot;",
		"Original from Japan", "",
		"13.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd1317281654.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/Paravent-120_250.jpg",
		300, 397,
		"5-01/1", "Paravent 130 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[66] = new Element(
		66, "assets/thumb/paraventschwarz250.jpg",
		300, 424,
		"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[67] = new Element(
		67, "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,
		"Piece(s)", "30",
		"Size;40 x 40 x 30 cm@Colour;nature varnished@", "pd1027595035.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/Shojirollo.jpg",
		180, 212,
		"SR-01/6", "Shoji Blind",
		"Length 240 cm", "",
		"22.5", "5.02",
		"1", 1,
		"Piece(s)", "27",
		"Width;80 cm@", "pd1035241123.htm",
		"", 1,
		"005-4", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Bambusrollo.jpg",
		180, 250,
		"BR-01/6", "Bamboo Blind 80 cm",
		"Length 240 cm", "",
		"42.5", "5.02",
		"1", 1,
		"Piece(s)", "27",
		"Width;80 cm@", "pd-1952230784.htm",
		"", 1,
		"005-4", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/double_cross_290.jpg",
		300, 376,
		"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[71] = new Element(
		71, "assets/thumb/image002.jpg",
		200, 94,
		"8/0/1", "Futon Cotton-Coconut 8/0",
		"Soft resiliant Futon, compact characteristic", "",
		"167", "120",
		"1", 1,
		"Piece(s)", "44",
		"Size;100 x 200 cm@", "pd1061787294.htm",
		"", 1,
		"006-2-2", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Baumwolle 06.jpg",
		200, 90,
		"BW1/9", "Cotton Futon 6 cm",
		"The classic japanese sleeping mat", "",
		"114", "120",
		"1", 1,
		"Piece(s)", "43",
		"Size;90 x 200 cm@", "pd-44945686.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Baumwolle 08.jpg",
		200, 104,
		"BW2/9", "Cotton Futon 8 cm",
		"The classic japanese sleeping mat", "",
		"136", "120",
		"1", 1,
		"Piece(s)", "43",
		"Size;90 x 200 cm@", "pd-957406067.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Baumwolle 10.jpg",
		200, 105,
		"BW3/10", "Futon Cotton 10 cm",
		"The classic japanese sleeping mat", "",
		"158", "120",
		"1", 1,
		"Piece(s)", "43",
		"Size;90 x 200 cm@", "pd792080771.htm",
		"", 1,
		"006-2-1", "0",
		 0)
	
		Entry[75] = new Element(
		75, "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,
		"Piece(s)", "44",
		"Size;90 x 200 cm@", "pd-1713954967.htm",
		"", 1,
		"006-2-2", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Hanf 2.jpg",
		200, 167,
		"HF 2/9", "Futon Deshi 2 ",
		"A medium-solid, resiliant Futon", "",
		"244", "120",
		"1", 1,
		"Piece(s)", "48",
		"Size;90 x 200 cm@", "pd-1753573441.htm",
		"", 1,
		"006-2-6", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Hanf 3.jpg",
		200, 138,
		"HF 3/9", "Deshi 3 Futon",
		"A solid, resiliant Futon", "",
		"254", "120",
		"1", 1,
		"Piece(s)", "48",
		"Size;90 x 200 cm@", "pd-1376821243.htm",
		"", 1,
		"006-2-6", "0",
		 0)
	
		Entry[78] = new Element(
		78, "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,
		"Piece(s)", "45",
		"Size;90 x 200 cm@", "pd1062957545.htm",
		"", 1,
		"006-2-3", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Wolle-Kokos 8-2.jpg",
		200, 129,
		"WK8/2/9", "Wool Coconut Futon 8/2",
		"Comfortable, soft Futon", "",
		"274", "120",
		"1", 1,
		"Piece(s)", "45",
		"Size;90 x 200 cm@", "pd1449068912.htm",
		"", 1,
		"006-2-3", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Sandwich.jpg",
		200, 100,
		"SW1/9", "Sandwich-Futon",
		"A medium-solid Futon", "",
		"284", "120",
		"1", 1,
		"Piece(s)", "46",
		"Size;90 x 200 cm@", "pd-915263249.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Sandwich Extra.jpg",
		200, 150,
		"SW2/9", "Futon Sandwich Extra",
		"Medium-solid Futon", "",
		"324", "120",
		"1", 1,
		"Piece(s)", "46",
		"Size;90 x 200 cm@", "pd2031946650.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Super Sandwich.jpg",
		200, 131,
		"SW3/9", "Super Sandwich-Futon",
		"A solid Futon", "",
		"308", "120",
		"1", 1,
		"Piece(s)", "46",
		"Size;90 x 200 cm@", "pd1003901409.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Super Sandwich Extra.jpg",
		200, 127,
		"SW4/9", "Super Sandwich Extra-Futon",
		"A solid Futon", "",
		"374", "120",
		"1", 1,
		"Piece(s)", "46",
		"Size;90 x 200 cm@", "pd-527017740.htm",
		"", 1,
		"006-2-4", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Komfort.jpg",
		200, 107,
		"K1/9", "Futon Comfort",
		"Soft and nestling Futon", "",
		"229", "120",
		"1", 1,
		"Piece(s)", "47",
		"Size;90 x 200 cm@", "pd-597270077.htm",
		"", 1,
		"006-2-5", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Komfort Extra.jpg",
		200, 118,
		"K212/9", "Comfort Extra Futon",
		"Soft and nestling Futon", "",
		"259", "120",
		"1", 1,
		"Piece(s)", "47",
		"Size;90 x 200 cm@", "pd2101040126.htm",
		"", 1,
		"006-2-5", "0",
		 0)
	
		Entry[86] = new Element(
		86, "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[87] = new Element(
		87, "assets/thumb/bambus-tisch01_183_neu.jpg",
		183, 132,
		"T-05/2", "Bamboo Table",
		"87 x 87 cm", "",
		"345", "20.05",
		"1", 1,
		"Piece(s)", "30",
		"Outside Size;87 x 87 cm@", "pd1075119614.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/3318.9337.jpg",
		186, 160,
		"3318.9337", "KIOTO 2+4",
		"Wall - or Ceiling Fixture", "",
		"365", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21",
		"Type;Beech-Beech@Equipment;without equipment@Model;Kioto 2@Bulbs;without bulbs@", "pd-1464472535.htm",
		"", 1,
		"006-1,006-3,001-4-5,001-4-7", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/3324.9437s.jpg",
		186, 141,
		"3-xxx", "KIOTO 5+9",
		"Wall - or Ceiling Fixture", "",
		"482", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21",
		"Kind of Wood;Beech- Beech@Equipment;without equipment@Model;Kioto 5@Bulbs;without bulbs@", "pd-936258992.htm",
		"", 1,
		"006-1,006-3,001-4-5,001-4-7,001-4-5,001-4-7", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/3336.9537s.jpg",
		186, 141,
		"K13-16-xxx", "KIOTO 13+16",
		"Wall - or Ceiling Fixture", "",
		"595", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21",
		"Type;Beech-black@Equipment;without equipment@Model;Kioto 16@Bulbs;without bulbs@", "pd-1969823790.htm",
		"", 1,
		"006-1,006-3,001-4-5,001-4-7,001-4-5,001-4-7,001-4-5,001-4-7", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/3503.7508_2s.jpg",
		186, 261,
		"3503.7508", "STELLA 1",
		"Wall- or Ceiling fixture", "",
		"198", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19",
		"Model;Stella 1@", "pd-1124513818.htm",
		"", 1,
		"006-1,006-3,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[92] = new Element(
		92, "assets/thumb/3320.1108s.jpg",
		186, 125,
		"3320.1108", "FOLIO 1",
		"Ceiling or Wall fixture", "",
		"189", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21",
		"", "pd1027529220.htm",
		"", 1,
		"006-1,006-3,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[93] = new Element(
		93, "assets/thumb/6557.0908_s.jpg",
		154, 397,
		"6360.5868", "SEBA",
		"Floor Lamp", "",
		"659", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Beech@", "pd-103989777.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/5335.3708s.jpg",
		186, 245,
		"5335.3708", "SHADE",
		"Wall fixture", "",
		"135", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"Type;Beech@", "pd-1840837124.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/1235.3808.jpg",
		186, 318,
		"1335.3808", "SHADE",
		"Pendant Lamp", "",
		"152", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Type;Beech@", "pd1490874678.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/7234.3508s.jpg",
		186, 272,
		"7334.3508", "SHADE",
		"Table Lamp", "",
		"149", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Type;Beech@", "pd2122797218.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/7951.5408s.jpg",
		186, 219,
		"7352.6308", "GARDE",
		"Table Lamp", "",
		"179", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Kind of Wood;Beech@", "pd1448139896.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/5317.2808s.jpg",
		186, 208,
		"5317.2808", "IRIS",
		"Wall fixture", "",
		"105", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"", "pd-1152875516.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/3317.2208s.jpg",
		186, 155,
		"3317.2208", "IRIS",
		"Ceiling fixture 1", "",
		"149", "4.9",
		"1", 1,
		"Piece(s)", "19",
		"Type;Iris 1, H 16 cm, Ø 34 cm@", "pd2105154640.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/1317.2608s.jpg",
		186, 257,
		"1317.2608", "IRIS",
		"Pendant Lamp", "",
		"125", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"", "pd1076150877.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/tat_bank200.jpg",
		180, 125,
		"1-16/1", "Tatami Bench",
		"A multi purpose furniture from solid  Elmwood", "",
		"179.5", "20.05",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14",
		"Type;1 Wooden leaf and 1 Tatamicushion@", "pd-7821895.htm",
		"", 1,
		"006-1,006-3,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[102] = new Element(
		102, "assets/thumb/1361s.jpg",
		186, 193,
		"1363", "ARCUS",
		"Pendant Lamp", "",
		"659", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Type;Beech@", "pd1869657159.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/1331.1608s.jpg",
		186, 190,
		"1331.1608", "PILA",
		"Pendant Lamp", "",
		"179", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"", "pd1076247870.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/3331.1708s.jpg",
		186, 132,
		"3331.1708", "PILA",
		"Ceiling fixture", "",
		"198", "4.9",
		"1", 1,
		"Piece(s)", "19",
		"Size;size 1@", "pd1081384348.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/5331.1508s.jpg",
		186, 162,
		"5331.1508", "PILA",
		"Wall fixture", "",
		"145", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"", "pd196039638.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/27_250.jpg",
		250, 383,
		"46-110", "Noren &quot; Nodate&quot;",
		"Japanese Door Curtain", "",
		"119.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd-1708900556.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/norenwa.jpg",
		250, 426,
		"46-100", "Noren &quot;Wa&quot;",
		"Japanese Door Curtain", "",
		"119.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd389114496.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/32_250.jpg",
		250, 383,
		"46-090", "Noren &quot;Zen&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd1789547694.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/04a_250.jpg",
		250, 339,
		"56-600", "Kimono &quot;Princess&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"89.5", "0.49",
		"1", 1,
		"stk", "56",
		"Colours;black@", "pd173243037.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[110] = new Element(
		110, "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[111] = new Element(
		111, "assets/thumb/lovers-vorn.jpg",
		250, 241,
		"Pmr-54", "CD &quot; Lovers&quot;",
		"Best of Jia Peng Fang", "",
		"22.5", "0.01",
		"1", 1,
		"Piece(s)", "63",
		"", "pd1152115875.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/healing-vorn.jpg",
		250, 241,
		"Pmr-55", "CD &quot; Healing&quot;",
		"Sampler from different artists", "",
		"22.5", "0.01",
		"1", 1,
		"Piece(s)", "63",
		"", "pd172787593.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/yoga-vorn.jpg",
		250, 241,
		"Pmr-61", "Cd &quot; Yoga&quot;",
		"Japanese CD Yoga", "",
		"22.5", "0.01",
		"1", 1,
		"Piece(s)", "63",
		"", "pd-1674920737.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Ahorn.jpg",
		250, 410,
		"46-086", "Noren &quot;Maple&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd1154619235.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Kirschbluete.jpg",
		250, 404,
		"46-089", "Noren &quot;Cherry&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd1259403337.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Maru.jpg",
		250, 393,
		"46-086-2", "Noren &quot;Maru&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd368024479.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Koi.jpg",
		250, 413,
		"46-086-3", "Noren &quot;Koi&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd-362838299.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Tsuru.jpg",
		250, 369,
		"46-086-4", "Noren &quot;Tsuru&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd-1349272677.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Bambus.jpg",
		250, 369,
		"46-086-5", "Noren &quot;Bamboo&quot;",
		"Japanese Door Curtain", "",
		"149.5", "0.5",
		"1", 1,
		"Piece(s)", "25",
		"", "pd994907969.htm",
		"", 1,
		"005-2", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Kanji-250.jpg",
		250, 339,
		"56-126", "Yukata &quot;Kanji&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Colour;blue@", "pd1638232904.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/tiger-dragon.jpg",
		250, 280,
		"56-510", "Kimono &quot;Tiger Dragon&quot;",
		"Traditonal japanese housewear", "",
		"119", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"", "pd-378085588.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[122] = new Element(
		122, "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[123] = new Element(
		123, "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[124] = new Element(
		124, "assets/thumb/Akafuji250.jpg",
		250, 333,
		"56-205", "T- Shirt &quot;Akafuji&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd-1481231492.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Kanagawaoki250.jpg",
		250, 333,
		"56-205-1", "T- Shirt &quot;Kanagawaoki&quot;",
		"Original japanese Wear", "",
		"29.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd1689234102.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/dragon56-222-250.jpg",
		250, 221,
		"56-221", "T- Shirt &quot;Dragon&quot;",
		"High Quality Cotton", "",
		"32.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd-2025444912.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/kimono250.jpg",
		250, 333,
		"56-224", "T- Shirt &quot;Kimono&quot;",
		"High Quality Cotton", "",
		"32.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd1004838176.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/sutra-black250.jpg",
		250, 289,
		"56-225", "T- Shirt &quot;Sutra black&quot;",
		"High Quality Cotton", "",
		"49.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd1936745598.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/sutra-weiss250.jpg",
		250, 333,
		"56-226", "T- Shirt &quot;Sutra white&quot;",
		"High Quality Cotton", "",
		"49.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd-2010691506.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Kanji-Mai250.jpg",
		250, 333,
		"56-230", "T- Shirt &quot;Kanji Mai&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd1610262484.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Zen250.jpg",
		250, 333,
		"56-246", "T- Shirt &quot;Zen&quot;",
		"High Quality Cotton", "",
		"29.5", "0.1",
		"1", 1,
		"Piece(s)", "59",
		"", "pd1631887906.htm",
		"", 1,
		"007-5", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Muster107.jpg",
		250, 175,
		"Fut-Spez 100x200", "Futon Cover",
		"100 % Cotton", "",
		"89.5", "1.6",
		"1", 1,
		"Piece(s)", "50",
		"Size;100 x200 cm$10,00@", "pd-1142082650.htm",
		"", 1,
		"006-21", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/tsuru-black-250.jpg",
		250, 275,
		"56-650", "Kimono &quot;TSURU&quot;",
		"Schwarz, Blau oder Grün", "",
		"99.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;black@", "pd903211416.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[134] = new Element(
		134, "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[135] = new Element(
		135, "assets/thumb/para-shoji-walnut.jpg",
		300, 389,
		"42-392", "Paravent &quot;Shoji&quot;",
		"3 wings black", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black varnished@", "pd1226657864.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/para-sasa-300.jpg",
		300, 434,
		"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[137] = new Element(
		137, "assets/thumb/para-andon-300.jpg",
		300, 368,
		"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[138] = new Element(
		138, "assets/thumb/para-kumo-black-big.jpg",
		300, 386,
		"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[139] = new Element(
		139, "assets/thumb/7311.7208-small.jpg",
		186, 275,
		"7311.7208", "BOBBY",
		"Table Lamp", "",
		"109", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"", "pd-1365423847.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Bolino_6385-small.jpg",
		186, 279,
		"6385.3308", "BOLINO",
		"Floor Lamp", "",
		"515", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Beech@", "pd-583764723.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/IBIS_LED_7194_quad.515_01.jpg",
		186, 186,
		"7094", "IBIS LED",
		"Table Lamp", "",
		"395", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Kind of Wood;Cherry oiled+waxed@", "pd1683994167.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/LOOP_7953-small.jpg",
		186, 271,
		"7353.5208", "LOOP",
		"Table Lamp", "",
		"165", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Type;Beech@", "pd-1482675813.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Seba_7359-small.jpg",
		186, 262,
		"7359.5908", "SEBA",
		"Table Lamp", "",
		"205", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Type;Beech@", "pd43641994.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/2551.4723-small.jpg",
		186, 252,
		"2551.4707", "ARTA",
		"Suspension Lamp", "",
		"459", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Shade;Lunolit@", "pd845386957.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/Luna_1290-small.jpg",
		186, 256,
		"2290", "LUNA 2",
		"Pendant Lamp", "",
		"669", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Type;Maron-Oil@Model;Luna 2@", "pd1726680521.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/2332.1907-norm.jpg",
		186, 193,
		"2331.1807", "PILA 1",
		"Suspension Lamp", "",
		"395", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Model;Pila 1@", "pd-99179555.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/3173._s.jpg",
		186, 112,
		"3378", "TAURUS 2",
		"Ceiling fixture", "",
		"489", "4.9",
		"1", 1,
		"Piece(s)", "19",
		"Type;Beech@", "pd-1586051408.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/9105-small.jpg",
		186, 255,
		"9104", "TONDOLO",
		"Ceiling fixture 1", "",
		"42", "4.9",
		"1", 1,
		"Piece(s)", "19",
		"Model;Tondolo 1@", "pd-1397877657.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/6510.8308-small.jpg",
		186, 239,
		"6510.8308", "ARCADE",
		"Reading Lamp", "",
		"478", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"", "pd-1946941561.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/Bow_6084-norm.jpg",
		200, 274,
		"6384.8809", "BOW",
		"Floor Lamp", "",
		"545", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Beech@Shade;Silk orange@", "pd713922799.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/LOOP_6254.5508-norm.jpg",
		186, 533,
		"6353.5508", "LOOP",
		"Floor Lamp", "",
		"255", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Beech@", "pd-1383291134.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/6304.8208-small.jpg",
		186, 234,
		"6304.8208", "POLLO",
		"Reading Lamp", "",
		"469", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Beech@Bulbs;B 15d, for hand dimmer@", "pd-131588917.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/waiting-small.jpg",
		185, 267,
		"8812.8108", "WAI TING",
		"Decorative floor lamp", "",
		"459", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Maron-Oil@Wire;Dark grey@", "pd1593324317.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/5309.-small.jpg",
		186, 252,
		"5307", "DECO",
		"Wall fixture", "",
		"139", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"", "pd-1561100057.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/LOOP_5253_Seite-small.jpg",
		186, 248,
		"53.53.5308", "LOOP",
		"Wall fixture", "",
		"98", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"Type;Beech@", "pd-224394656.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/5316.6008-small.jpg",
		186, 249,
		"5316.6008", "LUNE",
		"Wall fixture", "",
		"159", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"", "pd-674655015.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/5173.s.jpg",
		186, 253,
		"5377", "TAURUS",
		"Wall fixture", "",
		"395", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"Type;Beech@", "pd-1633704417.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/TUBE_5961-small.jpg",
		186, 258,
		"5161", "TUBE",
		"Wall fixture", "",
		"198", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"Size;size 1@Kind of Wood;Walnut oiled@", "pd233728502.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/Bolino_7385.3208-small.jpg",
		186, 274,
		"7385.3208", "BOLINO",
		"Table Lamp", "",
		"325", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Type;Beech@", "pd1326473855.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/3272.-small.jpg",
		186, 215,
		"3272", "DRUM",
		"Ceiling fixture", "",
		"125", "4.9",
		"1", 1,
		"Piece(s)", "19",
		"", "pd-1767272221.htm",
		"", 1,
		"001-4-5", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/3320.1108s.jpg",
		186, 125,
		"3330.1307", "FOLIO 2",
		"Ceiling or Wall fixture", "",
		"397", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21",
		"", "pd2114570927.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7", "0",
		 0)
	
		Entry[162] = new Element(
		162, "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[163] = new Element(
		163, "assets/thumb/Komfort Extra.jpg",
		200, 118,
		"K212-AG", "Comfort Extra Futon 70x200",
		"Soft and nestling Futon", "",
		"145", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52",
		"", "pd1203246353.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7", "0",
		 0)
	
		Entry[164] = new Element(
		164, "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[165] = new Element(
		165, "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[166] = new Element(
		166, "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[167] = new Element(
		167, "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[168] = new Element(
		168, "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[169] = new Element(
		169, "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[170] = new Element(
		170, "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[171] = new Element(
		171, "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[172] = new Element(
		172, "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[173] = new Element(
		173, "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[174] = new Element(
		174, "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[175] = new Element(
		175, "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[176] = new Element(
		176, "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[177] = new Element(
		177, "assets/thumb/Bed-300.jpg",
		300, 364,
		"201111-140200-0", "Tori Bed",
		"with backrest", "",
		"435", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40",
		"Table;without Tables@Size;140 x 200 cm@", "pd-2137854779.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/Woodsofa300.jpg",
		300, 199,
		"201111-130200", "TORI- Bi Fold Sofa",
		"bed frame without Futon", "",
		"485", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53",
		"Futon-Cover;without Futon@", "pd-1812838996.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3", "0",
		 0)
	
		Entry[179] = new Element(
		179, "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)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53",
		"Colour;wenge@Cover;without Cover@Cushion;without cushion@", "pd-296554492.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/Blues-bed-up2-300.jpg",
		300, 201,
		"11411-140200", "Susanoh bed frame",
		"with integrated headboard elevation", "",
		"395", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40",
		"Size;140 x 200 cm@Equipment;without equipment@", "pd65437899.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/FIGO70N0-300.jpg",
		300, 213,
		"120100-07200", "Figo- Lounge Chair small",
		"4 positions", "",
		"185", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53",
		"Colour;nature untreated@Cover;without Cover@Cushion;without cushion@", "pd1838519287.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/FIGO120W1-300.jpg",
		300, 230,
		"120100-120200", "Figo- Lounge Chair wide",
		"4 positions", "",
		"265", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53",
		"Colour;nature untreated@Cover;without Cover@Cushion;without cushion@", "pd2094999261.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3,koll5,006-3", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/WOOD-TABLE-600.jpg",
		300, 238,
		"69543", "Tori Sidetable",
		"wenge, glass calendered", "",
		"195", "20.084",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30",
		"Size;25 x 40 x 55 cm@", "pd-494337880.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3,koll5,006-3,koll2,005-7", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/WOODSTOCK-KAYDO-BEDROOM4.jpg",
		300, 369,
		"69540M", "Tori Cabinet",
		"with calendered glass doors", "",
		"655", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24",
		"", "pd-1321177051.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Wooddresser300.jpg",
		300, 390,
		"69541", "Tori Dresser",
		"Pine, Aluminium", "",
		"665", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24",
		"", "pd-1876172968.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/Cosmic_C_11-300.jpg",
		300, 300,
		"118111-140200", "Cosmic Bed",
		"Pine wenge varnished", "",
		"455", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,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,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/Jazz-bed-300.jpg",
		300, 222,
		"230111-140200", "Uzume Bed",
		"with integrated headboard", "",
		"495", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,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,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,koll5,006-3,koll5,006-3,koll2,005-7,koll2,005-1,koll2,005-1,koll3,006-1,koll1,006-1", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/JAZZ-C2-300.jpg",
		300, 234,
		"230111-080200", "UZUME 2-Seater Sofa",
		"3 positions each side", "",
		"455", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,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,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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[189] = new Element(
		189, "assets/thumb/Jazz-chest-300.jpg",
		300, 393,
		"230111-060005", "Uzume Sideboard",
		"5 drawer chest", "",
		"295", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24",
		"", "pd-1683247928.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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[190] = new Element(
		190, "assets/thumb/Close-up-Jazz-table2-300.jpg",
		300, 298,
		"230113-045100", "Uzume Tables",
		"wenge", "",
		"285", "20.084",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30",
		"Size;40 x 45 x 100 cm@Colour;cherry@", "pd1474325025.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/14a_183.jpg",
		183, 111,
		"42-330", "Tatami Table  big",
		"Wooden frame, Board Wal Nut  veneer", "",
		"239", "20.05",
		"1", 1,
		"Piece(s)", "30",
		"", "pd1942165747.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[192] = new Element(
		192, "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,
		"Piece(s)", "30",
		"", "pd504239193.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/03_183.jpg",
		183, 173,
		"42-340", "Tatami Table  small",
		"Materials: Wooden frame, Board Wal Nut  veneer.", "",
		"189", "20.05",
		"1", 1,
		"Piece(s)", "30",
		"", "pd1970296367.htm",
		"", 1,
		"005-7", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/56-806.jpg",
		250, 286,
		"56-806", "Yukata &quot;Sasa&quot;",
		"Original japanese housewear", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Size;L (57)@", "pd-658616151.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/Zabuton_250_bw.jpg",
		250, 210,
		"46-351", "Chair / Floor cushion &quot;Zabuton&quot;",
		"Cotton darkblue/ white pattern", "",
		"74.5", "1.9",
		"1", 1,
		"Piece(s)", "29",
		"", "pd1096364425.htm",
		"", 1,
		"005-6", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/32_r1_150.jpg",
		150, 230,
		"R-54", "Shoji Paper",
		"Fine japanese paper to string Shoji Screens", "",
		"89.5", "5.02",
		"1", 1,
		"Rolle", "12",
		"", "pd1013819997.htm",
		"", 1,
		"1-1-9", "0",
		 0)
	
		Entry[197] = new Element(
		197, "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[198] = new Element(
		198, "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[199] = new Element(
		199, "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[200] = new Element(
		200, "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[201] = new Element(
		201, "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[202] = new Element(
		202, "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[203] = new Element(
		203, "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[204] = new Element(
		204, "assets/thumb/23_250.jpg",
		250, 193,
		"42-351/3", "Floorchair &quot;Zaisu&quot;",
		"", "",
		"74.5", "2.01",
		"1", 1,
		"Piece(s)", "29",
		"Colour;nature varnished@Cover;without Cushion@", "pd-993582619.htm",
		"", 1,
		"005-6", "0",
		 0)
	
		Entry[205] = new Element(
		205, "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,
		"Piece(s)", "63",
		"", "pd1363544219.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[206] = new Element(
		206, "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,
		"Piece(s)", "63",
		"", "pd861327447.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[207] = new Element(
		207, "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,
		"Piece(s)", "63",
		"", "pd1692150849.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[208] = new Element(
		208, "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[209] = new Element(
		209, "assets/thumb/Untersetzer_250.jpg",
		250, 184,
		"28-310", "Tatamiset",
		"Small Tatami mats", "",
		"8.5", "0.05",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14",
		"Size;15 x 15 cm@", "pd1446176498.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/glockeneu_250.jpg",
		250, 333,
		"64-160", "Wind Bell &quot;Small Pagode&quot; with Bell",
		"Original japanese ", "",
		"32.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd-171835699.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/Tablett1_250.jpg",
		250, 181,
		"23-130", "Varnished tray",
		"Upside black varnished,downside red varnished", "",
		"27.5", "0.4",
		"1", 1,
		"Piece(s)", "26",
		"", "pd1772459459.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/Asanoha_250.jpg",
		250, 198,
		"56-842", "Yukata &quot;Asanoha&quot;",
		"Japanese Yukata traditional  style with belt", "",
		"79.5", "0.49",
		"1", 1,
		"Piece(s)", "57",
		"Size;L (57)@", "pd1100695886.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/drachenvorn_250.jpg",
		250, 298,
		"56-191", "Kimono &quot;DRAGON&quot;",
		"Japanese Kimono traditional  style with belt", "",
		"154.5", "0.49",
		"1", 1,
		"stk", "56",
		"", "pd82757676.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/lullaby_vorn250.jpg",
		250, 252,
		"Pmr-15", "CD &quot;Lullaby&quot;-Original from Japan",
		"Mizuyo Komiya", "",
		"22.5", "0.01",
		"1", 1,
		"Piece(s)", "63",
		"", "pd-1409017286.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[215] = new Element(
		215, "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,
		"Piece(s)", "63",
		"", "pd-1098501384.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[216] = new Element(
		216, "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,
		"Piece(s)", "63",
		"", "pd586625510.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/3354.9637decke_200.jpg",
		200, 267,
		"3354.9637", "KIOTO 10",
		"Ceiling or Wall fixture", "",
		"569", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14,21,19",
		"Equipment;without equipment@Bulbs;without bulbs@", "pd1947469370.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/3314.9837Decke_200.jpg",
		200, 160,
		"Kioto 6-xxx", "KIOTO 6",
		"Ceiling or Wall fixture", "",
		"445", "4.9",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14,21,19,21,19",
		"Equipment;without equipment@Bulbs;without bulbs@", "pd-1336660061.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/para-shoji-walnut.jpg",
		300, 389,
		"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[220] = new Element(
		220, "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,
		"Piece(s)", "24",
		"", "pd-780282180.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/Apothekerschrank-schmal-250.jpg",
		250, 354,
		"42-160", "Chemist`s Cupboard high",
		"Elm dark stained + clear varnished", "",
		"325", "120.4",
		"1", 1,
		"Piece(s)", "24",
		"", "pd-43906230.htm",
		"", 1,
		"005-1", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/Paravent-White-Bamboo_250.jpg",
		300, 437,
		"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[223] = new Element(
		223, "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[224] = new Element(
		224, "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[225] = new Element(
		225, "assets/thumb/Windspiel-Drachen-gruen_425.jpg",
		250, 333,
		"64-165", "Wind Bell &quot; Dragon-green&quot;",
		"Original japanese -in and outdoor use", "",
		"29.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd-1661749030.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/Windspiel-Drachen-schwarz_2.jpg",
		250, 333,
		"64-164", "Wind Bell &quot; Dragon-black&quot;",
		"Original japanese -in and outdoor use", "",
		"29.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd1120236184.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/Winspiel-Fisch_250.jpg",
		250, 333,
		"64-167", "Wind Bell &quot;Fugu&quot;",
		"Original japanese ", "",
		"12.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd1249049222.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/Windspiel-Matsuri_250.jpg",
		250, 333,
		"64-166", "Wind Bell &quot;Matsuri&quot;",
		"Original japanese", "",
		"10.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd1220787236.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[229] = new Element(
		229, "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",
		"Colours;black@", "pd-1316286734.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/Kaki-56_250.jpg",
		250, 333,
		"56-133", "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[231] = new Element(
		231, "assets/thumb/Kikusuru_250.jpg",
		250, 333,
		"56-605", "Kimono &quot;Kikusuru&quot;",
		"Original japanese housewear", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Colours;blue@", "pd1779502460.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/Seikaiha_250.jpg",
		250, 333,
		"56-827", "Kimono &quot;Seikaiha&quot;",
		"Original japanese housewear", "",
		"85.5", "0.49",
		"1", 1,
		"Piece(s)", "56",
		"Size;L (57)@", "pd1944789002.htm",
		"", 1,
		"007-1", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/Gutschein-Motiv--Liebe.jpg",
		100, 145,
		"GS-01-4", "Gift Tokens",
		"", "",
		"25", "0",
		"1", 1,
		"Piece(s)", "65",
		"Value;25,00 €@", "pd-1670346171.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/ikadak_300.jpg",
		300, 135,
		"B-SF", "IKA-DA",
		"Traditional japenese sleeping with or without Tatami:Instant delivery", "",
		"720", "120",
		"1", 1,
		"Piece(s)", "39",
		"", "pd1114461405.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/glueckskatze_250.jpg",
		250, 333,
		"GK-01", "Japanese Cat",
		"Manekineko", "",
		"22.5", "0.65",
		"1", 1,
		"Piece(s)", "26",
		"", "pd-1932785312.htm",
		"", 1,
		"005-3", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/32_r1_150.jpg",
		100, 153,
		"Service-01", "Deliberation at your home..",
		"We come to your home", "",
		"150", "0",
		"1", 1,
		"Piece(s)", "65",
		"", "pd58581807.htm",
		"", 1,
		"009", "0",
		 1)
	
		Entry[237] = new Element(
		237, "assets/thumb/Jing_1373_186.jpg",
		186, 147,
		"1373.7334", "JING",
		"Pendant Lamp", "",
		"239", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"", "pd1124787786.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/Mikado_1975_186.jpg",
		186, 133,
		"1375.7354", "MIKADO",
		"Pendant Lamp", "",
		"239", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Base;Beech@", "pd-504881784.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/Jang_1274_186.jpg",
		186, 143,
		"1374.7348", "JANG",
		"Pendant Lamp", "",
		"469", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Type;Beech@", "pd1921786103.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/foja-opener.jpg",
		195, 193,
		"OMX-Foja", "Foja",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"Piece(s)", "13",
		"", "pd-1769201718.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/akoja-opener.jpg",
		195, 193,
		"OMX-Akoja", "Akoja",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"Piece(s)", "13",
		"", "pd109179656.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[242] = new Element(
		242, "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[243] = new Element(
		243, "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[244] = new Element(
		244, "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[245] = new Element(
		245, "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[246] = new Element(
		246, "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[247] = new Element(
		247, "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[248] = new Element(
		248, "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[249] = new Element(
		249, "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[250] = new Element(
		250, "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[251] = new Element(
		251, "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[252] = new Element(
		252, "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[253] = new Element(
		253, "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[254] = new Element(
		254, "assets/thumb/Yuudai_250.jpg",
		250, 167,
		"S-885 FG", "Yuudai",
		"Original japanese paper lamp", "",
		"179", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd-281166461.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/Bukuro_250.jpg",
		250, 375,
		"NOW18MINO", "Bukuro",
		"Original japanese paper lamp", "",
		"189", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd-1990087071.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/Moe_250.jpg",
		250, 379,
		"NOW17", "Moe",
		"Original japanese paper lamp", "",
		"498", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd1677510075.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/Aiko_250.jpg",
		250, 375,
		"NOW16", "Aiko",
		"Original japanese paper lamp", "",
		"195", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd-2108650491.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/Yoko_250.jpg",
		250, 166,
		"NOW1", "YOKO",
		"Original japanese paper lamp", "",
		"129", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd-2116449431.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Miu_250.jpg",
		250, 375,
		"Leaf-31FG", "Miu",
		"Original japanese paper lamp", "",
		"78", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd700227447.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/Akio_250.jpg",
		250, 166,
		"NOW14", "Akio",
		"Original japanese paper lamp", "",
		"239", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd-680336449.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Yumi_250.jpg",
		250, 375,
		"S-74FG", "Yumi",
		"Original japanese paper lamp", "",
		"139", "1.6",
		"1", 1,
		"Piece(s)", "17",
		"", "pd4230781.htm",
		"", 1,
		"001-4-111", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/Erster Schritt1.jpg",
		192, 300,
		"JP-01", "First Step",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"Piece(s)", "64",
		"", "pd-2117737785.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[263] = new Element(
		263, "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,
		"Piece(s)", "64",
		"", "pd-945896883.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[264] = new Element(
		264, "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,
		"Piece(s)", "64",
		"", "pd1122895171.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/Freude.jpg",
		192, 272,
		"JP-04", "The Gladness",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"Piece(s)", "64",
		"", "pd-1075177175.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/Die Liebe5.jpg",
		192, 284,
		"JP-05", "The Love",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"Piece(s)", "64",
		"", "pd2100635519.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[267] = new Element(
		267, "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,
		"Piece(s)", "64",
		"", "pd-1791789627.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/Ikebana.jpg",
		192, 270,
		"JP-07", "Ikebana",
		"Japanese Calligraphie printed on nacreous art paper ", "",
		"22.5", "0.0001",
		"1", 1,
		"Piece(s)", "64",
		"", "pd-188168837.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/Shodo.jpg",
		192, 270,
		"JP-11", "Shodo-the way of Calligraphie",
		"Japanese Calligraphie", "",
		"22.5", "0.0001",
		"1", 1,
		"Piece(s)", "64",
		"", "pd695608499.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[270] = new Element(
		270, "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,
		"Piece(s)", "64",
		"", "pd-1403162563.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[271] = new Element(
		271, "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,
		"Piece(s)", "64",
		"", "pd-1148839113.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[272] = new Element(
		272, "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,
		"Piece(s)", "64",
		"", "pd1507111969.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[273] = new Element(
		273, "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,
		"Piece(s)", "64",
		"", "pd1138285558.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[274] = new Element(
		274, "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,
		"Piece(s)", "64",
		"", "pd337918740.htm",
		"", 1,
		"008-4", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/Kikko-56_250.jpg",
		250, 333,
		"56-125", "Yukata &quot;Kikko&quot;",
		"Japanese Yukata  traditional style", "",
		"79.5", "0.49",
		"1", 1,
		"stk", "57",
		"", "pd-1119575522.htm",
		"", 1,
		"007-2", "0",
		 0)
	
		Entry[276] = new Element(
		276, "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,
		"Piece(s)", "63",
		"", "pd1141051094.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[277] = new Element(
		277, "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,
		"Piece(s)", "63",
		"", "pd1395206388.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[278] = new Element(
		278, "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,
		"Piece(s)", "63",
		"", "pd-711489470.htm",
		"", 1,
		"008-3", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/5320.1008_186.jpg",
		186, 205,
		"5320.1008", "FOLIO ",
		"Ceiling or Wall fixture", "",
		"135", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"", "pd966961301.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/CCR5-300.jpg",
		300, 200,
		"115111", "MIKADO",
		"2 seater sofa", "",
		"495", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14,21,19,21,19,38,53",
		"Equipment;without equipment@Cover;without Cover@Cushion;without cushion@", "pd1686569967.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll6,006-3", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/CCR2-300.jpg",
		300, 200,
		"115111-0", "MIKADO",
		"1 seater sofa", "",
		"415", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14,21,19,21,19,38,53,53,38",
		"Table;without Tables@Cover;without Cover@Cushion;without cushion@", "pd-2016227838.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll6,006-3,006-3,koll6", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/FRESH_901_SOFA2-300.jpg",
		300, 225,
		"117100-140200", "FRESH",
		"Daybed", "",
		"295", "120",
		"1", 1,
		"Piece(s)", "53",
		"Colour;nature untreated@", "pd1440388330.htm",
		"", 1,
		"006-3", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/mojo-300.jpg",
		300, 229,
		"240111160200", "MOJO BED",
		"Oak wenge varnished", "",
		"345", "120",
		"1", 1,
		"Piece(s)", "40",
		"Tables;without Tables@", "pd-1815028944.htm",
		"", 1,
		"006-1", "0",
		 0)
	
		Entry[284] = new Element(
		284, "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[285] = new Element(
		285, "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[286] = new Element(
		286, "assets/thumb/tat_roll450.jpg",
		211, 125,
		"1-17", "Tatami Mat",
		"Rollable Tatami Mat from Igusa Grass", "",
		"39.5", "4.9",
		"1", 1,
		"Piece(s)", "14",
		"", "pd1093228422.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/tatkiss300.jpg",
		156, 125,
		"1-15", "Tatami Cushion",
		"Small Tatami mat made from Igusa Grass", "",
		"35", "5.011",
		"1", 1,
		"Piece(s)", "14",
		"", "pd1027589108.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/1fach_186.jpg",
		132, 125,
		"1-18/1", "Folding Tatami",
		"with Bag", "",
		"135", "5.021",
		"1", 1,
		"Piece(s)", "14",
		"Type;with bag$30,00@", "pd1076843351.htm",
		"", 1,
		"001-3", "0",
		 0)
	
		Entry[289] = new Element(
		289, "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[290] = new Element(
		290, "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[291] = new Element(
		291, "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[292] = new Element(
		292, "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[293] = new Element(
		293, "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[294] = new Element(
		294, "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[295] = new Element(
		295, "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[296] = new Element(
		296, "assets/thumb/karup_nr_016-big.jpg",
		300, 210,
		"NEST9xx", "Kobe",
		"Futon Lounge Chair", "",
		"215", "30.126",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14,21,19,21,19,38,53,53,38,49,29",
		"", "pd-768349150.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll6,006-3,006-3,koll6,006-2-8,005-6", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/Sandwich Extra.jpg",
		200, 150,
		"SW2-1-AG", "Futon Sandwich Extra 70 x 200 cm",
		"Medium-solid Futon, instant delivery", "",
		"185", "120",
		"1", 1,
		"Piece(s)", "40,53,19,21,19,21,19,21,21,19,19,21,30,14,19,21,0,52,34,40,34,53,33,53,36,40,37,53,37,53,34,30,34,24,34,24,35,40,33,40,33,53,33,24,24,33,30,26,14,21,19,21,19,38,53,53,38,49,29,0,52",
		"", "pd1249375927.htm",
		"", 1,
		"006-1,006-3,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-5,001-4-7,00001,006-2-7,koll2,006-1,koll2,006-3,koll1,006-3,koll4,006-1,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,005-1,koll1,005-7,005-3,001-3,001-4-7,001-4-5,001-4-7,001-4-5,koll6,006-3,006-3,koll6,006-2-8,005-6,00001,006-2-7", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/2009-ohne_Seite_07_Bild_0001.jpg",
		186, 432,
		"9788", "TULIP",
		"", "",
		"625", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Type;Oak natural, cable anthracite@", "pd1257937524.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/CORSETT_TL_Gruppe1_515.jpg",
		186, 186,
		"8722", "CORSETT",
		"Table Lamp", "",
		"165", "4.9",
		"1", 1,
		"Piece(s)", "18",
		"Wire;anthracite,with dimmer@", "pd1258110538.htm",
		"", 1,
		"001-4-2", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/Bohannon_005.515.jpg",
		186, 186,
		"8112", "BOHANNON",
		"Pendant Lamp", "",
		"125", "4.9",
		"1", 1,
		"Piece(s)", "22",
		"Wire;anthracite@", "pd704420706.htm",
		"", 1,
		"004-1-4", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/NIMBUS_1783.8508_257.jpg",
		186, 186,
		"1782.8404", "NIMBUS",
		"Pendant Lamp", "",
		"273", "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[302] = new Element(
		302, "assets/thumb/james-1.jpg",
		186, 304,
		"87-xxx", "JAMES",
		"Floor Lamp", "",
		"588", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Kind of Wood;cherry$76@Shade;Lunolit@", "pd1258973040.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/JAMES_XL_8780.2027_D.386.jpg",
		186, 304,
		"8-xl", "JAMES XL",
		"Floor Lamp", "",
		"940", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Kind of Wood;cherry$100@", "pd2143062862.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/NIMBUS_Steh-1.jpg",
		186, 304,
		"6082.8404", "NIMBUS",
		"Floor Lamp", "",
		"449", "4.9",
		"1", 1,
		"Piece(s)", "20",
		"Kind of Wood;Cherry oiled@", "pd-1238715418.htm",
		"", 1,
		"001-4-6", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/NIMBUS-wand2.jpg",
		186, 304,
		"nim-wall", "NIMBUS",
		"Wall fixture", "",
		"98", "4.9",
		"1", 1,
		"Piece(s)", "21",
		"Kind of Wood;maron oil@", "pd1654398546.htm",
		"", 1,
		"001-4-7", "0",
		 0)
	
		Entry[306] = new Element(
		306, "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[307] = new Element(
		307, "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[308] = new Element(
		308, "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[309] = new Element(
		309, "assets/thumb/cane-sand-opener.jpg",
		195, 193,
		"OMX-Cane-Sand", "Cane-Sand",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"Piece(s)", "13",
		"", "pd1265894143.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/laguna-opener.jpg",
		195, 195,
		"OMX-Laguna", "Laguna",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"Piece(s)", "13",
		"", "pd-16007867.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/papyrus-opener.jpg",
		195, 193,
		"OMX-Papyrus", "Papyrus",
		"Sample book for fine asian wall coverings", "",
		"75", "2500",
		"1", 1,
		"Piece(s)", "13",
		"", "pd75264929.htm",
		"", 1,
		"001-2-3", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/FL2075N.JPG",
		300, 337,
		"FL-2075-B", "KISETO",
		" Black", "",
		"95", "20.5",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd1283427768.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/fl1059.jpg",
		300, 239,
		"FL1059", "YUUKI-H",
		"Nature", "",
		"125", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd1242483012.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/fl1059-1.jpg",
		300, 239,
		"FL1059-1", "YUUKI-HB",
		"Nature", "",
		"125", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd-1107468014.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/FL2016.jpg",
		300, 279,
		"FL2096-N", "PICTURE",
		"Nature", "",
		"135", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd-971426416.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/FL2065.jpg",
		300, 278,
		"FL2065W", "PICTURE 2",
		"White", "",
		"135", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd1381353837.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/FL1056-N-schnitt.jpg",
		300, 362,
		"FL1056-B", "YUKO",
		"Nature / Black / White", "",
		"95", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd1954743711.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/FL2002.jpg",
		300, 239,
		"FL200-cherry", "REIKO",
		"Cherry/Mahogany/ Nature/ Walnut", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;cherry@", "pd1360592448.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/FL2010-b.jpg",
		300, 258,
		"FL2010-B", "KUMO",
		"Nature / Black / White", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd199979354.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/FL2011-n.jpg",
		300, 256,
		"Fl20111-B", "DOUBLE CROSS",
		"Nature / Black / White", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd919651343.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/FL2018-n.jpg",
		300, 236,
		"FL2018-B", "MASATO",
		"Nature / Black / White", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-362900752.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/FL2017-n.jpg",
		300, 263,
		"FL2017-N", "MISAKI",
		"Nature / White", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;nature@", "pd1787351373.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/FL2026.jpg",
		300, 271,
		"FL2026", "YUKA",
		"Cherry", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd-1760880599.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/FL2041-n.jpg",
		300, 374,
		"FL2041-B", "BAMBOO 3",
		"Nature / Black / White", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd408567423.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/FL2013-n.jpg",
		300, 271,
		"FL2013-B", "DOUBLE CROSS-H",
		"Nature / Black", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-150670432.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/FL2015-b.jpg",
		300, 236,
		"FL2015-B", "KUMO-H",
		"Nature / Black", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-1417830996.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/FL2056-n.jpg",
		300, 278,
		"FL2056-B", "HONOLA",
		"Nature / Black / White", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-455516040.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/FL2062-n.jpg",
		300, 317,
		"FL2062-B", "HINA",
		"Nature / Black", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-244498251.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/FL2053-b.jpg",
		300, 250,
		"FL2053-B", "MOMOKA",
		"Nature / Black", "",
		"105", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-1350287618.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/FL2052-n.jpg",
		300, 260,
		"FL2052-B", "HARUKI",
		"Nature / Black", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-1218098454.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/FL2051-n.jpg",
		300, 232,
		"FL2051-B4", "HANAMI",
		"Nature / Black / White 4 or 5 wings", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@Wings;4@", "pd-895332970.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/FL2050-n.jpg",
		300, 255,
		"FL2050-B", "BAMBOO 4",
		"Nature / Black / White", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd241353563.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/FL2042.jpg",
		300, 244,
		"FL2043", "HAYATO",
		"Looks equal from both sides", "",
		"115", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd-1059006196.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/FL1060.jpg",
		300, 239,
		"FL1060-B", "YUUKI",
		"Nature/ Black", "",
		"125", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"Colour;black@", "pd-1513351654.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/FL1060.jpg",
		300, 239,
		"FL1060-1N", "YUUKI-B",
		"Nature", "",
		"125", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd-885675066.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/FL1060-2.jpg",
		300, 247,
		"FL1060-2B", "YUUKI-C",
		"Nature", "",
		"125", "20.05",
		"1", 1,
		"Piece(s)", "28",
		"", "pd774033252.htm",
		"", 1,
		"005-5", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/kago.jpg",
		250, 432,
		"42-470-en", "Table Lamp &quot;Kago&quot;",
		"ø=25,  H=46 cm", "",
		"59.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-849072772.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/palastlampe.jpg",
		250, 361,
		"42-472-en", "Palace Lamp",
		"ø=24,  H=45 cm", "",
		"75.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd267599882.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/machi.jpg",
		250, 439,
		"42-474-en", "Table Lamp &quot;Machi&quot;",
		"ø=18,  H=46 cm", "",
		"59.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd1408699720.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/takeia.JPG",
		250, 370,
		"42-476-en", "Table Lamp &quot;Takeya&quot;",
		"ø=16,5 cm,  H=36 cm", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd344118454.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/42-505.jpg",
		250, 429,
		"42-506", "Tatamilite S",
		"19 x 19 x 58 cm", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"Type;black, paper Bamboo@", "pd-1385569836.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/42-510.jpg",
		250, 464,
		"42-510-en", "Tatamilite L",
		"37 x 37 x 114 cm", "",
		"142", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1924025778.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/42-520.jpg",
		250, 322,
		"42-520-en", "Wall Fixture &quot; Nikko1&quot;",
		"20 x 13 x 26,5 cm", "",
		"29.9", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1462750019.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/tischlampe-Nikko-big.jpg",
		250, 293,
		"42-522-en", "Table Lamp &quot;Nikko&quot;",
		"20 x 20 x 28 cm", "",
		"39.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd1009286451.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/nikko-natur-big.jpg",
		250, 320,
		"42-523-en", "Table Lamp&quot; Nikko 2&quot;",
		"22 x 22 x 40 cm", "",
		"44.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1757736295.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/52-525.jpg",
		250, 335,
		"42-525-en", "Table Lamp &quot;Fuku&quot;",
		"18 x 14 x 28,5 cm", "",
		"33.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-1713996177.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/dofu-black-big.jpg",
		250, 275,
		"42-530-en", "Ceiling Fixtures &quot;Dofu&quot;",
		"20,5 x 20,5 x 30,5 cm", "",
		"47.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-387815883.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/akida-black-big.jpg",
		250, 302,
		"42-535-en", "Table Lamp &quot;Akida&quot;",
		"20 x 20 x 50 cm", "",
		"39.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-2131432597.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/42-540.jpg",
		250, 515,
		"42-540-en", "Floor Lamp &quot;Andon&quot;",
		"22 x 22 x 71 cm", "",
		"83.9", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd342297489.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/42-544.jpg",
		250, 188,
		"42-544-en", "Ceiling Fixtures &quot; Nikko&quot;",
		"42 x 42 x 19 cm", "",
		"79.5", "1.6",
		"1", 1,
		"stk", "16",
		"Colour;black Varnish@", "pd1023410215.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/kumo-decke-schwarz-big.jpg",
		250, 232,
		"42-547", "Ceiling Fixtures &quot;Kumo&quot;",
		"35 x 35 x 29,5 cm", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"Colour;black Varnish@", "pd797948067.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/42-560.jpg",
		250, 555,
		"42-560-en", "Table Lamp &quot;Higo&quot;",
		"20 x 20 x 60 cm", "",
		"59.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-2020355873.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/bambus-tisch-big.jpg",
		250, 427,
		"42-570-en", "Table Lamp &quot;Bambus&quot;",
		"18 x 18 x 50 cm", "",
		"49.5", "1.6",
		"1", 1,
		"stk", "16",
		"", "pd-720650715.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/sansui-tisch.jpg",
		250, 333,
		"42-590", "Table Lamp &quot;Sansui Matsu&quot;",
		"30,5 x 16  x 16 cm", "",
		"39.5", "1.6",
		"1", 1,
		"Piece(s)", "16",
		"Type;Sansui Matsu@", "pd-1001405221.htm",
		"", 1,
		"001-4-1", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>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();
			};
		};
