	// 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="114" height="14" 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 += "<tr><td>Preis inkl. MwSt zzgl. Versandkosten</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/HO A4053.jpg",
		100, 104,
		"HO A4053", "Hohner Bravo II 48 rot (auch in schwarz, weiß, blau)",
		"", "Hohner",
		"760", "0",
		"1", 1,
		"Stück", "10,25",
		"Farbe;Rot@", "pd950652407.htm",
		"", 1,
		"1.2.3,212", "0",
		 2)
	
		Entry[1] = new Element(
		1, "assets/thumb/HO A4062.jpg",
		100, 96,
		"HO A4062", "Hohner Bravo III 72 schwarz (auch in rot, blau)",
		"", "Hohner",
		"1050", "7.4",
		"1", 1,
		"Stück", "10,28",
		"Farbe;Schwarz@", "pd1434417185.htm",
		"", 1,
		"1.2.3,222", "0",
		 2)
	
		Entry[2] = new Element(
		2, "assets/thumb/HO A4072.jpg",
		100, 89,
		"HO A4072", "Hohner Bravo III 96 schwarz (auch in rot)",
		"", "Hohner",
		"1240", "8.6",
		"1", 1,
		"Stück", "10,31",
		"Farbe;Schwarz@", "pd1549850849.htm",
		"", 1,
		"1.2.3,232", "0",
		 2)
	
		Entry[3] = new Element(
		3, "assets/thumb/HO A4082.jpg",
		100, 75,
		"HO A4082", "Hohner Bravo III 120 schwarz (auch in rot)",
		"", "Hohner",
		"1350", "0",
		"1", 1,
		"Stück", "10,34",
		"Farbe;Schwarz@", "pd299421865.htm",
		"", 1,
		"1.2.3,242", "0",
		 2)
	
		Entry[4] = new Element(
		4, "assets/thumb/HO A4096.jpg",
		100, 103,
		"HO A4096", "Hohner Bravo II 60 schwarz (auch in rot)",
		"", "Hohner",
		"870", "0",
		"1", 1,
		"Stück", "10,25",
		"Farbe;Schwarz@", "pd777604177.htm",
		"", 1,
		"1.2.3,212", "0",
		 2)
	
		Entry[5] = new Element(
		5, "assets/thumb/HO A4363.jpg",
		100, 83,
		"HO A4363", "Hohner Amica III 72 rot (auch in schwarz, blau, weiss)",
		"", "Hohner",
		"1540", "7.4",
		"1", 1,
		"Stück", "8,28",
		"Farbe;Rot@", "pd1249682160.htm",
		"", 1,
		"1.2.1,222", "0",
		 2)
	
		Entry[6] = new Element(
		6, "assets/thumb/HO A1123.jpg",
		100, 99,
		"HO A1123", "Hohner Concerto III T ",
		"", "Hohner",
		"1499", "7.4",
		"1", 1,
		"Stück", "11,28",
		"Farbe;Rot@", "pd-1210015967.htm",
		"", 1,
		"1.2.4.1,222", "0",
		 2)
	
		Entry[7] = new Element(
		7, "assets/thumb/HO A4322.jpg",
		100, 89,
		"HO A4322", "Hohner Amica IV 96",
		"", "Hohner",
		"2170", "7.4",
		"1", 1,
		"Stück", "8,31",
		"Farbe;Schwarz@", "pd170776081.htm",
		"", 1,
		"1.2.1,232", "0",
		 2)
	
		Entry[8] = new Element(
		8, "assets/thumb/HO A4332.jpg",
		100, 93,
		"HO A4332", "Hohner Amica IV 120",
		"", "Hohner",
		"2500", "7.4",
		"1", 1,
		"Stück", "8,34",
		"Farbe;Schwarz@", "pd-950981376.htm",
		"", 1,
		"1.2.1,242", "0",
		 2)
	
		Entry[9] = new Element(
		9, "assets/thumb/HO A2112.jpg",
		100, 76,
		"HO A2112", "Hohner Morino IV 96",
		"", "Hohner",
		"5350", "7.4",
		"1", 1,
		"Stück", "15,31",
		"Farbe;Schwarz@", "pd1249776175.htm",
		"", 1,
		"1.2.8,232", "0",
		 2)
	
		Entry[10] = new Element(
		10, "assets/thumb/HO A2122.jpg",
		100, 83,
		"HO A2122", "Hohner Morino IV 120",
		"", "Hohner",
		"5940", "7.4",
		"1", 1,
		"Stück", "15,34,31",
		"Farbe;Schwarz@", "pd1249852363.htm",
		"", 1,
		"1.2.8,242,232", "0",
		 2)
	
		Entry[11] = new Element(
		11, "assets/thumb/BU 260 CHC.jpg",
		100, 77,
		"BU 260 CHC", "Bugari Championcassotto Mod. 260/CHC schwarz (auch in weiß)",
		"", "Bugari",
		"5700", "11.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd1481786245.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[12] = new Element(
		12, "assets/thumb/HO A2132.jpg",
		100, 85,
		"HO A2132", "Hohner Morino V 120",
		"", "Hohner",
		"6680", "7.4",
		"1", 1,
		"Stück", "15,34,31",
		"Farbe;Schwarz@", "pd190019012.htm",
		"", 1,
		"1.2.8,242,232", "0",
		 2)
	
		Entry[13] = new Element(
		13, "assets/thumb/HO A2162.jpg",
		100, 77,
		"HO A2162", "Hohner Morino V 120 de Luxe",
		"", "Hohner",
		"8440", "7.4",
		"1", 1,
		"Stück", "15,34,31",
		"Farbe;Schwarz@", "pd1250372611.htm",
		"", 1,
		"1.2.8,242,232", "0",
		 2)
	
		Entry[14] = new Element(
		14, "assets/thumb/HO A2152.jpg",
		100, 78,
		"HO A2152", "Hohner Morino IV 120 &quot;de Luxe&quot;",
		"", "Hohner",
		"7900", "7.4",
		"1", 1,
		"Stück", "15,34,31",
		"Farbe;Schwarz@", "pd1250446249.htm",
		"", 1,
		"1.2.8,242,232", "0",
		 2)
	
		Entry[15] = new Element(
		15, "assets/thumb/HO A2136.jpg",
		100, 74,
		"HO A2136", "Hohner Morino V 120 Slavko Avsenik Retro",
		"", "Hohner",
		"6960", "7.4",
		"1", 1,
		"Stück", "15,31,34",
		"Farbe;Schwarz@", "pd-1859760838.htm",
		"", 1,
		"1.2.8,232,242", "0",
		 2)
	
		Entry[16] = new Element(
		16, "assets/thumb/HO A2114.jpg",
		100, 79,
		"HO A2114", "Hohner Morino IV 96 Tremolo red to gold",
		"", "Hohner",
		"6110", "7.4",
		"1", 1,
		"Stück", "15,31",
		"Farbe;Rot@", "pd683179181.htm",
		"", 1,
		"1.2.8,232", "0",
		 2)
	
		Entry[17] = new Element(
		17, "assets/thumb/HO A2113.jpg",
		100, 67,
		"HO A2113", "Hohner Morino IV 96 Tremolo schwarz",
		"", "Hohner",
		"5940", "11",
		"1", 1,
		"Stück", "15,31",
		"Farbe;Schwarz@", "pd251976825.htm",
		"", 1,
		"1.2.8,232", "0",
		 2)
	
		Entry[18] = new Element(
		18, "assets/thumb/HO A2123.jpg",
		100, 83,
		"HO A2123", "Hohner Morino IV 120 Tremolo",
		"", "Hohner",
		"6590", "11.6",
		"1", 1,
		"Stück", "15,31,34",
		"Farbe;Schwarz@", "pd1505933673.htm",
		"", 1,
		"1.2.8,232,242", "0",
		 2)
	
		Entry[19] = new Element(
		19, "assets/thumb/HO A2128.jpg",
		100, 75,
		"HO A2128", "Hohner Morino IV 120 Tremolo cyan to purple",
		"", "Hohner",
		"6730", "7.4",
		"1", 1,
		"Stück", "15,31,34",
		"Farbe;Purpur@", "pd1094141683.htm",
		"", 1,
		"1.2.8,232,242", "0",
		 2)
	
		Entry[20] = new Element(
		20, "assets/thumb/HO A2115.jpg",
		100, 76,
		"HO A2113", "Hohner Morino IV 96 &quot;Slavko Avsenik Retro&quot;",
		"", "Hohner",
		"6110", "7.4",
		"1", 1,
		"Stück", "15,31",
		"Farbe;Schwarz@", "pd21745251.htm",
		"", 1,
		"1.2.8,232", "0",
		 2)
	
		Entry[21] = new Element(
		21, "assets/thumb/HO A2125.jpg",
		100, 71,
		"HO A2125", "Hohner Morino IV 120 &quot;Slavko Avsenik Retro&quot;",
		"", "Hohner",
		"6900", "11.6",
		"1", 1,
		"Stück", "15,31,34",
		"Farbe;Schwarz@", "pd-1550671779.htm",
		"", 1,
		"1.2.8,232,242", "0",
		 2)
	
		Entry[22] = new Element(
		22, "assets/thumb/HO A2129.jpg",
		100, 77,
		"HO A2129", "Hohner Morino IV 120 C",
		"", "Hohner",
		"7680", "7.4",
		"1", 1,
		"Stück", "15,37",
		"Farbe;Schwarz@", "pd-546112824.htm",
		"", 1,
		"1.2.8,252", "0",
		 2)
	
		Entry[23] = new Element(
		23, "assets/images/nopicture.gif",
		100, 60,
		"HO A2159", "Hohner Morino IV 120 C de Luxe",
		"", "Hohner",
		"8830", "7.4",
		"1", 1,
		"Stück", "15,37",
		"Farbe;Schwarz@", "pd1943687354.htm",
		"", 1,
		"1.2.8,252", "0",
		 2)
	
		Entry[24] = new Element(
		24, "assets/thumb/HO A2158.jpg",
		100, 78,
		"HO A2158", "Hohner Morino IV 120 C 45 de Luxe schwarz",
		"", "Hohner",
		"9340", "7.4",
		"1", 1,
		"Stück", "15,37",
		"Farbe;Schwarz@", "pd-1256571300.htm",
		"", 1,
		"1.2.8,252", "0",
		 2)
	
		Entry[25] = new Element(
		25, "assets/images/nopicture.gif",
		100, 60,
		"HO A2157", "Hohner Morino IV 120 C45 Bayan",
		"", "Hohner",
		"14610", "7.4",
		"1", 1,
		"Stück", "15,37",
		"Farbe;Schwarz@", "pd-757443538.htm",
		"", 1,
		"1.2.8,252", "0",
		 2)
	
		Entry[26] = new Element(
		26, "assets/images/nopicture.gif",
		100, 60,
		"PI17006010", "Pigini Peter Pan (sw)",
		"", "Pigini",
		"999999", "0",
		"1", 1,
		"Stück", "17,37",
		"Farbe;Schwarz@", "pd1250550386.htm",
		"", 1,
		"6500,252", "0",
		 1)
	
		Entry[27] = new Element(
		27, "assets/thumb/HO A4153.jpg",
		100, 72,
		"HO A4153", "Hohner Nova II 48 C-Griff rot (auch in schwarz, weiß, blau)",
		"", "Hohner",
		"1000", "0",
		"1", 1,
		"Stück", "14,26",
		"Farbe;Rot@", "pd1250632121.htm",
		"", 1,
		"1.2.7,215", "0",
		 2)
	
		Entry[28] = new Element(
		28, "assets/thumb/HO A4253.jpg",
		100, 72,
		"HO A4253", "Hohner Nova II 48 B-Griff (rot, schwarz, weiss, blau)",
		"", "Hohner",
		"1000", "5",
		"1", 1,
		"Stück", "14,26",
		"Farbe;Rot@", "pd-1493214285.htm",
		"", 1,
		"1.2.7,215", "0",
		 2)
	
		Entry[29] = new Element(
		29, "assets/thumb/HO A4172.jpg",
		100, 73,
		"HO A4172", "Hohner Nova III 96 C-Griff schwarz (auch in rot)",
		"", "Hohner",
		"1520", "7.6",
		"1", 1,
		"Stück", "14,32",
		"Farbe;Schwarz@", "pd-1684707831.htm",
		"", 1,
		"1.2.7,235", "0",
		 2)
	
		Entry[30] = new Element(
		30, "assets/thumb/HO A4272.jpg",
		100, 73,
		"HO A4272", "Hohner Nova III 96 B-Griff schwarz (auch in rot)",
		"", "Hohner",
		"1520", "7.6",
		"1", 1,
		"Stück", "14,32",
		"Farbe;Schwarz@", "pd-1939044433.htm",
		"", 1,
		"1.2.7,235", "0",
		 2)
	
		Entry[31] = new Element(
		31, "assets/images/nopicture.gif",
		100, 60,
		"HO A1233", "Hohner Nova II 60A C-Griff rot (auch in schwarz, weiss, blau)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "14,26",
		"Farbe;Rot@", "pd-777585384.htm",
		"", 1,
		"1.2.7,215", "0",
		 2)
	
		Entry[32] = new Element(
		32, "assets/thumb/HO A1242.jpg",
		100, 77,
		"HO A1242", "Hohner Nova II 80 C-Griff schwarz (auch in rot, weiss, blau)",
		"", "Hohner",
		"1500", "0",
		"1", 1,
		"Stück", "14,32,29",
		"Farbe;Schwarz@", "pd854804794.htm",
		"", 1,
		"1.2.7,235,225", "0",
		 2)
	
		Entry[33] = new Element(
		33, "assets/thumb/HO A4146.jpg",
		100, 67,
		"HO A4146", "Hohner Nova I 49 F C-Griff (schwarz)",
		"", "Hohner",
		"1000", "4.4",
		"1", 1,
		"Stück", "14,38",
		"Farbe;Schwarz@", "pd1781851691.htm",
		"", 1,
		"1.2.7,255", "0",
		 2)
	
		Entry[34] = new Element(
		34, "assets/thumb/HO A4246.jpg",
		100, 67,
		"HO A4246", "Hohner Nova I 49 F B-Griff (schwarz)",
		"", "Hohner",
		"1000", "4.4",
		"1", 1,
		"Stück", "14,38",
		"Farbe;Schwarz@", "pd-1114319738.htm",
		"", 1,
		"1.2.7,255", "0",
		 2)
	
		Entry[35] = new Element(
		35, "assets/thumb/HO A3302.jpg",
		100, 95,
		"HO A3302", "Hohner Wiener Modell 114 C",
		"", "",
		"700", "1.6",
		"1", 1,
		"Stück", "16,42",
		"", "pd1232677043.htm",
		"", 1,
		"1.2.9,286", "0",
		 2)
	
		Entry[36] = new Element(
		36, "assets/images/nopicture.gif",
		100, 60,
		"BU 100 J", "Bugari Juniorfisa Mod. 100/J",
		"", "Bugari",
		"1700", "5.7",
		"1", 1,
		"Stück", "25,3",
		"Farbe;Schwarz@", "pd244095463.htm",
		"", 1,
		"212,3510", "0",
		 3)
	
		Entry[37] = new Element(
		37, "assets/thumb/BU 115 J.jpg",
		100, 102,
		"BU 115 J BL", "Bugari Juniorfisa Mod. 115/J",
		"", "Bugari",
		"2100", "7.4",
		"1", 1,
		"Stück", "28,3",
		"Farbe;Blau@", "pd-800261126.htm",
		"", 1,
		"222,3510", "0",
		 3)
	
		Entry[38] = new Element(
		38, "assets/thumb/BU 130 J.jpg",
		100, 77,
		"BU 130 J", "Bugari Juniorfisa Mod. 130/J",
		"", "Bugari",
		"2300", "8.4",
		"1", 1,
		"Stück", "31,3",
		"Farbe;Schwarz@", "pd-961062551.htm",
		"", 1,
		"232,3510", "0",
		 3)
	
		Entry[39] = new Element(
		39, "assets/thumb/BU 151 SE.jpg",
		100, 77,
		"BU 151 SE", "Bugari Seniorfisa Mod. 151/SE",
		"", "Bugari",
		"3150", "9.3",
		"1", 1,
		"Stück", "31,3",
		"Farbe;Schwarz@", "pd-234601858.htm",
		"", 1,
		"232,3510", "0",
		 3)
	
		Entry[40] = new Element(
		40, "assets/thumb/BU 160 SE.jpg",
		100, 77,
		"BU 160 SE", "Bugari Seniorfisa Mod. 160/SE",
		"", "Bugari",
		"3500", "10.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd-2058896195.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[41] = new Element(
		41, "assets/thumb/BU 240 CH.jpg",
		100, 77,
		"BU 240 CH WS", "Bugari Championfisa Mod. 240/CH",
		"", "Bugari",
		"4400", "10.6",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Weiss@", "pd1448370626.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[42] = new Element(
		42, "assets/images/nopicture.gif",
		100, 60,
		"BU 251 CHC", "Bugari Championcassotto Mod. 251/CHC",
		"", "Bugari",
		"5300", "10.2",
		"1", 1,
		"Stück", "31,3",
		"Farbe;Schwarz@", "pd1257797562.htm",
		"", 1,
		"232,3510", "0",
		 3)
	
		Entry[43] = new Element(
		43, "assets/images/nopicture.gif",
		100, 60,
		"BU 262 CHC", "Bugari Championcassotto Mod. 262/CHC",
		"", "Bugari",
		"6150", "12.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd1146772736.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[44] = new Element(
		44, "assets/images/nopicture.gif",
		100, 60,
		"BU 281 ARS", "Bugari Artistcassotto Mod. 281/ARS",
		"", "Bugari",
		"5900", "10.2",
		"1", 1,
		"Stück", "31,3",
		"Farbe;Schwarz@", "pd1257798282.htm",
		"", 1,
		"232,3510", "0",
		 3)
	
		Entry[45] = new Element(
		45, "assets/images/nopicture.gif",
		100, 60,
		"BU 281 AG", "Bugari Gold&amp;Silver Mod. 281/Artist Gold",
		"", "Bugari",
		"7500", "10.2",
		"1", 1,
		"Stück", "31,3",
		"Farbe;Schwarz@", "pd727889573.htm",
		"", 1,
		"232,3510", "0",
		 3)
	
		Entry[46] = new Element(
		46, "assets/thumb/BU 285 ARS.jpg",
		100, 77,
		"BU 285 ARS", "Bugari Artistcassotto Mod. 285/ARS",
		"", "Bugari",
		"7250", "12.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd2066844240.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[47] = new Element(
		47, "assets/thumb/BU 285 AG.jpg",
		100, 83,
		"BU 285 AG", "Bugari Gold&amp;Silver Mod. 285/Artist Gold",
		"", "Bugari",
		"9000", "12.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd-307447805.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[48] = new Element(
		48, "assets/images/nopicture.gif",
		100, 60,
		"BU 288 ARS", "Bugari Artistcassotto Mod. 288/ARS",
		"", "Bugari",
		"6750", "11.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd2002544695.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[49] = new Element(
		49, "assets/thumb/BU 288 AG.jpg",
		100, 77,
		"BU 288 AG", "Bugari Gold&amp;Silver Mod. 288/Artist Gold",
		"", "Bugari",
		"8300", "11.2",
		"1", 1,
		"Stück", "34,3",
		"Farbe;Schwarz@", "pd-1374421562.htm",
		"", 1,
		"242,3510", "0",
		 3)
	
		Entry[50] = new Element(
		50, "assets/images/nopicture.gif",
		100, 60,
		"BU 310 J", "Bugari Juniorfisa Mod. 310/J",
		"", "",
		"2100", "6.1",
		"1", 1,
		"Stück", "5,29",
		"Farbe;Schwarz@", "pd1257976957.htm",
		"", 1,
		"3530,225", "0",
		 3)
	
		Entry[51] = new Element(
		51, "assets/thumb/BU 320 J.jpg",
		100, 77,
		"BU 320 J", "Bugari Juniorfisa Mod. 320/J",
		"", "",
		"2900", "8.9",
		"1", 1,
		"Stück", "5,32",
		"Farbe;Schwarz@", "pd-1720847680.htm",
		"", 1,
		"3530,235", "0",
		 3)
	
		Entry[52] = new Element(
		52, "assets/images/nopicture.gif",
		100, 60,
		"BU 115 CH", "Bugari Juniorfisa Mod. 115/CH",
		"", "Bugari",
		"2300", "7.4",
		"1", 1,
		"Stück", "3",
		"Farbe;Schwarz@", "pd536870527.htm",
		"", 1,
		"3510", "0",
		 3)
	
		Entry[53] = new Element(
		53, "assets/images/nopicture.gif",
		100, 60,
		"BU 151 CH", "Bugari Seniorfisa Mod. 151/CH",
		"", "Bugari",
		"3350", "9.3",
		"1", 1,
		"Stück", "3",
		"Farbe;Schwarz@", "pd-1755100040.htm",
		"", 1,
		"3510", "0",
		 3)
	
		Entry[54] = new Element(
		54, "assets/thumb/BU 351 SE.jpg",
		100, 77,
		"BU 351 SE rot", "Bugari Juniorfisa Mod. 351/SE rot",
		"", "",
		"3800", "9.6",
		"1", 1,
		"Stück", "5,32",
		"Farbe;Rot@", "pd1258318191.htm",
		"", 1,
		"3530,235", "0",
		 3)
	
		Entry[55] = new Element(
		55, "assets/images/nopicture.gif",
		100, 60,
		"BU 360 SE", "Bugari Juniorfisa Mod. 360/SE",
		"", "",
		"4000", "10.6",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd-1881459686.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[56] = new Element(
		56, "assets/images/nopicture.gif",
		100, 60,
		"BU 440 CH", "Bugari Championfisa Mod. 440/CH",
		"", "",
		"4800", "10.6",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd709522924.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[57] = new Element(
		57, "assets/thumb/BU 470 CHC.jpg",
		100, 77,
		"BU 470 CHC BL", "Bugari Championcassotto Mod. 470/CHC",
		"", "",
		"5500", "10.2",
		"1", 1,
		"Stück", "5,32",
		"Farbe;Blau@", "pd-226420544.htm",
		"", 1,
		"3530,235", "0",
		 3)
	
		Entry[58] = new Element(
		58, "assets/thumb/BU 480 CHC.jpg",
		100, 77,
		"BU 480 CHC", "Bugari Championcassotto Mod. 480/CHC",
		"", "",
		"5850", "11.4",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd1096260692.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[59] = new Element(
		59, "assets/images/nopicture.gif",
		100, 60,
		"BU 482 CHC", "Bugari Championcassotto Mod. 482/CHC",
		"", "",
		"6380", "12.4",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd222041256.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[60] = new Element(
		60, "assets/images/nopicture.gif",
		100, 60,
		"BU 501 ARS", "Bugari Artistcassotto Mod. 502/ARS",
		"", "",
		"6200", "10.2",
		"1", 1,
		"Stück", "5,32",
		"Farbe;Schwarz@", "pd900289980.htm",
		"", 1,
		"3530,235", "0",
		 3)
	
		Entry[61] = new Element(
		61, "assets/thumb/BU 508 ARS.jpg",
		100, 77,
		"BU 508 ARS", "Bugari Artistcassotto Mod. 508/ARS",
		"", "",
		"6500", "11.4",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd1350235024.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[62] = new Element(
		62, "assets/images/nopicture.gif",
		100, 60,
		"BU 505 ARS", "Bugari Artistcassotto Mod. 505/ARS",
		"", "",
		"7100", "12.4",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd1879130660.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[63] = new Element(
		63, "assets/images/nopicture.gif",
		100, 60,
		"BU 502 GA", "Bugari Artistcassotto Mod. 502/Goldartist",
		"", "",
		"8100", "10.2",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd1976915320.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[64] = new Element(
		64, "assets/images/nopicture.gif",
		100, 60,
		"BU 505 GA", "Bugari Gold&amp;Silver Mod. 505/Goldartist",
		"", "",
		"9990", "12.4",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd255152535.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[65] = new Element(
		65, "assets/thumb/BU 508 AG.jpg",
		100, 77,
		"BU 508 GA", "Bugari Gold&amp;Silver Mod. 508/Artistgold",
		"", "",
		"8900", "11.4",
		"1", 1,
		"Stück", "5,35",
		"Farbe;Schwarz@", "pd-244393376.htm",
		"", 1,
		"3530,245", "0",
		 3)
	
		Entry[66] = new Element(
		66, "assets/thumb/HF HC 502.jpg",
		100, 126,
		"HF HC 502", "Höfner HC 502",
		"", "",
		"160", "0",
		"1", 1,
		"Stück", "49",
		"", "pd61184133.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[67] = new Element(
		67, "assets/thumb/HF HF 12.jpg",
		100, 112,
		"HF HF 12", "Höfner HF12",
		"", "",
		"250", "0",
		"1", 1,
		"Stück", "49",
		"", "pd1898825777.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[68] = new Element(
		68, "assets/thumb/HF HF 17.jpg",
		100, 125,
		"HF HF 17", "Höfner HF17",
		"", "",
		"370", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-1291990048.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[69] = new Element(
		69, "assets/thumb/HF HFA 01.jpg",
		100, 123,
		"HF HFA 01", "Höfner HFA 01",
		"", "",
		"200", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-690389124.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[70] = new Element(
		70, "assets/thumb/HF HG 703.jpg",
		100, 117,
		"HF HG 703", "Höfner HG 703",
		"", "",
		"240", "0",
		"1", 1,
		"Stück", "49",
		"", "pd1742334424.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[71] = new Element(
		71, "assets/thumb/HF HZ 23.jpg",
		100, 125,
		"HF HZ 23", "Höfner HZ 23",
		"", "",
		"250", "0",
		"1", 1,
		"Stück", "49",
		"", "pd-656340628.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[72] = new Element(
		72, "assets/thumb/HF Shorty.jpg",
		60, 173,
		"HF Shorty CT", "Höfner Shorty CT",
		"", "",
		"129", "0",
		"1", 1,
		"Stück", "49",
		"", "pd1985324744.htm",
		"", 1,
		"4010", "0",
		 2)
	
		Entry[73] = new Element(
		73, "assets/thumb/KR KRW 88.jpg",
		100, 121,
		"KR KRW 88", "Ken Rose Mod. KRW 88",
		"", "",
		"100", "0",
		"1", 1,
		"Stück", "50",
		"", "pd1246227989.htm",
		"", 1,
		"4090", "0",
		 2)
	
		Entry[74] = new Element(
		74, "assets/thumb/HO A4046.jpg",
		100, 101,
		"HO A4046", "Hohner Bravo I 49 F schwarz",
		"", "Hohner",
		"769", "3.9",
		"1", 1,
		"Stück", "10,37",
		"Farbe;Schwarz@", "pd431531333.htm",
		"", 1,
		"1.2.3,252", "0",
		 2)
	
		Entry[75] = new Element(
		75, "assets/thumb/RO FR1.jpg",
		100, 70,
		"RO FR1", "Roland V-Akkordeon FR-1",
		"", "Roland",
		"999", "5.5",
		"1", 1,
		"Stück", "44",
		"Farbe;Weiss@", "pd723010216.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[76] = new Element(
		76, "assets/thumb/RO FR2 sw.jpg",
		100, 81,
		"RO FR2 sw", "Roland V-Akkordeon FR-2 schwarz",
		"", "Roland",
		"1779", "7.5",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd-120070562.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[77] = new Element(
		77, "assets/thumb/RO FR7xb.jpg",
		100, 80,
		"RO FR7xb", "Roland V-Akkordeon FR-7xb schwarz",
		"", "Roland",
		"5289", "11.7",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd-1082971842.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[78] = new Element(
		78, "assets/thumb/RO FR1b.jpg",
		100, 75,
		"RO FR1b", "Roland V-Akkordeon FR-1b",
		"", "Roland",
		"1049", "5.5",
		"1", 1,
		"Stück", "44",
		"Farbe;Weiss@", "pd375684558.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[79] = new Element(
		79, "assets/thumb/RO FR7x.jpg",
		100, 74,
		"RO FR7x", "Roland V-Akkordeon FR-7x schwarz",
		"", "Roland",
		"4989", "11.7",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd-1056815464.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[80] = new Element(
		80, "assets/thumb/HA Perle k.jpg",
		100, 67,
		"WE Perle", "Weltmeister Perle rot",
		"", "Weltmeister/Harmona",
		"720", "5.5",
		"1", 1,
		"Stück", "19,25",
		"Farbe;Rot@", "pd1797093952.htm",
		"", 1,
		"8510,212", "0",
		 2)
	
		Entry[81] = new Element(
		81, "assets/thumb/HA Rubin k.jpg",
		100, 71,
		"WE Rubin", "Weltmeister Rubin weiss",
		"", "Weltmeister/Harmona",
		"750", "5.6",
		"1", 1,
		"Stück", "19,25",
		"Farbe;Weiss@", "pd-1191847266.htm",
		"", 1,
		"8510,212", "0",
		 2)
	
		Entry[82] = new Element(
		82, "assets/thumb/HA Juwel k.jpg",
		100, 65,
		"WE Juwel", "Weltmeister Juwel schwarz",
		"", "Weltmeister/Harmona",
		"1030", "6.2",
		"1", 1,
		"Stück", "19,28",
		"Farbe;Schwarz@", "pd1324275489.htm",
		"", 1,
		"8510,222", "0",
		 2)
	
		Entry[83] = new Element(
		83, "assets/images/nopicture.gif",
		100, 60,
		"WE Opal", "Weltmeister Opal",
		"", "Weltmeister/Harmona",
		"1410", "8.3",
		"1", 1,
		"Stück", "19,31",
		"Farbe;braun@", "pd-418892306.htm",
		"", 1,
		"8510,232", "0",
		 2)
	
		Entry[84] = new Element(
		84, "assets/thumb/HA Kristall k.jpg",
		100, 84,
		"WE Kristall", "Weltmeister Kristall",
		"", "Weltmeister/Harmona",
		"1070", "6.9",
		"1", 1,
		"Stück", "19,25",
		"Farbe;Blau@", "pd-1380055522.htm",
		"", 1,
		"8510,212", "0",
		 2)
	
		Entry[85] = new Element(
		85, "assets/thumb/HA Achat 72 k.jpg",
		100, 82,
		"WE Achat 72", "Weltmeister Achat 72 grün",
		"", "Weltmeister/Harmona",
		"1180", "7.6",
		"1", 1,
		"Stück", "19,28",
		"Farbe;Grün@", "pd362922145.htm",
		"", 1,
		"8510,222", "0",
		 2)
	
		Entry[86] = new Element(
		86, "assets/thumb/HA Achat 80 k.jpg",
		100, 84,
		"WE Achat 80", "Weltmeister Achat rot",
		"", "Weltmeister/Harmona",
		"1200", "7.8",
		"1", 1,
		"Stück", "19,28",
		"Farbe;Rot@", "pd2123830474.htm",
		"", 1,
		"8510,222", "0",
		 2)
	
		Entry[87] = new Element(
		87, "assets/thumb/HA Topas 3 k.jpg",
		100, 80,
		"WE Topas 3", "Weltmeister Topas III",
		"", "Weltmeister/Harmona",
		"1490", "9.7",
		"1", 1,
		"Stück", "19,31",
		"Farbe;Schwarz@", "pd1268688353.htm",
		"", 1,
		"8510,232", "0",
		 2)
	
		Entry[88] = new Element(
		88, "assets/thumb/HA Topas 4 k.jpg",
		100, 81,
		"WE Topas 4", "Weltmeister Topas IV",
		"", "Weltmeister/Harmona",
		"1890", "10.2",
		"1", 1,
		"Stück", "19,31",
		"Farbe;Schwarz@", "pd1037090534.htm",
		"", 1,
		"8510,232", "0",
		 2)
	
		Entry[89] = new Element(
		89, "assets/thumb/HA Saphir k.jpg",
		100, 85,
		"WE Saphir", "Weltmeister Saphir",
		"", "Weltmeister/Harmona",
		"2220", "10.6",
		"1", 1,
		"Stück", "19,34",
		"Farbe;Schwarz@", "pd1012834612.htm",
		"", 1,
		"8510,242", "0",
		 2)
	
		Entry[90] = new Element(
		90, "assets/thumb/HA Cassotta374 k.jpg",
		100, 79,
		"WE Cassotta374", "Weltmeister Cassotta 374",
		"", "Weltmeister/Harmona",
		"2390", "10.4",
		"1", 1,
		"Stück", "19,31",
		"Farbe;Schwarz@", "pd-244855985.htm",
		"", 1,
		"8510,232", "0",
		 2)
	
		Entry[91] = new Element(
		91, "assets/thumb/HA Cassotta 414 k.jpg",
		100, 85,
		"WE Cassotta 414", "Weltmeister Cassotta 414",
		"", "Weltmeister/Harmona",
		"2710", "11",
		"1", 1,
		"Stück", "19,34",
		"Farbe;Schwarz@", "pd2143824233.htm",
		"", 1,
		"8510,242", "0",
		 2)
	
		Entry[92] = new Element(
		92, "assets/images/nopicture.gif",
		100, 60,
		"WE Supra 96", "Weltmeister Supra 96",
		"", "Weltmeister/Harmona",
		"3610", "11.5",
		"1", 1,
		"Stück", "19,31",
		"Farbe;Schwarz@", "pd773284441.htm",
		"", 1,
		"8510,232", "0",
		 2)
	
		Entry[93] = new Element(
		93, "assets/thumb/HA Supra 120 k.jpg",
		100, 86,
		"WE Supra 120", "Weltmeister Supra 120",
		"", "Weltmeister/Harmona",
		"3760", "12.1",
		"1", 1,
		"Stück", "19,34",
		"Farbe;Schwarz@", "pd1271490920.htm",
		"", 1,
		"8510,242", "0",
		 2)
	
		Entry[94] = new Element(
		94, "assets/thumb/HA FB 26 k.jpg",
		100, 70,
		"WE FB 26", "Weltmeister FB 26",
		"", "",
		"760", "4.4",
		"1", 1,
		"Stück", "20,37",
		"Farbe;Schwarz@", "pd-1616312314.htm",
		"", 1,
		"8520,252", "0",
		 2)
	
		Entry[95] = new Element(
		95, "assets/thumb/HA Toccata Knopf k.jpg",
		100, 64,
		"WE Toccata Knopf", "Weltmeister Toccata Knopf",
		"", "",
		"2510", "7.1",
		"1", 1,
		"Stück", "22,38",
		"Farbe;Schwarz@", "pd119254461.htm",
		"", 1,
		"8540,255", "0",
		 2)
	
		Entry[96] = new Element(
		96, "assets/thumb/HA FB 26 Knopf k.jpg",
		100, 70,
		"WE FB 26 Knopf", "Weltmeister FB 26 K",
		"", "",
		"832", "4.6",
		"1", 1,
		"Stück", "22,38",
		"Farbe;Schwarz@", "pd1330114817.htm",
		"", 1,
		"8540,255", "0",
		 2)
	
		Entry[97] = new Element(
		97, "assets/thumb/HA Toccata Piano k.jpg",
		100, 66,
		"WE Toccata Piano", "Weltmeister Toccata Piano",
		"", "",
		"2340", "6.7",
		"1", 1,
		"Stück", "20",
		"Farbe;Schwarz@", "pd502953477.htm",
		"", 1,
		"8520", "0",
		 2)
	
		Entry[98] = new Element(
		98, "assets/images/nopicture.gif",
		100, 60,
		"WE FB 37", "Weltmeister FB 37",
		"", "",
		"1180", "6.2",
		"1", 1,
		"Stück", "20,37",
		"Farbe;Schwarz@", "pd1027155614.htm",
		"", 1,
		"8520,252", "0",
		 2)
	
		Entry[99] = new Element(
		99, "assets/images/nopicture.gif",
		100, 60,
		"HO-A3607", "Hohner Morino IV S C-Griff",
		"", "Hohner",
		"3500", "0",
		"1", 1,
		"Stück", "15,35",
		"", "pd1272489423.htm",
		"", 1,
		"1.2.8,245", "0",
		 2)
	
		Entry[100] = new Element(
		100, "assets/images/nopicture.gif",
		100, 60,
		"HO-A1118", "Hohner Concerto 342 K C-Griff",
		"", "Hohner",
		"750", "0",
		"1", 1,
		"Stück", "11,26",
		"", "pd1272579178.htm",
		"", 1,
		"1.2.4.1,215", "0",
		 2)
	
		Entry[101] = new Element(
		101, "assets/thumb/HO A2062.jpg",
		100, 75,
		"HO A2062", "Hohner Atlantic IV 120",
		"", "Hohner",
		"3180", "10",
		"1", 1,
		"Stück", "9,34",
		"Farbe;Schwarz@", "pd1274436998.htm",
		"", 1,
		"1.2.2,242", "0",
		 2)
	
		Entry[102] = new Element(
		102, "assets/thumb/HO A2066.jpg",
		100, 72,
		"HO A2066", "Hohner Atlantic IV 120 Musette",
		"", "Hohner",
		"3180", "10",
		"1", 1,
		"Stück", "9,34",
		"Farbe;Schwarz@", "pd-889192674.htm",
		"", 1,
		"1.2.2,242", "0",
		 2)
	
		Entry[103] = new Element(
		103, "assets/thumb/Morgane k.jpg",
		100, 73,
		"HO A2650", "Hohner Morgane G/C",
		"", "",
		"900", "1.6",
		"1", 1,
		"Stück", "16,42",
		"", "pd-1135561708.htm",
		"", 1,
		"1.2.9,286", "0",
		 2)
	
		Entry[104] = new Element(
		104, "assets/thumb/WE K 60 72 II  k.jpg",
		100, 66,
		"WE Romance 602", "Weltmeister Romance 602",
		"", "Hohner",
		"1270", "6.9",
		"1", 1,
		"Stück", "21,29",
		"", "pd1280620482.htm",
		"", 1,
		"8530,225", "0",
		 2)
	
		Entry[105] = new Element(
		105, "assets/thumb/WE K 60 72 III k.jpg",
		100, 70,
		"WE Romance 603", "Weltmeister Romance 603",
		"", "Hohner",
		"1360", "7.6",
		"1", 1,
		"Stück", "21,29",
		"", "pd2097732512.htm",
		"", 1,
		"8530,225", "0",
		 2)
	
		Entry[106] = new Element(
		106, "assets/thumb/WE K 87 120 k.jpg",
		100, 84,
		"WE Romance 874", "Weltmeister Romance 874",
		"", "Hohner",
		"2650", "11.3",
		"1", 1,
		"Stück", "21,35",
		"", "pd-1438798967.htm",
		"", 1,
		"8530,245", "0",
		 2)
	
		Entry[107] = new Element(
		107, "assets/thumb/WE K 70 96 k.jpg",
		100, 78,
		"WE Romance 703", "Weltmeister Romance 703",
		"", "Hohner",
		"1660", "9.1",
		"1", 1,
		"Stück", "21,32",
		"", "pd996348510.htm",
		"", 1,
		"8530,235", "0",
		 2)
	
		Entry[108] = new Element(
		108, "assets/thumb/WE Supita II k.jpg",
		100, 83,
		"WE Supita II", "Weltmeister Supita II",
		"", "Weltmeister/Harmona",
		"5620", "12.2",
		"1", 1,
		"Stück", "19,34",
		"", "pd-113840964.htm",
		"", 1,
		"8510,242", "0",
		 2)
	
		Entry[109] = new Element(
		109, "assets/thumb/RO FR3x swk.jpg",
		100, 75,
		"RO FR3x sw", "Roland V-Akkordeon FR-3x schwarz",
		"", "Roland",
		"2519", "8.3",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd1290990466.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[110] = new Element(
		110, "assets/thumb/RO FR-3xb swk.jpg",
		100, 79,
		"RO FR3xb sw", "Roland V-Akkordeon FR-3xb schwarz",
		"", "Roland",
		"2649", "8",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd1389485192.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[111] = new Element(
		111, "assets/thumb/RO FR18dsw k.jpg",
		100, 69,
		"RO FR18d sw", "Roland V-Akkordeon FR-18d schwarz",
		"", "Roland",
		"1695", "5.5",
		"1", 1,
		"Stück", "44",
		"Farbe;Schwarz@", "pd1300630184.htm",
		"", 1,
		"2020", "0",
		 2)
	
		Entry[112] = new Element(
		112, "assets/thumb/RO BA 330 k.jpg",
		100, 72,
		"RO BA 330", "Roland BA-330",
		"", "",
		"559", "13.8",
		"1", 1,
		"Stück", "47",
		"Farbe;Schwarz@", "pd1313621864.htm",
		"", 1,
		"3040", "0",
		 2)
	
		Entry[113] = new Element(
		113, "assets/thumb/KT SD3.jpg",
		100, 85,
		"KT SD3", "Ketron SD 3",
		"", "",
		"1490", "0",
		"1", 1,
		"Stück", "46",
		"Ausstattung;o HD@", "pd1259191701.htm",
		"", 1,
		"3030", "0",
		 2)
	
		Entry[114] = new Element(
		114, "assets/thumb/KT SD4.jpg",
		100, 71,
		"KT SD4", "Ketron SD 4",
		"", "",
		"499", "0.9",
		"1", 1,
		"Stück", "46",
		"Farbe;silber@", "pd1311424087.htm",
		"", 1,
		"3030", "0",
		 2)
	
		Entry[115] = new Element(
		115, "assets/thumb/RO BK-7m k.jpg",
		100, 74,
		"RO BK7m", "Roland BK-7m",
		"", "",
		"890", "1.7",
		"1", 1,
		"Stück", "46",
		"Farbe;Schwarz@", "pd-246092180.htm",
		"", 1,
		"3030", "0",
		 2)
	
		Entry[116] = new Element(
		116, "assets/thumb/RO BA 55 k.jpg",
		100, 145,
		"RO BA 55 sw", "Roland BA-55 schwarz",
		"", "",
		"689", "9",
		"1", 1,
		"Stück", "47",
		"Farbe;Schwarz@", "pd1313871500.htm",
		"", 1,
		"3040", "0",
		 2)
	
		Entry[117] = new Element(
		117, "assets/thumb/HO A2712k.jpg",
		100, 69,
		"HO A2712", "Hohner Morino+ IV 96",
		"", "Hohner",
		"5990", "10.7",
		"1", 1,
		"Stück", "15,31",
		"Farbe;Schwarz@", "pd1317589062.htm",
		"", 1,
		"1.2.8,232", "0",
		 2)
	
		Entry[118] = new Element(
		118, "assets/thumb/HO A2722k.jpg",
		100, 69,
		"HO A2722", "Hohner Morino+ IV 120",
		"", "Hohner",
		"6680", "11.3",
		"1", 1,
		"Stück", "15,34",
		"Farbe;Schwarz@", "pd1989496963.htm",
		"", 1,
		"1.2.8,242", "0",
		 2)
	
		Entry[119] = new Element(
		119, "assets/thumb/HO A2732k.jpg",
		100, 69,
		"HO A2732", "Hohner Morino+ V 120",
		"", "Hohner",
		"7450", "12.2",
		"1", 1,
		"Stück", "15,34",
		"Farbe;Schwarz@", "pd-1207204628.htm",
		"", 1,
		"1.2.8,242", "0",
		 2)
	
		Entry[120] = new Element(
		120, "assets/thumb/HO A2742k.jpg",
		100, 64,
		"HO A2742", "Hohner Morino+ IV 96 &quot;de Luxe&quot;",
		"", "Hohner",
		"8498", "10.7",
		"1", 1,
		"Stück", "15,31",
		"Farbe;Schwarz@", "pd1037392977.htm",
		"", 1,
		"1.2.8,232", "0",
		 2)
	
		Entry[121] = new Element(
		121, "assets/thumb/HO A2752k.jpg",
		100, 64,
		"HO A2752", "Hohner Morino+ IV 120 &quot;de Luxe&quot;",
		"", "Hohner",
		"8900", "11.3",
		"1", 1,
		"Stück", "15,34",
		"Farbe;Schwarz@", "pd-708035518.htm",
		"", 1,
		"1.2.8,242", "0",
		 2)
	
		Entry[122] = new Element(
		122, "assets/thumb/HO A2762k.jpg",
		100, 64,
		"HO A2762", "Hohner Morino+ V 120 de Luxe",
		"", "Hohner",
		"9300", "12.2",
		"1", 1,
		"Stück", "15,34",
		"Farbe;Schwarz@", "pd-526148081.htm",
		"", 1,
		"1.2.8,242", "0",
		 2)
	
		Entry[123] = new Element(
		123, "assets/thumb/HO A2792k.jpg",
		100, 69,
		"HO A2792", "Hohner Morino+ IV 120 &quot;Slavko Avsenik Retro&quot;",
		"", "Hohner",
		"7999", "12.4",
		"1", 1,
		"Stück", "15,34",
		"Farbe;Schwarz@", "pd343562184.htm",
		"", 1,
		"1.2.8,242", "0",
		 2)
	
// ** 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, oder durchsuchen Sie den Katalog direkt</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();
			};
		};
