	// 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="147" height="18" 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/4catalank.jpg",
		100, 145,
		"N111", "4 catalanische Kinderlieder für Blockflötenquartett",
		"von Bertram Schattel", "",
		"6", "0",
		"2", 1,
		"Stück", "6",
		"", "pd1376000009.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/catklartitel.gif",
		100, 143,
		"N118", "Catalanisches Quartett",
		"für 4 Klarinetten von Bertram Schattel", "",
		"6", "0",
		"2", 1,
		"Stück", "6",
		"", "pd-1587625633.htm",
		"0::4::3;", 1,
		"22", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/bbaerkl.jpg",
		100, 145,
		"N116", "Billy Bär",
		"Heft und CD, von Johannes Münter", "",
		"13", "0",
		"2", 1,
		"Stück", "7",
		"", "pd666916098.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/cowkl.jpg",
		100, 143,
		"N122", "Cowboys in der 2. Lage",
		"Traditionals für Gitarre von Johannes Münter, Heft und CD", "",
		"8", "0",
		"2", 1,
		"Stück", "7",
		"", "pd1066863360.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/traink.jpg",
		100, 141,
		"N109", "Freight Train",
		"Traditionals, arrangiert von Johannes Münter", "",
		"4.6", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-2038765266.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/titelgiuli.jpg",
		100, 143,
		"N201", "Giuliani &amp; Co.",
		"Heft und CD, von Johannes Münter, leichte Duette für Gitarre", "",
		"11.25", "0",
		"2", 1,
		"Stück", "7",
		"", "pd280685324.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/giu2kl.jpg",
		100, 143,
		"NC102", "Giuliani &amp; Co. 2",
		"Heft und CD, von Johannes Münter", "",
		"11.5", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-650348518.htm",
		"1::11::10;", 1,
		"23", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/jinglek.gif",
		100, 143,
		"N117", "Jingle Bells, Heft 1",
		"Heft und CD, Weihnachtslieder für Gitarre arrangiert von Wilfried Emmerich", "",
		"10", "0",
		"2", 1,
		"Stück", "7",
		"", "pd1232927993.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/klwk.jpg",
		100, 143,
		"N112", "Kleine Weltreise",
		"für Gitarrenorchester, arrangiert von Johannes Münter", "",
		"6.2", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-1641549873.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/nvak.jpg",
		100, 141,
		"N103", "Nilpferd Variationen",
		"für Gitarre solo, von Johannes Münter", "",
		"4.6", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-1911900523.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/nduk.jpg",
		100, 141,
		"N102", "Nilpferd-Duos",
		"für Gitarre, von Johannes Münter", "",
		"4.5", "0",
		"2", 1,
		"Stück", "7",
		"", "pd493564619.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/schlagk.jpg",
		100, 141,
		"N101", "Schlagsaite",
		"25 Traditionals in Tabulaturschrift, von Johannes Münter", "",
		"7.67", "0",
		"2", 1,
		"Stück", "7",
		"", "pd-724033039.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/improk.jpg",
		100, 143,
		"N108", "Improvisation für Einsteiger/innen",
		"Heft und CD, von Jens Schöwing und Joh. Münter", "",
		"7.67", "0",
		"2", 1,
		"Stück", "8",
		"", "pd689036045.htm",
		"", 1,
		"24", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/rhjenstitel.jpg",
		100, 142,
		"N114", "Rhythmustraining",
		"von Jens Schöwing", "",
		"9.2", "0",
		"2", 1,
		"Stück", "8",
		"", "pd494636680.htm",
		"", 1,
		"24", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/titelmm1k.jpg",
		100, 141,
		"N113", "Mini Maus, Band 1",
		"Heft und CD, von Johannes Münter", "",
		"12.78", "0",
		"2", 1,
		"Stück", "9",
		"", "pd-618079681.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/titelmm2k.jpg",
		100, 143,
		"N110", "Mini Maus, Band 2",
		"Heft und CD, von Johannes Münter", "",
		"12.78", "0",
		"2", 1,
		"Stück", "9",
		"", "pd1853974149.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/sm1k.jpg",
		100, 140,
		"N104", "Speedy Maus, Band 1",
		"von Hans Wilhelm Kaufmann und Johannes Münter", "",
		"7.67", "0",
		"2", 1,
		"Stück", "9",
		"", "pd808657979.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/sm2k.jpg",
		100, 140,
		"N105", "Speedy Maus, Band 2",
		"von Hans Wilhelm Kaufmann und Johannes Münter", "",
		"7.67", "0",
		"2", 1,
		"Stück", "9",
		"", "pd-290901791.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/sm3k.jpg",
		100, 140,
		"N106", "Speedy Maus, Band 3",
		"von Hans Wilhelm Kaufmann und Johannes Münter", "",
		"7.67", "0",
		"2", 1,
		"Stück", "9",
		"", "pd1653204471.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/band1titel.jpg",
		100, 142,
		"N119", "all about drumming, Band 1",
		"Die Snare Drum von Heinrich Hock", "",
		"16", "0",
		"2", 1,
		"Stück", "10",
		"", "pd878858874.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/band2titel.jpg",
		100, 142,
		"N121", "all about drumming, Band 1 und 2",
		"von Heinrich Hock", "",
		"30", "0",
		"2", 1,
		"Stück", "10",
		"", "pd-1524095688.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/band2titel.jpg",
		100, 142,
		"N120", "all about drumming, Band 2",
		"Das Drum Set von Heinrich Hock", "",
		"18", "0",
		"2", 1,
		"Stück", "10",
		"", "pd724266534.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/clarm.jpg",
		100, 99,
		"C104", "Clarisma",
		"Klarinette und Piano", "",
		"12.78", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2080475751.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/fourtangok.jpg",
		100, 100,
		"00701-0", "4 &amp; more, Das Saxophonquartett",
		"Tango", "",
		"16.87", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1197546449.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/saxfourm.jpg",
		100, 99,
		"20079855", "4 &amp; more, Bremer Saxophonquartett",
		"Jazz, Pop, Tango und Klasssik", "",
		"16.87", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1479381419.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/kmsolm.jpg",
		100, 99,
		"85319", "20 Jahre",
		"Kreismusikschule Oldenburg", "",
		"12.78", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2030751115.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/clargonekl.jpg",
		100, 100,
		"C109", "Clarisma, gone to lunch",
		"Klarinette und Piano", "",
		"12.78", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1258673097.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/clazzm.jpg",
		100, 99,
		"703421", "First Clazz",
		"Cross Over, Gitarre, Piano und Drums", "",
		"12.78", "0",
		"1", 1,
		"Stück", "1",
		"", "pd544072479.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/checkinkl.jpg",
		100, 99,
		"10027", "Checkin’ up",
		"Hotel Blues", "",
		"16", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1069709678.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/glassm.jpg",
		100, 99,
		"4440", "Glasshouse",
		"Rock und Soul aus Hamburg", "",
		"12.78", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1153824076.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/gsqneverkl.jpg",
		100, 100,
		"699568", "Günther Späth Quartett",
		"Never Too Late", "",
		"14.5", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1717537882.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/jspm.jpg",
		100, 99,
		"20697", "Jens Schöwing",
		"Piano", "",
		"12.78", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2005700072.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/hardjazzm.jpg",
		100, 99,
		"280800", "Jens Schöwing Trio",
		"A Hard Jazz Night", "",
		"12.78", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1163855366.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/innervoices.gif",
		100, 85,
		"19027", "Möckelmann Klenke Ulrich",
		"Inner Voices", "",
		"16", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1379093596.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/jungrexm.jpg",
		100, 99,
		"6473", "Rafael Jung Trio",
		"Learning how to fly", "",
		"12.78", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1076548210.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/jungmem.jpg",
		100, 99,
		"6472", "Rafael Jung Trio",
		"Feat Corinna Meyer", "",
		"12.78", "0",
		"1", 1,
		"Stück", "2",
		"", "pd209552880.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/neverkl.gif",
		100, 101,
		"6475", "Rafael Jung Trio",
		"Never Take Five", "",
		"12", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-402416226.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/indigom.jpg",
		100, 99,
		"8506264", "Thomas Himmel Quartett",
		"Indigo", "",
		"12.78", "0",
		"1", 1,
		"Stück", "2",
		"", "pd551974140.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/voodoom.jpg",
		100, 93,
		"19007", "Voodoo Child",
		"Gospel of the Blues", "",
		"15.34", "0",
		"1", 1,
		"Stück", "2",
		"", "pd2095895434.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/saxfour2m.jpg",
		100, 98,
		"01799-6", "4 &amp; more, Bremer Saxophonquartett",
		"Barock", "",
		"16.87", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1223143209.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/fourm.jpg",
		100, 99,
		"C105", "Bremer Klarinettenquartett",
		"Fourtissimo", "",
		"12.78", "0",
		"1", 1,
		"Stück", "3",
		"", "pd306559.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/kammm.jpg",
		100, 98,
		"C106", "Die Kammersinfonie",
		"Werke von Beethoven u.a.", "",
		"10.23", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1608936389.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/brassm.jpg",
		100, 99,
		"66494", "Syke Brass",
		"Musik aus 4 Jahrhunderten", "",
		"10.23", "0",
		"1", 1,
		"Stück", "3",
		"", "pd928188961.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/trompetem.jpg",
		100, 99,
		"163329", "Trompete &amp; Orgel",
		"Buxtehude, Händel, Telemann", "",
		"10.23", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1371824439.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/TITELm.jpg",
		100, 142,
		"N123", "Jingle Bells für Fortgeschrittene",
		"Heft und CD, Weihnachtslieder für Gitarre arrangiert von Wilfried Emmerich", "",
		"10", "0",
		"2", 1,
		"Stück", "7",
		"", "pd742483496.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/titelbild4joygitm.jpg",
		100, 142,
		"N124", "Joy To The World",
		"80 Weihnachtslieder mit leichter Gitarrenbegleitung, von Johannes Münter", "",
		"10", "0",
		"2", 1,
		"Stück", "9",
		"", "pd-1032038250.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/v7titelbildjoytrom.jpg",
		100, 142,
		"N125", "Joy To The World",
		"80 Weihnachtslieder für B-Instrumente, von Ulrich Semrau", "",
		"10", "0",
		"2", 1,
		"Stück", "6",
		"", "pd-1494054732.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/TWPM.JPG",
		100, 99,
		"C108", "The Wetschnost Project",
		"Grabowski/Drewes", "",
		"12.78", "0",
		"1", 1,
		"Stück", "4",
		"", "pd206284266.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/rroekl.gif",
		100, 99,
		"220358", "Rolf Rötgers, Durchbruch",
		"mit &quot;musikalische Affären&quot;", "",
		"15", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-596436900.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/REGINEM.JPG",
		100, 99,
		"7351919", "Regine",
		"Lebensgefühle", "",
		"12.78", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1088547326.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/drykl.jpg",
		100, 98,
		"2911692", "Marco Drewes",
		"Dry", "",
		"13", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-494693552.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/luilk.jpg",
		100, 99,
		"090252", "lui lümmels’s lieblingslieder",
		"neue und alte Kinderlieder", "",
		"12.78", "0",
		"1", 1,
		"Stück", "4",
		"", "pd2554066.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/IKIM.JPG",
		100, 99,
		"9231-2", "Iki Dünya",
		"Istanbul", "",
		"12.78", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1344566524.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/goinkl.jpg",
		100, 95,
		"6474", "Gospel Inspiration",
		"Born by the Spirit", "",
		"12.78", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1328454042.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/frischerm.jpg",
		100, 99,
		"594248", "Frischer Wind",
		"Johannes Münter", "",
		"10.23", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-423333000.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/ALEGM.JPG",
		100, 95,
		"C103", "Alegria geral",
		"Samba Salada", "",
		"7.67", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1387955898.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/titelgeigem.jpg",
		100, 141,
		"N126", "Joy To The World",
		"80 Weihnachtslieder, für Violine von Stephan Steinkühler", "",
		"10", "0",
		"2", 1,
		"Stück", "11",
		"", "pd-2052101852.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/v7titelcellom.jpg",
		100, 141,
		"N127", "Joy To The World",
		"80 Weihnachtslieder, für Cello eingerichtet von Sabine Steinkühler", "",
		"10", "0",
		"2", 1,
		"Stück", "11",
		"", "pd-2106424334.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/tomakl.jpg",
		100, 100,
		"C117", "TomaSamba",
		"Memorias do Amanhã", "",
		"10", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1078503595.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/stephm.jpg",
		100, 98,
		"C107", "Musik an St. Stephanie",
		"Concerto Royal", "",
		"10.23", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1714640005.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/titelfeierkl2.jpg",
		100, 141,
		"N128", "Feierabend",
		"von Johannes Münter, 12 Stücke für Gitarrenorchester", "",
		"8", "0",
		"2", 1,
		"Stück", "7",
		"", "pd995982450.htm",
		"0::4::6;0::7::5.5;0::10::5;", 1,
		"23", "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();
			};
		};
