	// 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="83" height="24" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on demand";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/B001 Boeket Sapphire.jpg",
		100, 86,
		"B001", "B001 Sapphire small",
		"Unique colour pallette", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd-360288929.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B002", "B002 Sapphire medium",
		"Unique colour pallette", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd1856089765.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B003", "B003 Sapphire large",
		"Unique colour pallette", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1190022169.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/B011 Boeket Mango.JPG",
		90, 93,
		"B011", "B011 Mango small",
		"Tasteful decoration", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd-34450449.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B012", "B012 Mango medium",
		"Tasteful decoration", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-225953867.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B013", "B013 Mango large",
		"Tasteful decoration", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1191221303.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/B021 Boeket Innocence.JPG",
		100, 96,
		"B021", "B021 Innocence small",
		"Innocent white", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd-542100163.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B022", "B022 Innocence medium",
		"Innocent white", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-2005241421.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B023", "B023 Innocence large",
		"Innocent white", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd60824345.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/B031 Boeket Hope.JPG",
		100, 100,
		"B031", "B031 Hope small",
		"Cheerful mix", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd1234671108.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B032", "B032 Hope medium",
		"Cheerful mix", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-1509033006.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B033", "B033 Hope large",
		"Cheerful mix", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd359550544.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/B041 Boeket Hortence.JPG",
		100, 99,
		"B041", "B041 Hortence small",
		"Surprisingly modern", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd-1146237661.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B042", "B042 Hortence medium",
		"Surprisingly modern", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-432888823.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B043", "B043 Hortence large",
		"Surprisingly modern", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd903884127.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/B051 Boeket Rose.jpg",
		100, 95,
		"B051", "B051 Rose small",
		"Shining charm", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd-1735299419.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B052", "B052 Rose medium",
		"Shining charm", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-1098978981.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B053", "B053 Rose large",
		"Shining charm", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1407908609.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/B061 Boeket Lily.JPG",
		100, 90,
		"B061", "B061 Lily small",
		"Elegant strength", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd-668648169.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B062", "B062 Lily medium",
		"Elegant strength", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-843258595.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B063", "B063 Lily large",
		"Elegant strength", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd-1015405421.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/B071 Boeket Romance.jpg",
		100, 84,
		"B071", "B071 Romance small",
		"Disarmingly original", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd527862009.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B072", "B072 Romance medium",
		"Disarmingly original", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd359422927.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B073", "B073 Romance large",
		"Disarmingly original", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd-1223359851.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/B081 Boeket Vincent.JPG",
		100, 91,
		"B081", "B081 Vincent small",
		"Impressive contrast", "",
		"15", "0.4",
		"1", 1,
		"Pieces", "0",
		"", "pd154033867.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B082", "B082 Vincent medium",
		"Impressive contrast", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd1769942513.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B083", "B083 Vincent large",
		"Impressive contrast", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd-906860153.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B092", "B092 Tulips medium",
		"All the colours of spring!", "",
		"20", "0.6",
		"1", 1,
		"Pieces", "0",
		"", "pd-1335461885.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"B093", "B093 Tulips large",
		"Exuberantly warm ", "",
		"25", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1867172329.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/V01 Vaas Konica.JPG",
		100, 136,
		"V01", "V01 Konica",
		"", "",
		"20", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd804275775.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/V02 Vaas Aquarius.JPG",
		100, 132,
		"V02", "V02 Aquarius",
		"", "",
		"13", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd1556525701.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/V03 Vaas Wicca.JPG",
		100, 142,
		"V03", "V03 Wicca",
		"", "",
		"12.5", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd-274116549.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/V04 Vaas Omnia.JPG",
		100, 148,
		"V04", "V04 Omnia",
		"", "",
		"10", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd-365216543.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/V05 Vaas Jojo.JPG",
		100, 164,
		"V05", "V05 Jojo",
		"", "",
		"10", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd1260048887.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/V06 Vaas Solitude.JPG",
		100, 164,
		"V06", "V06 Solitude",
		"", "",
		"9.5", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd1204028669.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/V07 Vaas Elegance.JPG",
		100, 145,
		"V07", "V07 Elegance",
		"", "",
		"7.5", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd918144883.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/V08 Vaas Goliath.JPG",
		100, 117,
		"V08", "V08 Goliath",
		"", "",
		"6", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd-548509991.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/V09 Vaas Calix.JPG",
		100, 146,
		"V09", "V09 Calix",
		"", "",
		"4", "0.25",
		"2", 1,
		"Pieces", "1",
		"", "pd1143139503.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/V10 Terracotta pot ovaal.JPG",
		80, 97,
		"V10", "V10 Terracotta pot oval",
		"Frost resistant", "",
		"12.5", "2.5",
		"2", 1,
		"Pieces", "1",
		"", "pd1664450165.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/V11 Terracotta pot vierkant.JPG",
		58, 97,
		"V11", "V11 Terracotta pot square",
		"Frost resistant", "",
		"9.5", "2",
		"2", 1,
		"Pieces", "1",
		"", "pd1108786603.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/V12 Terracotta pot rond.JPG",
		62, 97,
		"V12", "V12 Terracotta pot round",
		"Frost resistant", "",
		"8", "2",
		"2", 1,
		"Pieces", "1",
		"", "pd-560060463.htm",
		"", 1,
		"Vazen", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/K101 Kaarsen Drijf.JPG",
		100, 94,
		"K101", "K101 Floating candles - leaf (12 pieces)",
		"For romance in every interior", "",
		"6", "0.1",
		"2", 1,
		"Pieces", "2",
		"", "pd-1271564697.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K102", "K102 Floating candles - flower (12 pieces)",
		"For romance in every interior", "",
		"6", "0.1",
		"2", 1,
		"Pieces", "2",
		"", "pd1670577901.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K103", "K103 Floating candles - heart (12 pieces)",
		"For romance in every interior", "",
		"6", "0.1",
		"2", 1,
		"Pieces", "2",
		"", "pd511382243.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/K111 Kaarsen Fruit.JPG",
		100, 69,
		"K111", "K111 Fruitcandles - pear (6 pieces)",
		"Replaces a real fruitbowl", "",
		"6", "0.2",
		"2", 1,
		"Pieces", "2",
		"", "pd-1293918263.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K112", "K112 Fruitcandles - apple (6 pieces)",
		"Replaces a real fruitbowl", "",
		"6", "0.2",
		"2", 1,
		"Pieces", "2",
		"", "pd-528789729.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K113", "K113 Fruitcandles - orange (6 pieces)",
		"Replaces a real fruitbowl", "",
		"6", "0.2",
		"2", 1,
		"Pieces", "2",
		"", "pd-105879963.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/K121 Kaarsen Geur.JPG",
		100, 111,
		"K121", "K121 Perfumed candles - lavender",
		"In the spice kitchen", "",
		"7.14", "0.2",
		"2", 1,
		"Pieces", "2",
		"", "pd1191825979.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K122", "K122 Perfumed candles - rosemary",
		"In the spice kitchen", "",
		"7.14", "0.2",
		"2", 1,
		"Pieces", "2",
		"", "pd-329806111.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K123", "K123 Perfumed candles - vanilla",
		"In the spice kitchen", "",
		"7.14", "0.2",
		"2", 1,
		"Pieces", "2",
		"", "pd2073523191.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/K131 Kaarsen Pastel.JPG",
		100, 84,
		"K131", "K131 Pastel candles - starfish",
		"Box of 3 floating candles", "",
		"5.95", "0.35",
		"2", 1,
		"Pieces", "2",
		"", "pd1423537917.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K132", "K132 Pastel candles - shell",
		"Box of 3 floating candles", "",
		"5.95", "0.35",
		"2", 1,
		"Pieces", "2",
		"", "pd-883652237.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"K133", "K133 Pastel candles - seastone",
		"Box of 3 floating candles", "",
		"5.95", "0.35",
		"2", 1,
		"Pieces", "2",
		"", "pd1110374617.htm",
		"", 1,
		"Kaarsen", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/X141 Kerst Ballen small.JPG",
		100, 141,
		"X141", "X141 Xmas balls small - silver",
		"Ø 3 cm / per 12", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd-1946300753.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X142", "X142 Xmas balls small - gold",
		"Ø 3 cm / per 12", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd1205022837.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X143", "X143 Xmas balls small - red",
		"Ø 3 cm / per 12", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd-764166229.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X144", "X144 Xmas balls small - clear glass",
		"Ø 3 cm / per 12", "",
		"3.2", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd-1542784559.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/X151 Kerst Ballen medium.JPG",
		100, 151,
		"X151", "X151 Xmas balls medium - silver",
		"Ø 5 cm / per 6", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd175544423.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X152", "X152 Xmas balls medium - gold",
		"Ø 5 cm / per 6", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd234942701.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X153", "X153 Xmas balls medium - red",
		"Ø 5 cm / per 6", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd1646417123.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X154", "X154 Xmas balls medium - clear glass",
		"Ø 5 cm / per 6", "",
		"3.2", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd2107732425.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/X161 Kerst Ballen Large.JPG",
		100, 101,
		"X161", "X161 Xmas balls large - silver",
		"Ø 7 cm / per 4", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd-987057889.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X162", "X162 Xmas balls large - gold",
		"Ø 7 cm / per 4", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd-1950119998.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X163", "X163 Xmas balls large - red",
		"Ø 7 cm / per 4", "",
		"2.5", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd1535146944.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X164", "X164 Xmas balls large - clear glass",
		"Ø 7 cm / per 4", "",
		"3.2", "0.25",
		"2", 1,
		"Pieces", "3",
		"", "pd1139591150.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/X181 Kerst Verlichting.JPG",
		100, 47,
		"X181", "X181 Xmas lights 35 lightbulbs",
		"White, clear, for indoor and outdoor use,230-240 V, KEMA-GS/TÜV approved", "",
		"2.9", "0.2",
		"2", 1,
		"Pieces", "3",
		"", "pd1972139556.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X182", "X182 Xmas lights - 100 minilights",
		"White, clear, for indoor and outdoor use,230-240 V, KEMA-GS/TÜV approved", "",
		"4.25", "0.4",
		"2", 1,
		"Pieces", "3",
		"", "pd-1188407054.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X183", "X183 Xmas lights - 120 lightbulbs",
		"White, clear, for indoor and outdoor use,230-240 V, KEMA-GS/TÜV approved", "",
		"7.9", "0.6",
		"2", 1,
		"Pieces", "3",
		"", "pd861040752.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X184", "X184 Xmas lights - 200 minilights",
		"White, clear, for indoor and outdoor use,230-240 V, KEMA-GS/TÜV approved", "",
		"8.3", "0.75",
		"2", 1,
		"Pieces", "3",
		"", "pd-843281378.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X193", "X193 Xmas tree large",
		"With roots, good needle retention, natural aroma", "",
		"20", "6",
		"1", 1,
		"Pieces", "3",
		"", "pd109868053.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"X192", "X192 Xmas tree medium",
		"With roots, good needle retention, natural aroma", "",
		"15", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd971559247.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/X191 Kerst Boom.JPG",
		100, 133,
		"X191", "X191 Xmas tree small",
		"With roots, good needle retention, natural aroma", "",
		"10", "2.5",
		"1", 1,
		"Pieces", "3",
		"", "pd1195467385.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/X171 Versierde kerstboom.jpg",
		150, 238,
		"X171", "X171 Decorated Xmas tree",
		"Artificial tree, 150 cm, with stand, prelit, suitable for any decor", "",
		"49.59", "4.5",
		"2", 1,
		"Pieces", "3",
		"", "pd1206206714.htm",
		"", 1,
		"Kerst", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/P231 Paaskippen.JPG",
		200, 157,
		"P222", "P231 Easter chickens",
		"Set of 4 decorative chickens", "",
		"16.5", "0.6",
		"2", 1,
		"Pieces", "4",
		"", "pd315537336.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/P221 Eierdopjesset.jpg",
		200, 113,
		"P221", "P221 Easter egg cups",
		"Set of 4 cute chicken egg cups", "",
		"6.6", "0.32",
		"2", 1,
		"Pieces", "4",
		"", "pd-1917959002.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/B091 Tulpen.JPG",
		120, 87,
		"B091", "B091 Tulips small",
		"", "",
		"15", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-739459297.htm",
		"", 1,
		"Boeketten", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/P201 Paaseitjes.jpg",
		125, 117,
		"P201", "P201 Easter eggs small (250 g)",
		"Delicious solid chocolate", "",
		"4", "0.25",
		"1", 1,
		"Pieces", "4",
		"", "pd1225824466.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"P202", "P202 Easter eggs medium (500 g)",
		"Delicious solid chocolate", "",
		"7.5", "0.5",
		"1", 1,
		"Pieces", "4",
		"", "pd-402246832.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/A blanco foto.JPG",
		100, 100,
		"P203", "P203 Easter eggs large (1 kg)",
		"Delicious solid chocolate", "",
		"13.5", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-1733981698.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/P211 Paaskuiken.jpg",
		100, 149,
		"P211", "P211 Easter chick",
		"Decorated milk chocolate", "",
		"7", "0.15",
		"1", 1,
		"Pieces", "4",
		"", "pd-1268795300.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/P212 Paashaas.jpg",
		110, 186,
		"P212", "P212 Easter bunny",
		"Decorated milk chocolate", "",
		"9.5", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd-460765718.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/P213 Paaskip.jpg",
		110, 136,
		"P213", "P213 Easter chicken",
		"Decorated milk chocolate", "",
		"10.5", "0.35",
		"1", 1,
		"Pieces", "4",
		"", "pd557319720.htm",
		"", 1,
		"5", "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();
			};
		};
