	// 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="108" height="34" 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>&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>&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 += "";
			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, "",
		0, 0,
		"01", "Venison Curry",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"Processed;Processed@", "pd1244531998.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[1] = new Element(
		1, "",
		0, 0,
		"02", "Honey drop scones",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1244645440.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[2] = new Element(
		2, "",
		0, 0,
		"03", "The best bangers and beans",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd474933358.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[3] = new Element(
		3, "",
		0, 0,
		"04", "Ginder and honey pudding",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-754713524.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[4] = new Element(
		4, "",
		0, 0,
		"05", "Roast plum and caramel brandy souffle",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd151579482.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[5] = new Element(
		5, "",
		0, 0,
		"06", "Raspberry and fudge charlotte",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-807933672.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[6] = new Element(
		6, "",
		0, 0,
		"07", "Roast pumpkin soup with walnut relish and game livers on toast",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd1096045830.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[7] = new Element(
		7, "",
		0, 0,
		"08", "Fig and honey tart",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1360960164.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[8] = new Element(
		8, "",
		0, 0,
		"11", "Honey flapjacks",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1594630928.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[9] = new Element(
		9, "",
		0, 0,
		"13", "Honey and hazelnut cake",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1658703006.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[10] = new Element(
		10, "",
		0, 0,
		"14", "Barbecue Spareribs ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1255654404.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[11] = new Element(
		11, "",
		0, 0,
		"15", "Honey &amp; Mustard Pork Steaks with Glazed Apple Rings ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-331353462.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[12] = new Element(
		12, "",
		0, 0,
		"16", "Honey Lamb Chops ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd973931464.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[13] = new Element(
		13, "",
		0, 0,
		"17", "Pear and Almond Tart ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1244713554.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[14] = new Element(
		14, "",
		0, 0,
		"18", "Matts Honey and Banana Pudding ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1244715226.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[15] = new Element(
		15, "",
		0, 0,
		"19", "Easy Honey and Lemon Cheesecake ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1563979112.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[16] = new Element(
		16, "",
		0, 0,
		"20", "Stuffed Peaches ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd247601798.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[17] = new Element(
		17, "",
		0, 0,
		"21", "Microwave Honey Cheesecake ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1641554908.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[18] = new Element(
		18, "",
		0, 0,
		"22", "Balkan Honey Tart ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1307824398.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[19] = new Element(
		19, "",
		0, 0,
		"23", "Blackberry, Apple and honey Crumble ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-241158544.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[20] = new Element(
		20, "",
		0, 0,
		"24", "Normandy Tart ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1323843042.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[21] = new Element(
		21, "",
		0, 0,
		"25", "Ballantrae Honey Pudding ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd177810812.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[22] = new Element(
		22, "",
		0, 0,
		"26", "Honey Fruit Cobbler ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-1003470838.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[23] = new Element(
		23, "",
		0, 0,
		"27", "Honey Nut Boats ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1987841352.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[24] = new Element(
		24, "",
		0, 0,
		"28", "Honey Prune Pudding ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1854919862.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[25] = new Element(
		25, "",
		0, 0,
		"29", "Honey Sultana Pudding ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd708764116.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[26] = new Element(
		26, "",
		0, 0,
		"30", "Iced Melon with Hot Ginger Sauce ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1087073314.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[27] = new Element(
		27, "",
		0, 0,
		"31", "Honey and Nut Custards ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-1162840288.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[28] = new Element(
		28, "",
		0, 0,
		"32", "Baked Honeyed Apples ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd2046734926.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[29] = new Element(
		29, "",
		0, 0,
		"33", "Peach Christina ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd293886252.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[30] = new Element(
		30, "",
		0, 0,
		"34", "Honey Sundae ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1941443386.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[31] = new Element(
		31, "",
		0, 0,
		"35", "Jamaican Banana ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-350301192.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[32] = new Element(
		32, "",
		0, 0,
		"36", "Yoghurt &quot;Petit Suisse&quot; Cheesecake ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd77904614.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"37", "Crustless Pumpkin Pie ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd690025348.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"38", "Prune Cream ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-973302446.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"39", "Persian Marble Rhubarb ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-978025520.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[36] = new Element(
		36, "",
		0, 0,
		"40", "Honey Ice Cream ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-408007042.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[37] = new Element(
		37, "",
		0, 0,
		"41", "Whisky and Honey Ice Cream ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-208138020.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[38] = new Element(
		38, "",
		0, 0,
		"43", "Honey &amp; Mustard Pork Steaks with Glazed Apple Rings ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1226119512.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[39] = new Element(
		39, "",
		0, 0,
		"45", "Honey Chicken ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd45682996.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[40] = new Element(
		40, "",
		0, 0,
		"46", "Baked Lentils with Honey ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd931310210.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[41] = new Element(
		41, "",
		0, 0,
		"47", "Xmas Stuffing ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd658988160.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[42] = new Element(
		42, "",
		0, 0,
		"48", "Chinatown Chicken Treat ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd741971630.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[43] = new Element(
		43, "",
		0, 0,
		"49", "Scrummy Honey Drummy ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd488592524.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[44] = new Element(
		44, "",
		0, 0,
		"50", "Honey Lemon Chicken ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd2016214426.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[45] = new Element(
		45, "",
		0, 0,
		"51", "Sweet and Sour Pork ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-119847592.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"52", "Honied Spare rib ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd489687878.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[47] = new Element(
		47, "",
		0, 0,
		"1", "A Word from Eden Organic Honey",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1245166291.htm",
		"", 1,
		"Business ", "0",
		 0)
	
		Entry[48] = new Element(
		48, "",
		0, 0,
		"2", "Weight Loss",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd-1287714503.htm",
		"", 1,
		"Weightloss", "0",
		 0)
	
		Entry[49] = new Element(
		49, "",
		0, 0,
		"53", "Honey Orange Chicken ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1817036060.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[50] = new Element(
		50, "",
		0, 0,
		"54", "Polynesian Pork Roast ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd234924978.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[51] = new Element(
		51, "",
		0, 0,
		"55", "Honey Barbecue Chicken ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd885260592.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[52] = new Element(
		52, "",
		0, 0,
		"56", "Meatballs with Sweet and Sour Sauce ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1468822818.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[53] = new Element(
		53, "",
		0, 0,
		"57", "Roast Lamb ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-953867204.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"58", "Chicken with Almonds and Honey ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1973414710.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[55] = new Element(
		55, "",
		0, 0,
		"59", "Honey and Ginger Drumsticks ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-391450616.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[56] = new Element(
		56, "",
		0, 0,
		"60", "Honeyed Roast Pork",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-313756298.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"63", "Earl Grey and Honey Sorbet",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd876966368.htm",
		"", 1,
		"Deserts", "0",
		 0)
	
		Entry[58] = new Element(
		58, "",
		0, 0,
		"64", "Honey Fruit Cake",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd468658958.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[59] = new Element(
		59, "",
		0, 0,
		"65", "Honey Rich Fruit Cake",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1485537300.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[60] = new Element(
		60, "",
		0, 0,
		"66", "Sultana &amp; Cherry Honey Cake",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1398302726.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[61] = new Element(
		61, "",
		0, 0,
		"67", "Honey Cake",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-2032867656.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[62] = new Element(
		62, "",
		0, 0,
		"68", "Honey Apple Cake",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-285471834.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[63] = new Element(
		63, "",
		0, 0,
		"69", "Six Honey Buns with Honey Frosting ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1238126012.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[64] = new Element(
		64, "",
		0, 0,
		"70", "Jo Chon Bau pork in bundles",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd2049995282.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[65] = new Element(
		65, "",
		0, 0,
		"71", "Honey Cakes ",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd212250256.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[66] = new Element(
		66, "",
		0, 0,
		"72", "A Honey of a Breakfast",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-721455298.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[67] = new Element(
		67, "",
		0, 0,
		"73", "All American Fruit-Salad Breakfast",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-1600624740.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[68] = new Element(
		68, "",
		0, 0,
		"74", "Honey Orange Pumpkin Pie",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1350993706.htm",
		"", 1,
		"Cakes", "0",
		 0)
	
		Entry[69] = new Element(
		69, "",
		0, 0,
		"75", "Oriental Chicken and Papaya Salad with Honey Dressing",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd1284778344.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[70] = new Element(
		70, "",
		0, 0,
		"001", "Allergies",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd1245232135.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[71] = new Element(
		71, "",
		0, 0,
		"002 ", "Coughs and Colds",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd1070218637.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[72] = new Element(
		72, "",
		0, 0,
		"003", "Cuts and Burns",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-909446525.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[73] = new Element(
		73, "",
		0, 0,
		"004", "Disease Prevention",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-1503803287.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[74] = new Element(
		74, "",
		0, 0,
		"005", "Dry Skin",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-102405953.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[75] = new Element(
		75, "",
		0, 0,
		"006", "Eczema",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-1401251579.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[76] = new Element(
		76, "",
		0, 0,
		"007", "Fertility",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-238445893.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[77] = new Element(
		77, "",
		0, 0,
		"009", "Hair Conditioner",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-1112634527.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[78] = new Element(
		78, "",
		0, 0,
		"010", "Indigestion/ Ulcers",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd262718583.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[79] = new Element(
		79, "",
		0, 0,
		"011", "Skin Infections",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd1828535165.htm",
		"", 1,
		"Honey Reme", "0",
		 0)
	
		Entry[80] = new Element(
		80, "",
		0, 0,
		"0000", "Apple Butter",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1248533304.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[81] = new Element(
		81, "",
		0, 0,
		"0001", "Baked Apples with Caramel Crunch",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1832866854.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[82] = new Element(
		82, "",
		0, 0,
		"0002", "Blueberry-Orange Muffins",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-1531302204.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[83] = new Element(
		83, "",
		0, 0,
		"0003", "Grilled Pink Grapefruit",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-1124253038.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[84] = new Element(
		84, "",
		0, 0,
		"0005", "Cranberry Scones",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1878127376.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[85] = new Element(
		85, "",
		0, 0,
		"0006", "Mexican Omelet",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd2084458430.htm",
		"", 1,
		"Breakfast", "0",
		 0)
	
		Entry[86] = new Element(
		86, "",
		0, 0,
		"0008", "Mediterranean Style Grilled Prawns",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd1248534048.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[87] = new Element(
		87, "",
		0, 0,
		"0009", "Whole Fish Foil Baked in Embers",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd2029367630.htm",
		"", 1,
		"Main Meals", "0",
		 0)
	
		Entry[88] = new Element(
		88, "",
		0, 0,
		"0010", "Skewered Beef with Lime, Ginger and Honey",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-1334874068.htm",
		"", 1,
		"Main Meals", "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></TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap></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();
			};
		};