	// 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="58" height="16" alt="Artikel merken" 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>Preis vorher:&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>Jetzt nur noch:&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 += "Preis auf Anfrage";
			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/1002-gr.jpg",
		80, 80,
		"1020", "Mineralglaszelle (klein)",
		" ca 20mm", "",
		"3", "0",
		"3", 1,
		"Stück", "1",
		"", "pd-570710673.htm",
		"1::5::10;1::10::20;", 1,
		"1000", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/1003-gr.jpg",
		80, 80,
		"1030-1", "Mineralglaszelle - Chakren-Set (mittel)",
		"7 mittlere Mineralglaszellen + 1 mal &quot;klar&quot;, ca. 30-35 mm", "",
		"30", "0",
		"3", 1,
		"Stück", "1",
		"", "pd122682797.htm",
		"1::2::10;", 1,
		"1000", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/7MZK.jpg",
		80, 80,
		"1020-1", "Mineralglaszelle - Chakren-Set (klein)",
		"ca. 20 mm, tachyomatisiert oder achsgerichtet", "",
		"15", "0",
		"3", 1,
		"Stück", "1",
		"", "pd-1007517077.htm",
		"1::2::10;", 1,
		"1000", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/1003-gr.jpg",
		80, 80,
		"1030", "Mineralglaszelle  (mittel)",
		"tachyomatisiert oder achsgerichtet, ca. 30-35 mm", "",
		"5", "0",
		"3", 1,
		"Stück", "1",
		"", "pd1444575889.htm",
		"1::5::10;1::10::15;", 1,
		"1000", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/8MS.jpg",
		83, 80,
		"1010-1", "Mineralglasstein - Chakren-Set",
		"7 Drops + 1 x klar, tachyonisiert, klein, 12-15 mm", "",
		"10", "0",
		"3", 1,
		"Stück", "1",
		"", "pd832676249.htm",
		"1::2::10;", 1,
		"1000", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/1001-gr.jpg",
		80, 80,
		"1010", "Mineralglasstein",
		"Drops, klein, 12-15mm", "",
		"2", "0",
		"3", 1,
		"Stück", "1",
		"", "pd-2087267395.htm",
		"1::5::10;1::10::15;", 1,
		"1000", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/1011-gr.jpg",
		80, 80,
		"1072", "Glas-Kugel  (5er-Set)",
		", tachyomatisiert, ca. 12 mm", "",
		"7", "0",
		"3", 1,
		"Stück", "1",
		"", "pd-1793778725.htm",
		"1::2::15;", 1,
		"1000", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/IMG_0015.JPG",
		80, 60,
		"1070", "Glas-Kugel",
		"ca. 12 mm", "",
		"2", "0",
		"3", 1,
		"Stück", "1",
		"", "pd-639435483.htm",
		"1::3::15;1::5::20;", 1,
		"1000", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/1090.jpg",
		80, 80,
		"1090", "Eis-Würfel",
		"Die etwas andere Energie-Zelle, ca. 20 x 25 mm", "",
		"2.5", "0",
		"3", 1,
		"Stück", "1",
		"", "pd862351745.htm",
		"1::3::10;1::5::20;", 1,
		"1000", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/2010.jpg",
		29, 80,
		"2010", "Sirius-Silber-Pendel",
		"", "",
		"7.5", "0",
		"3", 1,
		"Stück", "2",
		"", "pd1841833357.htm",
		"1::3::10;", 1,
		"2000", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/2012.jpg",
		39, 80,
		"2012", "Sirius-Silber-Pendel (Edelsteinkugel)",
		"", "",
		"10", "0",
		"3", 1,
		"Stück", "2",
		"", "pd-358933885.htm",
		"1::3::10;", 1,
		"2000", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/images/nopicture.gif",
		74, 50,
		"2020", "Meditations-Pyramide (Seilpyramide 4x4)",
		"auch in anderen Größen erhältlich, alle Teile tachyonisiert", "",
		"45.9", "0",
		"3", 1,
		"Stück", "2",
		"", "pd927608937.htm",
		"", 1,
		"2000", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/images/nopicture.gif",
		74, 50,
		"3020", "Energie-Folie",
		"2 Stück a` ca. 5 x 10 cm", "",
		"3", "0",
		"3", 1,
		"Stück", "3",
		"", "pd-1589112641.htm",
		"1::3::5;1::5::10;", 1,
		"3000", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/3030..jpg",
		80, 80,
		"3030", "Gelenkbandage ",
		"äußerst wirksam durch Stütze und Energie (für Knie, Handgelenk, Fußgelenk)", "",
		"19", "0",
		"3", 1,
		"Stück", "3",
		"", "pd-1041841477.htm",
		"1::2::10;", 1,
		"3000", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/3040.jpg",
		80, 53,
		"3040", "Moor-Wärmekissen",
		"", "",
		"9.9", "0",
		"3", 1,
		"Stück", "3",
		"", "pd-14022157.htm",
		"", 1,
		"3000", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/3045.jpg",
		80, 53,
		"3045", "Kirschkernkissen",
		"", "",
		"9.9", "0",
		"3", 1,
		"Stück", "3",
		"", "pd2054319449.htm",
		"", 1,
		"3000", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/3050-alle.jpg",
		80, 80,
		"3050", "Pipettenfläschchen  (10ml)",
		"", "",
		"5", "0",
		"3", 1,
		"Stück", "3",
		"", "pd371445803.htm",
		"1::3::10;", 1,
		"3000", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Pipettenfl.JPG",
		80, 71,
		"3050-1", "Pipettenfläschchen  (30ml)",
		"", "",
		"5.9", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1475051089.htm",
		"1::3::5;1::5::10;", 1,
		"3000", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Pipettenfl.JPG",
		80, 71,
		"3050-2", "Pipettenfläschchen  (50ml)",
		"", "",
		"7", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1632415975.htm",
		"1::3::5;1::5::10;", 1,
		"3000", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/3053.jpg",
		80, 80,
		"3053", "Globoli-Fläschchen  (5ml)",
		"", "",
		"3.9", "0",
		"3", 1,
		"Stück", "3",
		"", "pd-2003387027.htm",
		"1::3::5;1::5::10;", 1,
		"3000", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/images/nopicture.gif",
		74, 50,
		"3053-1", "Globoli-Fläschchen  (10ml)",
		"", "",
		"4.5", "0",
		"3", 1,
		"Stück", "3",
		"", "pd-221317789.htm",
		"1::3::5;1::5::10;", 1,
		"3000", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/3055.jpg",
		80, 80,
		"3055", "Globoli-Röhrchen",
		"", "",
		"3.9", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1997604425.htm",
		"1::5::10;", 1,
		"3000", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/images/nopicture.gif",
		74, 50,
		"6010-1", "Halsband für Hunde (bis 50cm)",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "6",
		"", "pd-1460898587.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/images/nopicture.gif",
		74, 50,
		"6010-2", "Halsband für Hunde (über 50cm)",
		"", "",
		"13.5", "0",
		"3", 1,
		"Stück", "6",
		"", "pd-320710245.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/images/nopicture.gif",
		74, 50,
		"6020", "Halsband für Katzen (bis 20cm)",
		"", "",
		"10", "0",
		"3", 1,
		"Stück", "6",
		"", "pd1442112833.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/images/nopicture.gif",
		74, 50,
		"6020-1", "Halsband für Katzen (über 20 cm)",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "6",
		"", "pd1658990935.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/images/nopicture.gif",
		74, 50,
		"7010", "Gegenstände bis 10 x 10 cm",
		"", "",
		"5", "0",
		"3", 1,
		"Stück", "7",
		"", "pd-1275073081.htm",
		"", 1,
		"7000", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/images/nopicture.gif",
		74, 50,
		"7020", "Gegenstände bis 20 x 20 cm",
		"", "",
		"7.5", "0",
		"3", 1,
		"Stück", "7",
		"", "pd-231488179.htm",
		"", 1,
		"7000", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/images/nopicture.gif",
		74, 50,
		"7030", "Gegenstände bis 30 x 50 cm",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "7",
		"", "pd-2110341053.htm",
		"", 1,
		"7000", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/images/nopicture.gif",
		74, 50,
		"7050", "Gegenstände für Babys/Kleinkinder",
		"Auch mehrere Artikel bis zu einer Gesamtgröße von 30 x 50 cm", "",
		"7.5", "0",
		"3", 1,
		"Stück", "7",
		"", "pd-1829942231.htm",
		"", 1,
		"7000", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/4020.jpg",
		80, 80,
		"4020", "Energie-Brecher   Kugel oder Tropfen",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "4",
		"", "pd-713095746.htm",
		"1::3::10;", 1,
		"4000", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/images/nopicture.gif",
		74, 50,
		"4050", "Mineralglaskugel",
		"", "",
		"15", "0",
		"3", 1,
		"Stück", "4",
		"", "pd-2067495960.htm",
		"1::3::10;", 1,
		"4000", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/MK.jpg",
		80, 80,
		"4063", "Marmor-Kugel",
		"", "",
		"7", "0",
		"3", 1,
		"Stück", "4",
		"", "pd-981926462.htm",
		"1::3::10;", 1,
		"4000", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/4066.jpg",
		52, 80,
		"4066", "Marmor-Ei",
		"(Sonder-Angebot)", "",
		"5", "0",
		"3", 1,
		"Stück", "4",
		"", "pd1095426496.htm",
		"1::3::10;", 1,
		"4000", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/5020.jpg",
		53, 80,
		"5020", "Paua-Muschel  Herzanhänger",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "5",
		"", "pd-917525044.htm",
		"", 1,
		"5000", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/5023.jpg",
		65, 80,
		"5023", "Paua-Muschel  Delfinanhänger",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "5",
		"", "pd1079113946.htm",
		"", 1,
		"5000", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/5030.jpg",
		80, 63,
		"5030", "Ohrstecker Delfin  (Sterlinsilber)",
		"", "",
		"7", "0",
		"3", 1,
		"Stück", "5",
		"", "pd-2041728360.htm",
		"", 1,
		"5000", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/5033.jpg",
		80, 58,
		"5033", "Ohrstecker  Yin&amp;Yang  (Sterlinsilber)",
		"", "",
		"7", "0",
		"3", 1,
		"Stück", "5",
		"", "pd-1842005370.htm",
		"", 1,
		"5000", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/5040-I.JPG",
		59, 80,
		"5040", "Silberspirale mit Edelstein",
		"", "",
		"10", "0",
		"3", 1,
		"Stück", "5",
		"", "pd-682623964.htm",
		"", 1,
		"5000", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/5050-1.jpg",
		80, 80,
		"5050", "Energie-Stein-Anhänger (verschiedene)",
		"Bestellen Sie einfach mit der entsprechenden Nummer", "",
		"12", "0",
		"3", 1,
		"Stück", "5",
		"", "pd-873378062.htm",
		"", 1,
		"5000", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/4070.jpg",
		80, 80,
		"4070", "Glas-Delfin  (mittel)",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "4",
		"", "pd780818032.htm",
		"", 1,
		"4000", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/Delfin gr.-Shop.jpg",
		80, 80,
		"4073", "Glas-Delfin  (groß)",
		"", "",
		"15", "0",
		"3", 1,
		"Stück", "4",
		"", "pd1015996958.htm",
		"", 1,
		"4000", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/4080.jpg",
		80, 80,
		"4080", "Glashorn-Vase  (klein)",
		"", "",
		"5", "0",
		"3", 1,
		"Stück", "4",
		"", "pd459623804.htm",
		"1::3::10;", 1,
		"4000", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/4080-1.jpg",
		80, 80,
		"4080-1", "Glashorn-Vase  (mittel)",
		"", "",
		"7.5", "0",
		"3", 1,
		"Stück", "4",
		"", "pd-1906745334.htm",
		"1::3::10;", 1,
		"4000", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/3057.jpg",
		53, 80,
		"3057", "Apotheker-Flasche  (250ml)",
		"Tachyomatisiert zum ständigen energetisieren des Inhalts", "",
		"12", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1451947190.htm",
		"1::3::10;", 1,
		"3000", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/CD-Cover_Organentnahme_rund.jpg",
		70, 70,
		"9015", "Organentnahme nach Hirntod",
		"eBook auf CD", "",
		"19", "0",
		"3", 1,
		"Stück", "8",
		"", "pd-1735323299.htm",
		"", 1,
		"9000", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/images/nopicture.gif",
		74, 50,
		"9050", "Hypnogene Gedankenbilder",
		"", "",
		"5", "0",
		"3", 1,
		"Stück", "8,3",
		"", "pd1322461907.htm",
		"", 1,
		"9000,3000", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/images/nopicture.gif",
		74, 50,
		"9070", "Seminar-Audio-CD  L.W. Göring",
		"über 17 Stunden", "",
		"19", "0",
		"3", 1,
		"Stück", "8",
		"", "pd-337643819.htm",
		"", 1,
		"9000", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/images/nopicture.gif",
		74, 50,
		"9011", "Apokalypse Seele-CD",
		"Das A-Omega Projekt   eBook", "",
		"19", "0",
		"3", 1,
		"Stück", "8",
		"", "pd675538481.htm",
		"", 1,
		"9000", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/Shop-PyEn.jpg",
		58, 80,
		"9013", "Das Geheimnis der Pyramiden-Energie",
		"eBook auf CD", "",
		"19", "0",
		"3", 1,
		"Stück", "8",
		"", "pd392092615.htm",
		"", 1,
		"9000", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/3070.jpg",
		80, 76,
		"3070", "JuJu-Nuss",
		"Der Samen des JuJu-Baumes  (klein)", "",
		"5", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1526826798.htm",
		"1::2::10;", 1,
		"3000", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/3070-1.jpg",
		80, 56,
		"3070-1", "JuJu-Nuss ",
		"Der Samen des JuJu-Baumes  (groß)", "",
		"7.5", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1968879884.htm",
		"1::2::10;", 1,
		"3000", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/3060.jpg",
		71, 80,
		"3060", "Energie-CD´s, 3er Set",
		"zur E-Smog-Regulation", "",
		"9", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1141550259.htm",
		"1::2::10;", 1,
		"3000", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/3035.jpg",
		80, 80,
		"3035", "Handgelenk-Stütze",
		"", "",
		"12", "0",
		"3", 1,
		"Stück", "3",
		"", "pd1513541145.htm",
		"1::2::10;", 1,
		"3000", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/1060.jpg",
		80, 80,
		"1060", "3 Glaszellen, unsortiert",
		" tachyomatisiert oder achsgerichtet, ca. 30 mm", "",
		"5", "0",
		"3", 1,
		"Stück", "1",
		"", "pd1142161673.htm",
		"1::2::5;1::3::10;", 1,
		"1000", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/images/nopicture.gif",
		74, 50,
		"9014", "Phänomen LEBEN",
		"Die Suche nach der Seele ist zu Ende", "",
		"19", "0",
		"3", 1,
		"Stück", "8",
		"", "pd1204837467.htm",
		"", 1,
		"9000", "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>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</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();
			};
		};
