	// 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="13" 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/ctek_XS7000.jpg",
		160, 104,
		"CTEC XS 7000", "Ladegerät CTEK XS 7000 ",
		"6-stufiges vollautomatisches primär geschaltetes Batterieladegerät für alle 12V-Blei-Säure-Batterien, 14-225Ah.", "CTEK Schweden",
		"106", "1",
		"1", 1,
		"Stück", "0",
		"", "pd46099987.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS-1", "Suzuki GSX-R 1000 ab Bj. 2003 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Satz", "4",
		"", "pd-357010900.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS-2", "Kawasaki ZX-6RR 600 Ninja ab Bj. 2003 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Satz", "3",
		"", "pd-1437739974.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS-3", "Kawasaki ZX-6R 636 Ninja ab Bj. 2003 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Satz", "3",
		"", "pd1314047897.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS-4", "Kawasaki ZX-10R 1000 Ninja ab Bj. 2004 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Satz", "3",
		"", "pd1206467439.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/sbs634hs.jpg",
		160, 120,
		"SBS 634 HS-1", "Yamaha FZS 600 Facer ab Bj. 1998-2003 / FZS 1000 FAZER ab Bj. 2001 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "5",
		"", "pd-2107453528.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/sbs634hs.jpg",
		160, 120,
		"SBS 634 HS-2", "Yamaha YZF 600 R6 ab Bj. 1999-2004 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "5",
		"", "pd359783958.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/sbs634hs.jpg",
		160, 120,
		"SBS 634 HS-3", "Yamaha YZF 1000 R1 ab Bj. 1998 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "5",
		"", "pd-607548876.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/sbs634hs.jpg",
		160, 120,
		"SBS 634 HS-4", "Yamaha FJR 1300 ab Bj. 2001 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "5",
		"", "pd919325570.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/sbs634hs.jpg",
		160, 120,
		"SBS 634 HS-5", "Yamaha XJR 1300 ab Bj. 1999 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "5",
		"", "pd1293510016.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/sbs634hs.jpg",
		160, 120,
		"SBS 634 HS-6", "Yamaha XV 1700 Road Star Warrior ab Bj. 2003 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "5",
		"", "pd-362887250.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-3", "Kawasaki ZZR 600 ab Bj. 1990 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd-331326394.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-4", "Kawasaki GPZ 900R ab Bj. 1990 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd895415268.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-5", "Kawasaki ZZR 1100 ab Bj. 1990-2001 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd809503922.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-7", "Kawasaki ZZR 1200 ab Bj. 2002 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd393411550.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-8", "Suzuki GSX 400 S Katana ab Bj. 1992 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "4",
		"", "pd-2099905220.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-9", "Suzuki GSX-R 600 ab Bj. 1997-2003 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "4",
		"", "pd49139843.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/ctek_XS800.jpg",
		160, 104,
		"CTEK XS 800", "Ladegerät CTEK XS  800",
		"4-stufiges vollautomatisches primär geschaltetes Batterieladegerät für alle 12V-Blei-Säure-Batterien, 1,2-32Ah. Erhaltungsladung 1,2-100Ah", "CTEK Schweden",
		"35", "1",
		"1", 1,
		"Stück", "0",
		"", "pd1166280515.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS", "Kawasaki ZX-6R 600 F1-F3 (ZX6R Ninja) ab Bj. 1995-1997 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd-1099300320.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/sbs806hs.jpg",
		160, 120,
		"SBS 806 HS", "Suzuki GSX-R 600 / 750 / 1000  ab Bj. 2004 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "4",
		"", "pd1166394791.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS", "Honda ST 1100 ab Bj. 1990-2004 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1166442264.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-1", "Honda CB 600 Hornet ab Bj. 1998 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1166442883.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-2", "Honda CBR 600 F3  ab Bj. 1995-1998 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1608511337.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-3", "Honda VT 600 C Shadow ab Bj. 1994 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd-437262401.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-4", "Honda CB 750 N, F, Seven Fifty ab Bj. 1992 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1554329605.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-5", "Honda VFR 750 F ab Bj. 1988-1998 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd2020739515.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-6", "Honda CBR 1000 F ab Bj. 1989-1992 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd-211250591.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-7", "Honda ST 1100 Pan European ab Bj. 1990-2001 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd372122487.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-8", "Honda VT 1100 C Shadow ab Bj. 1994-1996 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd-1415728515.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-9", "Honda VT 1100 C2 Shadow ab Bj. 1995 vorne / C3 Shadow Aero ab Bj. 1998",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd738847833.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-10", "Honda VTX 1300 C ab Bj. 2004 vorne / S ab Bj. 2003",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1613753903.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-11", "Honda GL 1500 F6 C Valkyrie ab Bj. 1996-2002 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd-1587520523.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-13", "Suzuki RF 600 R ab Bj. 1993-1996 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "4",
		"", "pd-1499603631.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/sbs627hs.jpg",
		160, 120,
		"SBS 627 HS-12", "Suzuki GSF 600 N, S, Bandit ab Bj. 1995-1999 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "4",
		"", "pd-1216162005.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/sbs593hs.jpg",
		160, 120,
		"SBS 593 HS", "Honda VFR 400 R ab Bj. 1987-1990 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"51.8", "0",
		"1", 1,
		"Satz", "2",
		"", "pd-921535563.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/sbs593hs.jpg",
		160, 120,
		"SBS 593 HS-1", "Honda CBR 600 F Super Sport ab Bj. 1991-1994 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"51.8", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1841888491.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/sbs593hs.jpg",
		160, 120,
		"SBS 593 HS-2", "Honda CBR 600 F Hurricane ab Bj. 1987-1990 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"51.8", "0",
		"1", 1,
		"Satz", "2",
		"", "pd451901713.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/MVC-032S.jpg",
		160, 120,
		"0107", "Kettenkit D.I.D YAMAHA FZS 1000 FAZER ab Bj. 2001",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"145", "5",
		"1", 1,
		"Stück", "12",
		"", "pd1167339910.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/MVC-295S.jpg",
		160, 120,
		"0108", "Kettenkit D.I.D YAMAHA FZR 1000 EXUP ab Bj. 1989 - 1995",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"119", "5",
		"1", 1,
		"Stück", "12",
		"", "pd969132836.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/MVC-143S.jpg",
		160, 120,
		"0109", "Kettenkit D.I.D APRILIA RSV MILLE / R / SP / TUONO ab Bj. 1998 - 2003",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"134", "5",
		"1", 1,
		"Stück", "7",
		"", "pd-471484942.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/MVC-114S.jpg",
		160, 120,
		"0110", "Kettenkit D.I.D HONDA VTR 1000 F ab Bj. 1997 - 1999",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"145", "5",
		"1", 1,
		"Stück", "9",
		"", "pd1963273247.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/MVC-094S.jpg",
		160, 120,
		"0111", "Kettenkit D.I.D HONDA VFR 750 F ab Bj. 1990 - 1997",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"121", "5",
		"1", 1,
		"Stück", "9",
		"", "pd-1910404251.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/MVC-009S.jpg",
		160, 120,
		"0112", "Kettenkit D.I.D HONDA XL 1000 V VARADERO ab Bj. 1999",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"114", "5",
		"1", 1,
		"Stück", "9",
		"", "pd1327977499.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/MVC-305S.jpg",
		160, 120,
		"0113", "Kettenkit D.I.D HONDA CBR 1100 XX ab Bj. 1997",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"145", "5",
		"1", 1,
		"Stück", "9",
		"", "pd-220437567.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/MVC-090S.jpg",
		160, 120,
		"0114", "Kettenkit D.I.D YAMAHA YZF 1000 R1 ab Bj. 1998",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"145", "5",
		"1", 1,
		"Stück", "12",
		"", "pd1220531159.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/MVC-810S.jpg",
		160, 120,
		"Accumate 612", "Ladegerät Accumate 6 / 12V",
		"Automatisches interaktives Lade- und Frischhaltgerät für alle 6 und 12 Volt Blei-Säure Batterien, Gel-Batterien, wartungsfreie Kfz-Batterien und versiegelte MF-Motorrad Batterien", "Tecmate Belgien",
		"36.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1168441556.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/MVC-118S.jpg",
		160, 120,
		"0115", "Kettenkit D.I.D BMW F 650 GS DAKAR ab  Bj. 2001 ",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"89", "5",
		"1", 1,
		"Stück", "8",
		"", "pd-1187574474.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/MVC-884S.jpg",
		160, 120,
		"0101", "Kettenkit D.I.D YAMAHA YZF 1000 R THUNDERACE ab  Bj. 1996 - 2000 Leistung über 100PS",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"145", "5",
		"1", 1,
		"Stück", "12",
		"", "pd380709197.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/MVC-078S.jpg",
		160, 120,
		"0116", "Kettenkit D.I.D TRIUMPH DAYTONA 955 i ab  Bj. 1998 - 2001  /  SPEED TRIPLE T509 ab  Bj. 1998 ",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"124", "5",
		"1", 1,
		"Stück", "11",
		"", "pd1168717663.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-1", "Kawasaki ZX-6R 600 E1-E5 (ZX6 Ninja) ab Bj. 1993-1997 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd1804549786.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/sbs631hs.jpg",
		160, 120,
		"SBS 631 HS-2", "Kawasaki ZX-6R 600 D1-D4 (ZX6) ab Bj. 1990-1993 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"49.9", "0",
		"1", 1,
		"Satz", "3",
		"", "pd1533799820.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS-5", "Kawasaki ZX-12R 1200 Ninja ab Bj. 2004 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1719178443.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS", "Suzuki Intruder 1600 ab Bj. 2005 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Satz", "4",
		"", "pd-1600167090.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/sbs788hs.jpg",
		160, 120,
		"SBS 788 HS-6", "Kawasaki VN 1600 Mean Streak ab Bj. 2005 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"76.4", "0",
		"1", 1,
		"Satz", "3",
		"", "pd-560629653.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/MVC-082S.jpg",
		160, 120,
		"0120", "Kettenkit D.I.D KAWASAKI 1100 ZEPHYR ab Bj. 1992 - 1997 ",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"126", "5",
		"1", 1,
		"Stück", "10",
		"", "pd1176733599.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/MVC-030S.jpg",
		160, 120,
		"0121", "Kettenkit D.I.D KAWASAKI ZZR 600 ab Bj. 1993",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"124", "5",
		"1", 1,
		"Stück", "10",
		"", "pd2013876290.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/MVC-147S.jpg",
		160, 120,
		"0122", "Kettenkit D.I.D KAWASAKI ZX7R ab Bj. 1996",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"114", "5",
		"1", 1,
		"Stück", "10",
		"", "pd-1580369856.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/MVC-036S.jpg",
		160, 120,
		"0123", "Kettenkit D.I.D KAWASAKI Z9R ab Bj. 1994 - 1997",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"124", "5",
		"1", 1,
		"Stück", "10",
		"", "pd1176738091.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/MVC-159S.jpg",
		160, 120,
		"0124", "Kettenkit D.I.D KAWASAKI GPZ 900R ab Bj. 1990",
		"Kettensatz bestehend aus Kette, Kettenrad, Ritzel", "DID ",
		"124", "5",
		"1", 1,
		"Stück", "10",
		"", "pd-353079471.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/sbs809hs.jpg",
		160, 120,
		"SBS 809 HS", "Honda CBR 600 RR ab Bj. 2005 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1314219335.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/sbs809hs.jpg",
		160, 120,
		"SBS 809 HS-1", "Honda CBR 1000 RR ab Bj. 2004 vorne",
		"Scheibenbremsbeläge vorne", "SBS Scandinavian Brake Systems",
		"56.4", "0",
		"1", 1,
		"Satz", "2",
		"", "pd1165748931.htm",
		"", 1,
		"18", "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();
			};
		};
