	// 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>MwSt nicht ausweisbar, 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/hohnerstarlet40217361k.jpg",
		100, 108,
		"15004020-01", "Hohner Starlet 40 (rot)",
		"", "Hohner",
		"350", "4.3",
		"1", 1,
		"Stück", "25,2",
		"", "pd-804068243.htm",
		"", 1,
		"7,212", "0",
		 2)
	
		Entry[1] = new Element(
		1, "assets/thumb/hohnerimperial4ak.jpg",
		100, 98,
		"15006030-01", "Hohner Imperial IV A (rot)",
		"", "Hohner",
		"590", "0",
		"1", 1,
		"Stück", "25,5",
		"", "pd1792399205.htm",
		"", 1,
		"7,222", "0",
		 2)
	
		Entry[2] = new Element(
		2, "assets/thumb/hohnerregina3m617426k.jpg",
		100, 84,
		"15012030-01", "Hohner Regina III M (grau)",
		"", "Hohner",
		"950", "0",
		"1", 1,
		"Stück", "25,11",
		"", "pd1408897415.htm",
		"", 1,
		"7,242", "0",
		 2)
	
		Entry[3] = new Element(
		3, "assets/images/nopicture.gif",
		100, 60,
		"15007220-04", "Hohner Concerto II (schwarz)",
		"", "Hohner",
		"600", "6.2",
		"1", 1,
		"Stück", "25,5",
		"", "pd597951805.htm",
		"", 1,
		"7,222", "0",
		 2)
	
		Entry[4] = new Element(
		4, "assets/thumb/hohnercontessa3176004k.jpg",
		100, 94,
		"15007230-01", "Hohner Contessa III (rot)",
		"", "Hohner",
		"700", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd1248215862.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[5] = new Element(
		5, "assets/thumb/hohnertango2m105411k.jpg",
		100, 98,
		"15009630-01", "Hohner Tango II M (sw)",
		"", "Hohner",
		"900", "0",
		"1", 1,
		"Stück", "25,5",
		"", "pd1248372557.htm",
		"", 1,
		"7,222", "0",
		 2)
	
		Entry[6] = new Element(
		6, "assets/thumb/hohnerlucia3527138k.jpg",
		100, 88,
		"15009630-08", "Hohner Lucia III (sw)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "25,8",
		"", "pd-1119597015.htm",
		"", 1,
		"7,232", "0",
		 2)
	
		Entry[7] = new Element(
		7, "assets/thumb/hohnerlucia3519542k.jpg",
		100, 86,
		"15009630-09", "Hohner Lucia III (rot)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "25,8",
		"", "pd298959956.htm",
		"", 1,
		"7,232", "0",
		 2)
	
		Entry[8] = new Element(
		8, "assets/thumb/hohnerlucia3p182653k.jpg",
		100, 97,
		"15009630-13", "Hohner Lucia III P (sw)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "25,8",
		"", "pd-1691542248.htm",
		"", 1,
		"7,232", "0",
		 2)
	
		Entry[9] = new Element(
		9, "assets/thumb/hohnerverdi2244509k.jpg",
		100, 92,
		"15009630-15", "Hohner Verdi II (sw)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "25,8",
		"", "pd835653284.htm",
		"", 1,
		"7,232", "0",
		 2)
	
		Entry[10] = new Element(
		10, "assets/thumb/hohnerverdi2n389122k.jpg",
		100, 93,
		"15009630-18", "Hohner Verdi II N (rot)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "25,8",
		"", "pd1026789616.htm",
		"", 1,
		"7,232", "0",
		 2)
	
		Entry[11] = new Element(
		11, "assets/thumb/hohnerverdi3464020k.jpg",
		100, 84,
		"15012030-02", "Hohner Verdi III (sw)",
		"", "Hohner",
		"1150", "0",
		"1", 1,
		"Stück", "25,11",
		"", "pd510341116.htm",
		"", 1,
		"7,242", "0",
		 2)
	
		Entry[12] = new Element(
		12, "assets/thumb/bugari230chk.jpg",
		100, 90,
		"15012030-06", "Bugari Mod. 230/CH Championfisa (sw) ",
		"", "Bugari",
		"1550", "0",
		"1", 1,
		"Stück", "25,11",
		"", "pd554121160.htm",
		"", 1,
		"7,242", "0",
		 2)
	
		Entry[13] = new Element(
		13, "assets/thumb/hohnervox2pk.jpg",
		100, 88,
		"15012040-14", "Hohner Vox 2 P Atlantic IV N de Luxe (sw)",
		"", "Hohner",
		"1800", "0",
		"1", 1,
		"Stück", "25,19,11",
		"", "pd1431200131.htm",
		"", 1,
		"7,2010,242", "0",
		 2)
	
		Entry[14] = new Element(
		14, "assets/thumb/hohneratlantik4tmusette783319k.jpg",
		100, 84,
		"15012040-15", "Hohner Atlantic IV T Musette (sw)",
		"", "Hohner",
		"999999", "0",
		"1", 1,
		"Stück", "25,11",
		"", "pd-781601132.htm",
		"", 1,
		"7,242", "0",
		 1)
	
		Entry[15] = new Element(
		15, "assets/thumb/09160006k.jpg",
		100, 82,
		"15012040-18", "Paolo Soprani (sw)",
		"", "Paolo Soprani",
		"1600", "0",
		"1", 1,
		"Stück", "25,11",
		"", "pd1248818432.htm",
		"", 1,
		"7,242", "0",
		 2)
	
		Entry[16] = new Element(
		16, "assets/thumb/deliciachoralvik.jpg",
		100, 88,
		"15012041-01", "Delicia Choral VI (blau)",
		"", "Sonstige Hersteller",
		"999999", "0",
		"1", 1,
		"Stück", "25,11",
		"", "pd-361796764.htm",
		"", 1,
		"7,242", "0",
		 3)
	
		Entry[17] = new Element(
		17, "assets/thumb/09160039k.jpg",
		100, 90,
		"17012041-05", "Hohner Morino VI N (sw)",
		"", "Hohner",
		"999999", "0",
		"1", 1,
		"Stück", "25,14",
		"", "pd-318387894.htm",
		"", 1,
		"7,252", "0",
		 3)
	
		Entry[18] = new Element(
		18, "assets/thumb/hohnerclub2bcf881345k.jpg",
		100, 103,
		"30000820-04", "Hohner Club II B (grau) C/F",
		"", "Hohner",
		"650", "0",
		"1", 1,
		"Stück", "25,16",
		"", "pd-14958473.htm",
		"", 1,
		"7,280", "0",
		 2)
	
		Entry[19] = new Element(
		19, "assets/thumb/kc7600.jpg",
		100, 81,
		"600-1", "Hohner E-Piano C7600",
		"", "Hohner",
		"180", "0",
		"1", 1,
		"Stück", "25,22",
		"", "pd1772558303.htm",
		"", 1,
		"7,3010", "0",
		 2)
	
		Entry[20] = new Element(
		20, "assets/thumb/LW700k.jpg",
		100, 120,
		"750-1", "Hohner LW 700",
		"", "Hohner",
		"150", "0",
		"1", 1,
		"Stück", "25,24",
		"", "pd443910016.htm",
		"", 1,
		"7,4020", "0",
		 2)
	
		Entry[21] = new Element(
		21, "assets/thumb/hohnerarietta2m611307k.jpg",
		100, 93,
		"15007230-00", "Hohner Arietta II M (rot)",
		"", "Hohner",
		"750", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd-1379826639.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[22] = new Element(
		22, "assets/thumb/hohnerlucia3532822k.jpg",
		100, 88,
		"15009630-11", "Hohner Lucia III (sw)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd-1924731476.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[23] = new Element(
		23, "assets/thumb/hohneratlantik4500478k.jpg",
		100, 83,
		"15012040-05", "Hohner Atlantic IV (sw)",
		"", "Hohner",
		"1650", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd-1905255501.htm",
		"", 1,
		"242,7", "0",
		 2)
	
		Entry[24] = new Element(
		24, "assets/thumb/hohnermorino434bsk.jpg",
		100, 93,
		"17012041-06", "Hohner Morino 434 BS (sw)",
		"", "Hohner",
		"999999", "0",
		"1", 1,
		"Stück", "14,25",
		"", "pd-1656649612.htm",
		"", 1,
		"252,7", "0",
		 3)
	
		Entry[25] = new Element(
		25, "assets/thumb/hohnermorino4n422800k.jpg",
		100, 80,
		"15012041-03", "Hohner Morino IV N (sw)",
		"", "Hohner",
		"3600", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd1251668275.htm",
		"", 1,
		"242,7", "0",
		 2)
	
		Entry[26] = new Element(
		26, "assets/thumb/hohneratlantik4dlmetallicwsk.jpg",
		100, 84,
		"15012040-08", "Hohner Atlantic IV de Luxe (weiß)",
		"", "Hohner",
		"1750", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd-1350925089.htm",
		"", 1,
		"242,7", "0",
		 2)
	
		Entry[27] = new Element(
		27, "assets/thumb/hohnerconcerto2n480058k.jpg",
		100, 99,
		"15007220-07", "Hohner Concerto II N (rot)",
		"", "Hohner",
		"690", "7",
		"1", 1,
		"Stück", "5,25",
		"", "pd1251840471.htm",
		"", 1,
		"222,7", "0",
		 1)
	
		Entry[28] = new Element(
		28, "assets/thumb/hohnerconcerto3741893k.jpg",
		100, 94,
		"15007230-04", "Hohner Concerto III  (grau)",
		"", "Hohner",
		"750", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd134694227.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[29] = new Element(
		29, "assets/thumb/hohnerconcerto3242144k.jpg",
		100, 94,
		"15007230-05", "Hohner Concerto III  (schwarz)",
		"", "Hohner",
		"750", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd2086789510.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[30] = new Element(
		30, "assets/thumb/hohnerriviera4dl0401241k.jpg",
		100, 86,
		"20012040-1", "Hohner Riviera VI (sw)",
		"", "Hohner",
		"1700", "0",
		"1", 1,
		"Stück", "12,25",
		"", "pd1251922797.htm",
		"", 1,
		"245,7", "0",
		 2)
	
		Entry[31] = new Element(
		31, "assets/thumb/hohnerlorganolaartiste5k.jpg",
		100, 92,
		"20012040-2", "Hohner L´Organola Artiste V (sw)",
		"", "Hohner",
		"999999", "0",
		"1", 1,
		"Stück", "12,25",
		"", "pd231573853.htm",
		"", 1,
		"245,7", "0",
		 3)
	
		Entry[32] = new Element(
		32, "assets/thumb/hohnerlucia3419390k.jpg",
		100, 87,
		"15009630-07", "Hohner Lucia III (rot)",
		"", "Hohner",
		"1350", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd-1497632455.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[33] = new Element(
		33, "assets/thumb/hohnerericacf080407k.jpg",
		100, 103,
		"30000820-01", "Hohner Erica (rot) C/F",
		"", "Hohner",
		"450", "0",
		"1", 1,
		"Stück", "16,25",
		"", "pd1251932148.htm",
		"", 1,
		"280,7", "0",
		 2)
	
		Entry[34] = new Element(
		34, "assets/thumb/paolosopraniclub2cfk.jpg",
		100, 101,
		"30000840-01", "Paolo Soprani Club II  (rot) C/F",
		"", "Paolo Soprani",
		"1100", "0",
		"1", 1,
		"Stück", "16,25",
		"", "pd1939854156.htm",
		"", 1,
		"280,7", "0",
		 2)
	
		Entry[35] = new Element(
		35, "assets/thumb/hohnermorinoclubcf218036k.jpg",
		100, 94,
		"30001251-01", "Hohner Club Morino C/F",
		"", "Hohner",
		"1600", "0",
		"1", 1,
		"Stück", "16,25",
		"", "pd-392670812.htm",
		"", 1,
		"280,7", "0",
		 2)
	
		Entry[36] = new Element(
		36, "assets/thumb/hohnermorinoclubncfk.jpg",
		100, 97,
		"30001251-02", "Hohner Club Morino N C/F (sw)",
		"", "Hohner",
		"999999", "0",
		"1", 1,
		"Stück", "16,25",
		"", "pd2135793675.htm",
		"", 1,
		"280,7", "0",
		 3)
	
		Entry[37] = new Element(
		37, "assets/thumb/hohnerverdi2n449272k.jpg",
		100, 94,
		"15009630-19", "Hohner Verdi II N (sw)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd1262684507.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[38] = new Element(
		38, "assets/thumb/hohnertango4s668114k.jpg",
		100, 93,
		"15009640-3", "Hohner Tango IV S (sw)",
		"", "Hohner",
		"1750", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd1844446493.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[39] = new Element(
		39, "assets/thumb/excelsior304ak.jpg",
		100, 96,
		"15009630-20", "Excelsior Mod 304A (sw)",
		"", "Excelsior",
		"1350", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd1262710280.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[40] = new Element(
		40, "assets/thumb/hohnerericacflilak.jpg",
		100, 100,
		"30000820-03", "Hohner Erica (lila) C/F",
		"", "Hohner",
		"450", "0",
		"1", 1,
		"Stück", "16,25",
		"", "pd1855523059.htm",
		"", 1,
		"280,7", "0",
		 2)
	
		Entry[41] = new Element(
		41, "assets/thumb/balloneburini1204k.jpg",
		100, 93,
		"15012041-07", "Ballone Burini Serie 3-1 (sw)",
		"", "Sonstige Hersteller",
		"999999", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd-871074479.htm",
		"", 1,
		"242,7", "0",
		 3)
	
		Entry[42] = new Element(
		42, "assets/thumb/hohnertango2m198895k.jpg",
		100, 96,
		"15009630-05", "Hohner Tango II M (grau)",
		"", "Hohner",
		"900", "0",
		"1", 1,
		"Stück", "25,5",
		"", "pd-869771407.htm",
		"", 1,
		"7,222", "0",
		 2)
	
		Entry[43] = new Element(
		43, "assets/thumb/hohnertango2m150049k.jpg",
		100, 96,
		"15009630-06", "Hohner Tango II M (ws)",
		"", "Hohner",
		"900", "0",
		"1", 1,
		"Stück", "25,5",
		"", "pd603219378.htm",
		"", 1,
		"7,222", "0",
		 2)
	
		Entry[44] = new Element(
		44, "assets/thumb/paolosoprani414holzkerntastenk.jpg",
		100, 90,
		"15012040-20", "Paolo Soprani (sw)",
		"", "Paolo Soprani",
		"999999", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd1583391593.htm",
		"", 1,
		"242,7", "0",
		 3)
	
		Entry[45] = new Element(
		45, "assets/images/nopicture.gif",
		100, 60,
		"15007220-06", "Hohner Concerto II (rot)",
		"", "Hohner",
		"600", "0",
		"1", 1,
		"Stück", "5,25",
		"", "pd1022421785.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[46] = new Element(
		46, "assets/images/nopicture.gif",
		100, 60,
		"15007230-06", "Hohner Concerto III  (schwarz)",
		"", "Hohner",
		"750", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd1850505079.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[47] = new Element(
		47, "assets/thumb/hohnerstudent5m370394k.jpg",
		100, 108,
		"15004820-01", "Hohner Student V M (sw)",
		"", "Hohner",
		"450", "4.6",
		"1", 1,
		"Stück", "2,25",
		"", "pd1320808791.htm",
		"", 1,
		"212,7", "0",
		 2)
	
		Entry[48] = new Element(
		48, "assets/thumb/hohnerfavorit4p442356k.jpg",
		100, 98,
		"15009640-2", "Hohner Favorit IV P (sw)",
		"", "Hohner",
		"1600", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd-930824760.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[49] = new Element(
		49, "assets/thumb/hohnerbasso342415058k.jpg",
		100, 88,
		"38000020-2", "Hohner Basso 342 (sw)",
		"", "",
		"1190", "0",
		"1", 1,
		"Stück", "17,25",
		"", "pd1079419308.htm",
		"", 1,
		"285,7", "0",
		 2)
	
		Entry[50] = new Element(
		50, "assets/thumb/hohnertango2m237609k.jpg",
		100, 89,
		"15009630-04", "Hohner Tango II M (rot)",
		"", "Hohner",
		"900", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd1865737296.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[51] = new Element(
		51, "assets/thumb/hohnerlucia3p529664k.jpg",
		100, 93,
		"15009630-14", "Hohner Lucia III P (sw)",
		"", "Hohner",
		"1250", "0",
		"1", 1,
		"Stück", "8,25",
		"", "pd-530351780.htm",
		"", 1,
		"232,7", "0",
		 2)
	
		Entry[52] = new Element(
		52, "assets/thumb/hohneratlantik3514791k.jpg",
		100, 89,
		"15012030-04", "Hohner Atlantic III (sw)",
		"", "Hohner",
		"1500", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd-2113808600.htm",
		"", 1,
		"242,7", "0",
		 2)
	
		Entry[53] = new Element(
		53, "assets/thumb/hohneratlantik3p536227k.jpg",
		100, 88,
		"15012030-03", "Hohner Atlantic III P (sw)",
		"", "Hohner",
		"1300", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd2082736564.htm",
		"", 1,
		"242,7", "0",
		 2)
	
		Entry[54] = new Element(
		54, "assets/thumb/hohnerstarletfb400201k.jpg",
		100, 104,
		"17003210-02", "Hohner Starlet FB (rot)",
		"", "Hohner",
		"350", "4.3",
		"1", 1,
		"Stück", "14,25",
		"", "pd-849429990.htm",
		"", 1,
		"252,7", "0",
		 2)
	
		Entry[55] = new Element(
		55, "assets/images/nopicture.gif",
		100, 60,
		"15007230-08", "Hohner Concerto III  (rot)",
		"", "Hohner",
		"750", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd1262790431.htm",
		"", 1,
		"222,7", "0",
		 2)
	
		Entry[56] = new Element(
		56, "assets/thumb/03160263k.jpg",
		100, 84,
		"15012040-07", "Hohner Atlantic IV de Luxe (sw)",
		"", "Hohner",
		"1750", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd-1949978921.htm",
		"", 1,
		"242,7", "0",
		 2)
	
		Entry[57] = new Element(
		57, "assets/thumb/hohnerarietta377417k.jpg",
		100, 92,
		"15007220-03", "Hohner Arietta  (rot)",
		"", "Hohner",
		"600", "6.9",
		"1", 1,
		"Stück", "5,25",
		"", "pd-746986357.htm",
		"", 1,
		"222,7", "0",
		 3)
	
		Entry[58] = new Element(
		58, "assets/thumb/hohnerjunior48607953k.jpg",
		100, 104,
		"15004820-08", "Hohner Junior 48 (rot)",
		"", "Hohner",
		"450", "4.6",
		"1", 1,
		"Stück", "2,25",
		"", "pd40880967.htm",
		"", 1,
		"212,7", "0",
		 2)
	
		Entry[59] = new Element(
		59, "assets/thumb/hohnerstudent4n158063k.jpg",
		100, 104,
		"15004020-10", "Hohner Student IV N (rot)",
		"", "Hohner",
		"450", "4.6",
		"1", 1,
		"Stück", "2,25",
		"", "pd281769411.htm",
		"", 1,
		"212,7", "0",
		 2)
	
		Entry[60] = new Element(
		60, "assets/thumb/hohnerclub3mcf719621k.jpg",
		100, 98,
		"30000820-07", "Hohner Club III M (rot) C/F",
		"", "Hohner",
		"890", "0",
		"1", 1,
		"Stück", "16,25",
		"", "pd1724817407.htm",
		"", 1,
		"280,7", "0",
		 2)
	
		Entry[61] = new Element(
		61, "assets/thumb/hohnerimperial2a090629k.jpg",
		100, 105,
		"15003220-01", "Hohner Imperial II A (ws)",
		"", "Hohner",
		"430", "0",
		"1", 1,
		"Stück", "2,25",
		"", "pd1262860262.htm",
		"", 1,
		"212,7", "0",
		 2)
	
		Entry[62] = new Element(
		62, "assets/thumb/hohnerstudent5301257k.jpg",
		100, 105,
		"15004820-05", "Hohner Student V (rot)",
		"", "Hohner",
		"450", "4.6",
		"1", 1,
		"Stück", "2,25",
		"", "pd1299180414.htm",
		"", 1,
		"212,7", "0",
		 2)
	
		Entry[63] = new Element(
		63, "assets/thumb/hohnermorino4120slavkoavsenikk.jpg",
		100, 88,
		"15012041-04", "Hohner Morino IV 120 &quot;Slavko Avsenik&quot; (sw)",
		"", "Hohner",
		"999999", "0",
		"1", 1,
		"Stück", "11,25",
		"", "pd-2075607190.htm",
		"", 1,
		"242,7", "0",
		 3)
	
		Entry[64] = new Element(
		64, "assets/thumb/Hohner Tango IVPk.jpg",
		100, 94,
		"15009640-7", "Hohner Tango IV P (sw)",
		"", "Hohner",
		"0", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1291228907.htm",
		"", 1,
		"232", "0",
		 3)
	
		Entry[65] = new Element(
		65, "assets/thumb/GuerriniSuperk.jpg",
		100, 92,
		"15012051-04", "Guerrini Supermodell",
		"", "Guerrini",
		"0", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1317934772.htm",
		"", 1,
		"242", "0",
		 3)
	
		Entry[66] = new Element(
		66, "assets/thumb/Roland FR 7 bk.jpg",
		100, 92,
		"4701200-1", "Roland V-Akkordeon FR-7b rot",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-298678181.htm",
		"", 1,
		"2020", "0",
		 3)
	
// ** 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();
			};
		};
