	// 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="115" height="48" alt="BtnAddToBag.gif" 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/Judo_Bleached_1s.gif",
		150, 110,
		"J-101-1", "Light weight, Single weave Judo-Uniform, white",
		"100% Cotton, 14 oz, no belt", "",
		"31", "1.3",
		"1", 1,
		"Pieces", "1",
		"Size;120cm@", "pd-1319970443.htm",
		"", 1,
		"J U D O", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Judo_UnBleached_1s.gif",
		150, 113,
		"J-103-1", "Medium weight, Single weave Judo-Uniform, white",
		"100% Cotton, 16 oz, no belt", "",
		"43", "1.3",
		"1", 1,
		"Stückzahl", "1",
		"Size;120cm@", "pd-2125276908.htm",
		"", 1,
		"J U D O", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Judo_Blue_s.gif",
		150, 117,
		"J-105-2", "Semi weight, Double Weave Judo-Uniform, white or blue",
		"100% Cotton, 24 oz, no belt", "",
		"74", "1.6",
		"1", 1,
		"Stückzahl", "1",
		"Size;120cm@Color;White@", "pd-1366651553.htm",
		"", 1,
		"J U D O", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Judo_Blue_s.gif",
		150, 117,
		"J-106-2", "Double Weave Judo-Uniform, white or blue",
		"100% Cotton, 28 oz, no belt", "",
		"96", "3",
		"1", 1,
		"Stückzahl", "1",
		"Size;160cm@Color;White@", "pd-20787547.htm",
		"", 1,
		"J U D O", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/JuJitsu1_150px.gif",
		150, 148,
		"JJ-101-1", "Medium weight, Single weave Ju-Jitsu-Uniform",
		"100% Cotton, 16 oz, no belt", "",
		"58.5", "1.5",
		"1", 1,
		"Stückzahl", "8",
		"Size;120cm@", "pd1057871102.htm",
		"", 1,
		"JiuJiutsu", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/JuJitsu1_150px.gif",
		150, 148,
		"JJ-102-1", "Medium weight, Canvas Ju-Jitsu-Uniform, white",
		"100% Cotton, 12 oz, no belt", "",
		"68.6", "1.7",
		"1", 1,
		"Stückzahl", "8",
		"Size;120cm@", "pd-1740862438.htm",
		"", 1,
		"JiuJiutsu", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/JuJitsu1_150px.gif",
		150, 148,
		"JJ-103-1", "Medium weight, Special Ju-Jitsu-Uniform, white",
		"100% Cotton, 16 oz, no belt", "",
		"70.3", "1.7",
		"1", 1,
		"Stückzahl", "8",
		"Size;120cm@", "pd-672232458.htm",
		"", 1,
		"JiuJiutsu", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/JuJitsuBlue_150px.gif",
		150, 67,
		"JJ-104-2", "Medium weight, Special Ju-Jitsu-Uniform, white or blue",
		"100% Cotton, 23 oz, no belt", "",
		"90.9", "2.5",
		"1", 1,
		"Stückzahl", "8",
		"Size;160cm@Color;White@", "pd-1134746538.htm",
		"", 1,
		"JiuJiutsu", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Belts_colored_s.gif",
		150, 115,
		"B-101-8", "Belt, 1.75&quot; - 4cm single color",
		"single color, 100% Cotton", "",
		"9.5", "0.3",
		"1", 1,
		"Stückzahl", "14",
		"Belt-Sizes;220cm@Belt-Colors;white@", "pd132572398.htm",
		"", 1,
		"BELTS", "30",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Belts_HalfColored_s.gif",
		98, 150,
		"B-102-8", "Belt, 1.75&quot; - 4cm dual color",
		"Dual color, 100% Cotton", "",
		"11.5", "0.3",
		"1", 1,
		"Stückzahl", "14",
		"Belt-Sizes;220cm@Belt-Colors Dual;white-yellow-white@", "pd-729119881.htm",
		"", 1,
		"BELTS", "30",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Karate_Bleached_s.gif",
		150, 119,
		"K-102-1", "Light weight, Karate-Uniform, white",
		"100% Cotton, 8 oz, no belt", "",
		"32", "1",
		"1", 1,
		"Pieces", "2",
		"Size;110cm@", "pd1057933040.htm",
		"", 1,
		"KARATE", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Karate_Bleached_s.gif",
		150, 119,
		"K-103-1", "Light weight, Karate-Uniform, white",
		"65% Cotton - 35% Polystre, 8 oz, no belt", "",
		"28", "1.1",
		"1", 1,
		"Pieces", "2",
		"Size;120cm@", "pd-34729556.htm",
		"", 1,
		"KARATE", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Karate_Black_s.gif",
		150, 124,
		"K-105-2", "Light weight, Karate-Uniform, white or black",
		"100% Cotton - CANVAS, 10 oz, no belt", "",
		"46", "1.1",
		"1", 1,
		"Pieces", "2",
		"Size;120cm@Color;White@", "pd1529628456.htm",
		"1::1::10;", 1,
		"KARATE", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Karate_Black_s.gif",
		150, 124,
		"K-106-2", "Medium weight, Karate-Uniform, white or black",
		"100% Cotton - CANVAS, 12 oz, no belt", "",
		"58", "1.2",
		"1", 1,
		"Pieces", "2",
		"Size;120cm@Color;White@", "pd1596560653.htm",
		"", 1,
		"KARATE", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Belts_colored_s.gif",
		150, 115,
		"B-103-1", "Belt, 1.75&quot; - 4cm white, Starter-Kit",
		"white, 100% Cotton", "",
		"3", "0.3",
		"1", 1,
		"Stückzahl", "14",
		"Belt-Sizes;220cm@Belt-Colors;white@", "pd1058040612.htm",
		"", 1,
		"BELTS", "30",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Karate_Black_s.gif",
		150, 124,
		"K-108-2", "Medium weight, Karate-Uniform, white or black",
		"100% Cotton - CANVAS, 16 oz, no belt", "",
		"81", "1.7",
		"1", 1,
		"Pieces", "2",
		"Size;150cm@Color;White@", "pd1058093960.htm",
		"", 1,
		"KARATE", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Judo_BlueWhite_s.gif",
		150, 117,
		"J-10A-1", "Special Competition DoubleSided Judo-Uniform, white/blue",
		"100% Cotton, 31 oz, no belt", "",
		"186", "4.4",
		"1", 1,
		"Stückzahl", "1",
		"Size;160cm@", "pd1062539135.htm",
		"", 1,
		"J U D O", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Taekwondo_WhiteNeck_s.gif",
		150, 100,
		"T-103-1", "Traditional Taekwondo-Uniform, white or black neck",
		"65% Cotton - 35% Polystre, 8 oz, no belt", "",
		"44", "1.1",
		"1", 1,
		"Pieces", "10",
		"Size;120cm@", "pd327209982.htm",
		"", 1,
		"TAEKWONDO", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Taekwondo_BlackNeck_s.gif",
		150, 128,
		"T-102-1", "Traditional Taekwondo-Uniform, white or black neck",
		"100% Cotton, 9 oz, no belt", "",
		"38", "1",
		"1", 1,
		"Pieces", "10",
		"Size;120cm@", "pd1228140965.htm",
		"", 1,
		"TAEKWONDO", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/BO_All_s.gif",
		150, 107,
		"BO-D30-H-20", "BO - Stick, Hardwood, Natural Design",
		"Straight ends, diameter 30mm", "",
		"47", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;180cm@Wood-Design;Red/Brown Wood@", "pd471830631.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/BO_All_s.gif",
		150, 107,
		"BO-D30-H-2-1", "BO - Stick, Fire-Hardend Hardwood, Natural Design",
		"Straight ends, diameter 30mm", "",
		"109", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;160cm@Wood-Design;Nature@", "pd989886657.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/KALI_All_s.gif",
		150, 98,
		"KA-D25-2-1", "KALI - Stick, Natural Design",
		"Length 670mm, diameter 25mm", "",
		"22", "0.5",
		"1", 1,
		"Stückzahl", "27",
		"Wood-Design;Nature@", "pd1052490986.htm",
		"", 1,
		"KALI", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Bo_s.gif",
		150, 54,
		"BO-D25-H-20", "BO - Stick, Semi-Hardwood, Natural Design",
		"Straight ends, diameter 25mm", "",
		"44", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;180cm@Wood-Design;Red/Brown Wood@", "pd-362477087.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/BO_All_s.gif",
		150, 107,
		"BO-D30-H-3-1", "BO - Stick, Fire-Hardend Hardwood, Natural Design",
		"Small ends, diameter 30mm", "",
		"135", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;160cm@Wood-Design;Nature@", "pd497563619.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/BO_Travel_s.gif",
		150, 113,
		"BO-D30-H-5-1", "BO - Stick TRAVEL, Hardwood, Natural Design",
		"Small ends, diameter 30mm", "",
		"154", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;160cm@Wood-Design;Nature@", "pd-803330219.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/BO_Travel_s.gif",
		150, 113,
		"BO-D30-H-4-1", "BO - Stick TRAVEL, Hardwood, Natural Design",
		"Straight ends, diameter 30mm", "",
		"139", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;160cm@Wood-Design;Nature@", "pd-759668553.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Bo_s.gif",
		150, 54,
		"BO-D25-H-1-20", "BO - Stick, Semi-Hardwood, Natural Design",
		"Small ends, diameter 25mm", "",
		"59", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;180cm@Wood-Design;Red/Brown Wood@", "pd845832568.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/BO_All_s.gif",
		150, 107,
		"BO-D30-H-1-20", "BO - Stick, Hardwood, Natural Design",
		"Small ends, diameter 30mm", "",
		"63", "1.5",
		"1", 1,
		"Stückzahl", "28",
		"Size;180cm@Wood-Design;Red/Brown Wood@", "pd845369548.htm",
		"", 1,
		"BO", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/KALI_All_s.gif",
		150, 98,
		"KA-D25-1-1", "KALI - Stick, Natural Design",
		"Length 600mm, diameter 20mm", "",
		"19", "0.5",
		"1", 1,
		"Stückzahl", "27",
		"Wood-Design;Nature@", "pd1936584487.htm",
		"", 1,
		"KALI", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Kali_Hardwoold_s.gif",
		150, 113,
		"KA-D25-3-1", "KALI - Stick, Hardwood, Natural Design",
		"Length 670mm, diameter 22mm", "",
		"26", "0.5",
		"1", 1,
		"Stückzahl", "27",
		"Wood-Design;Nature@", "pd-707725447.htm",
		"", 1,
		"KALI", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/Belts_colored_s.gif",
		150, 115,
		"B-104-1", "Belt, 2.00&quot; - 5cm single color",
		"single color, 100% Cotton", "",
		"16", "0.4",
		"1", 1,
		"Stückzahl", "14",
		"Belt-Sizes;220cm@Belt-Colors;black@", "pd1493244316.htm",
		"", 1,
		"BELTS", "30",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/KungFu_Black_White_s.jpg",
		150, 125,
		"KF-102-1", "KUNG-FU - Uniform, Full black with white Cuf &amp; Coler",
		"100% Cotton, 8 oz, no belt", "",
		"51", "1",
		"1", 1,
		"Pieces", "11",
		"Size;120cm@Color;Black@", "pd-646255219.htm",
		"", 1,
		"KUNG-FU", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/KungFu_White_s.jpg",
		150, 136,
		"KF-101-2", "KUNG-FU - Uniform, Full white or black",
		"100% Cotton, 8 oz, no belt", "",
		"37", "1",
		"1", 1,
		"Pieces", "11",
		"Size;120cm@Color;White@", "pd318416096.htm",
		"", 1,
		"KUNG-FU", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/KungFu_Black.jpg",
		150, 130,
		"KF-103-1", "KUNG-FU - Uniform, Full black",
		"65% Cotton - 35% Polystre, 8 oz, no belt", "",
		"52", "1",
		"1", 1,
		"Pieces", "11",
		"Size;120cm@", "pd-927625439.htm",
		"", 1,
		"KUNG-FU", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Embrodery_s.jpg",
		150, 99,
		"EMBRODERY-1", "Embrodery Batch or Direct-Stitched, 10 x 10cm",
		"up to four colors, size up to 100x100mm", "",
		"5.9", "0.05",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-1662658230.htm",
		"", 25,
		"SPECIALS", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/LogoRund_MartialWear.gif",
		100, 100,
		"EMBRODERY-2", "Embrodery Machine costs, 10 x 10cm",
		"per order fix price, select by each embrodery order", "",
		"155", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-341292920.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"J-TR101-4", "Trouser JUDO, light weight",
		"7oz, 100% cotton, inforced knees", "",
		"24", "0.5",
		"1", 1,
		"Stückzahl", "22,1",
		"Size;120cm@Color;White@Design;Tied waist@", "pd2104472477.htm",
		"", 1,
		"Trousers,J U D O", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"J-TR102-4", "Trouser JUDO, medium weight",
		"9oz, 100% cotton, inforced knees", "",
		"30", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1",
		"Size;120cm@Color;White@Design;Tied waist@", "pd1280546579.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"J-TR103-4", "Trouser JUDO, heavy weight",
		"12oz, 100% cotton, inforced knees", "",
		"44", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1",
		"Size;120cm@Color;White@Design;Tied waist@", "pd-1811948299.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"JJ-TR101-4", "Trouser JIU-JUITSU, light weight",
		"7oz, 100% cotton, inforced knees", "",
		"23", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8",
		"Size;120cm@Color;White@Design;Tied waist@", "pd1079905391.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"JJ-TR102-4", "Trouser JIU-JUITSU, medium weight",
		"9oz, 100% cotton, inforced knees", "",
		"29", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8",
		"Size;120cm@Color;White@Design;Tied waist@", "pd-436416290.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/Trouser_KarateBlack.jpg",
		150, 113,
		"TR-Elastic", "Elastic waist design",
		"Elastic waist instead of standard tied waist", "",
		"6", "0",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24",
		"", "pd-2064416609.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Massband_S.jpg",
		150, 103,
		"Inter-Sizes-5", "Intersizes for standard uniforms",
		"Sizes in 5cm steps, example 165cm", "",
		"10", "0.2",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9",
		"InterSizes;165cm@", "pd1079908670.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"K-TR101-4", "Trouser KARATE, light weight",
		"7oz, 100% cotton, straight legs", "",
		"22", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2",
		"Size;120cm@Color;White@Design;Tied waist@", "pd-1571357024.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"K-TR102-4", "Trouser KARATE, medium weight",
		"12oz, 100% cotton, straight legs", "",
		"34", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2",
		"Size;120cm@Color;White@Design;Tied waist@", "pd-524909106.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"K-TR103-4", "Trouser KARATE, light weight",
		"7oz, Cotton/Polystre Mix, straight legs", "",
		"24", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2",
		"Size;120cm@Color;White@Design;Tied waist@", "pd-469045870.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Trouser_KarateBlack1.jpg",
		150, 161,
		"JJ-TR103-4", "Trouser JIU-JUITSU, Canvas-Quality",
		"12oz, 100% cotton Canvas", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8",
		"Size;120cm@Color;White@Design;Tied waist@", "pd-909679058.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/hakama pant.jpg",
		150, 225,
		"HK-101-1", "HAKAMA Trouser, Traditional style",
		"8oz, 100% cotton", "",
		"89", "1",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9",
		"Size;150cm@Color;Black@", "pd-704717919.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/hakama.jpg",
		150, 179,
		"HK-102-1", "HAKAMA Trouser, Traditional style",
		"8oz, Cotton/Polystre Mix", "",
		"109", "1",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9",
		"Size;150cm@Color;Black@", "pd520789611.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/Karate_Glove7.jpg",
		150, 144,
		"KG-101-2", "Karate Gloves COMPETION - PU",
		"PU - Material, Red or Blue", "",
		"39", "0.5",
		"1", 1,
		"Pair/Paar", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16",
		"Color;Blue@Sizes;Medium@", "pd-468301412.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Karate_Glove5.jpg",
		150, 157,
		"KG-102-6", "Karate Gloves FULL-CONTACT - PU",
		"PU - Material, Red or Blue", "",
		"58", "0.5",
		"1", 1,
		"Pair/Paar", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16",
		"Color;Red@Sizes;Medium@", "pd627388389.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Aikido_Jacket1_s.jpg",
		150, 167,
		"HJ-101-3", "AIKIDO-Uniform, single weave fabric",
		"100% cotton, straight jacket, trouser, no belt", "",
		"84", "2.5",
		"1", 1,
		"Stückzahl", "9",
		"Size;150cm@Color;White@", "pd1788969696.htm",
		"", 1,
		"AIKIDO", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/KungFu_Southern1_s.jpg",
		150, 125,
		"KF-102-1", "KUNG-FU - Uniform, Southern Style, Black with colored stripes",
		"100% Cotton, 8 oz, no belt", "",
		"45", "1",
		"1", 1,
		"Pieces", "11",
		"Size;120cm@Color;Black@", "pd1084100567.htm",
		"", 1,
		"KUNG-FU", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/TowelsColored.gif",
		150, 105,
		"Towel-1-5", "Shower Towel, 71 x 140cm with embroderies",
		"OWN DESIGN, 100% cotton, Soft-Frotté, 525GSM", "",
		"33", "0.8",
		"1", 1,
		"Stückzahl", "24",
		"Color;White@", "pd-458023791.htm",
		"0::1::0;0::1::20.45;", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/TowelsColored.gif",
		150, 105,
		"Towel-2-5", "Shower Towel, 71 x 140cm with embroderies",
		"SAMURAI, 100% cotton, Soft-Frotté, 525GSM", "",
		"33", "0.8",
		"1", 1,
		"Stückzahl", "24",
		"Color;White@", "pd-112297689.htm",
		"0::1::0;0::1::20.45;", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/TowelsColored.gif",
		150, 105,
		"Towel-3-5", "Shower Towel, 71 x 140cm with embroderies",
		"SHAOLIN, 100% cotton, Soft-Frotté, 525GSM", "",
		"33", "0.8",
		"1", 1,
		"Stückzahl", "24",
		"Color;White@", "pd-1554673280.htm",
		"0::1::0;0::1::20.45;", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/TowelsColored.gif",
		150, 105,
		"Towel-4-5", "Bath Towel, 100 x 150cm with embroderies",
		"OWN DESIGN, 100% cotton, Soft-Frotté, 525GSM", "",
		"42", "1",
		"1", 1,
		"Stückzahl", "24",
		"Color;White@", "pd656061205.htm",
		"0::1::0;0::1::26.95;", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/TowelsColored.gif",
		150, 105,
		"Towel-5-5", "Bath Towel, 100 x 150cm with embroderies",
		"SAMURAI, 100% cotton, Soft-Frotté, 525GSM", "",
		"42", "1",
		"1", 1,
		"Stückzahl", "24",
		"Color;White@", "pd1510969974.htm",
		"0::1::0;0::1::26.95;", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/TowelsColored.gif",
		150, 105,
		"Towel-6-5", "Bath Towel, 100 x 150cm with embroderies",
		"SHAOLIN, 100% cotton, Soft-Frotté, 525GSM", "",
		"42", "1",
		"1", 1,
		"Stückzahl", "24",
		"Color;White@", "pd1061690355.htm",
		"0::1::0;0::1::26.95;", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/ShaolinUniform_s.jpg",
		150, 123,
		"KF-105-1", "SHAOLIN - Uniform, with accessories",
		"100% Cotton, 8 oz, orange", "",
		"92", "1.5",
		"1", 1,
		"Pieces", "11",
		"Size;120cm@", "pd-1742623588.htm",
		"", 1,
		"KUNG-FU", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/NinjaUniform.gif",
		150, 109,
		"N-101-2", "NINJA-Uniform, no Accessories",
		"100% Cotton, Black", "",
		"91", "2",
		"1", 1,
		"Stückzahl", "13",
		"Size;120cm@Color;Black@Design;Tied waist@", "pd1121573599.htm",
		"", 1,
		"N I N J A", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/NinjaUniform.gif",
		150, 109,
		"N-102-2", "NINJA-Uniform, with Accessories",
		"100% Cotton, Black", "",
		"97", "2",
		"1", 1,
		"Stückzahl", "13",
		"Size;120cm@Color;Black@Design;Tied waist@", "pd-1509527689.htm",
		"", 1,
		"N I N J A", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/NinjaUniform.gif",
		150, 109,
		"N-103-2", "NINJA-Uniform, with Accessories",
		"35 Polyester - 65% Cotton Mix, Black", "",
		"76", "2",
		"1", 1,
		"Stückzahl", "13",
		"Size;120cm@Color;Black@Design;Tied waist@", "pd-180230599.htm",
		"", 1,
		"N I N J A", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Taekwondo_BlackNeck_s.gif",
		150, 128,
		"T-104-1", "Competition Taekwondo-Uniform, white or black neck",
		"100% Cotton, 9 oz, no belt", "",
		"46", "1",
		"1", 1,
		"Pieces", "10",
		"Size;120cm@", "pd-964868325.htm",
		"", 1,
		"TAEKWONDO", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Taekwondo_WhiteNeck_s.gif",
		150, 100,
		"T-105-1", "Competition Taekwondo-Uniform, white or black neck",
		"65% Cotton - 35% Polystre, 8 oz, no belt", "",
		"52", "1.1",
		"1", 1,
		"Pieces", "10",
		"Size;120cm@", "pd-1279714682.htm",
		"", 1,
		"TAEKWONDO", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/MasterBelt_rb_s.jpg",
		150, 113,
		"B-105-5", "Master-Belt, 2.00&quot; - 5cm - Ying-Yang Style",
		"double-color, 100% Cotton", "",
		"38", "0.4",
		"1", 1,
		"Stückzahl", "14",
		"Belt-Sizes;320cm@Belt-Colors Dual;black-red@", "pd1094110876.htm",
		"", 1,
		"BELTS", "30",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/HeadGuard_2.jpg",
		150, 193,
		"BHG-103-1", "Boxing Head Guard - PU",
		"PU - Material, Red, Blue or White", "",
		"58", "1",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17",
		"Color;Blue@Sizes;Large@", "pd452154436.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/ChestGuard_Reversible.jpg",
		151, 124,
		"CGU-101-1", "Chest Guard reversible - PU",
		"PU - Material, Red and Blue", "",
		"81", "2",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17",
		"Sizes;Large@", "pd770679882.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/Hakama_Folded.jpg",
		150, 113,
		"HK-103-1", "HAKAMA Trouser, OKINAWA Style",
		"8oz, 100% cotton, long cords", "",
		"163", "1",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17,9,22",
		"Size;150cm@Color;Black@", "pd1101644474.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY,AIKIDO,Trousers", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Karate_Bleached_s.gif",
		150, 119,
		"K-110-2", "KAMIKAZE Style -  Karate-Uniform",
		"100% Cotton - SOFT CANVAS, 16 oz, no belt", "",
		"116", "1.9",
		"1", 1,
		"Pieces", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17,9,22,2,8",
		"Size;150cm@Color;White@", "pd1334698334.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY,AIKIDO,Trousers,KARATE,JiuJiutsu", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Samurai_Watch_3.jpg",
		150, 113,
		"W-101-1", "Sport Watch - BUDO-Design",
		"WMC edition quality watch with presentation box", "",
		"92.1", "0.3",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17,9,22,2,8,24,20",
		"Sizes;Large@", "pd-988913368.htm",
		"0::1::79;", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY,AIKIDO,Trousers,KARATE,JiuJiutsu,SPECIALS,AccsSpecia", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Fleece_Jacket_Grey_MWs.gif",
		150, 135,
		"FLEECE-1-7", "FLEECE-Jacket with embroderies",
		"Strong Fleece-Material with zipper, two pockets also with zipper", "",
		"87", "1",
		"1", 1,
		"Stückzahl", "23",
		"Size_Jackets;Kids S /134cm@", "pd1069940520.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/JoggingDress_Grey_s.jpg",
		150, 109,
		"TS-301-8", "Training Suit , Micro-Soft material",
		"Various colors in your own design", "",
		"76", "1",
		"1", 1,
		"Stückzahl", "23",
		"Size_Jackets;Kids S /134cm@", "pd937716314.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/JoggingDress_Black_s.jpg",
		150, 138,
		"TS-302-8", "Training Suit , Super-Soft material",
		"Various colors in your own design", "",
		"80", "1",
		"1", 1,
		"Stückzahl", "23",
		"Size_Jackets;Kids S /134cm@", "pd506125878.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/JoggingDress_Blue_s.jpg",
		150, 123,
		"TS-303-8", "Training Suit , Taslon material",
		"Various colors in your own design", "",
		"63", "1",
		"1", 1,
		"Stückzahl", "23",
		"Size_Jackets;Kids S /134cm@", "pd-1556381672.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/JoggingDress_Black_s.jpg",
		150, 138,
		"TS-302-8", "Training Suit , Taslon water-resistent material",
		"Various colors in your own design", "",
		"87", "1",
		"1", 1,
		"Stückzahl", "23",
		"Size_Jackets;Kids S /134cm@", "pd1828497750.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Sport_Bag1_s.jpg",
		150, 146,
		"SB-101-7", "Sport Bag - Nylon water-resistent",
		"4-pocket sport bag with zippers and strap", "",
		"47", "2",
		"1", 1,
		"Stückzahl", "23",
		"Color;Blue@Sizes;Small@", "pd939060869.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/BoxGlove_7.jpg",
		150, 141,
		"BX-101-1", "Boxing Gloves - COW",
		"Cow Hide Leather, velro lock", "",
		"97", "1",
		"1", 1,
		"Pair/Paar", "16",
		"Color;Black@Sizes;10oz@", "pd-207178784.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/BoxingGlovesPRO_s.gif",
		150, 149,
		"BX-102-1", "Boxing Gloves - PRO",
		"Buffalo Leather, velcro lock", "",
		"84", "1",
		"1", 1,
		"Pair/Paar", "16",
		"Color;Black@Sizes;10oz@", "pd125690348.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Glove_Cotton3.jpg",
		150, 103,
		"CG-102-1", "Cotton Gloves, Protection",
		"White, with Padding, elastic", "",
		"33", "0.4",
		"1", 1,
		"Pair/Paar", "16",
		"Sizes;Large@", "pd528651221.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/HandBandagen1_s.jpg",
		150, 91,
		"HB-101-8", "Hand Bandage Boxing",
		"100% Cotton, length 400cm", "",
		"11", "0.1",
		"1", 1,
		"Pair/Paar", "16",
		"Color;Red@Design;Non-Elastic@", "pd-947182894.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/HeadGuard_3.jpg",
		150, 195,
		"BHG-101-1", "Boxing Head Guard - COW",
		"Leather - Material, Red, Blue or Black", "",
		"132", "1",
		"1", 1,
		"Stückzahl", "17",
		"Color;Black@Sizes;Large@", "pd1015402030.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/HeadGuard_4.jpg",
		150, 195,
		"BHG-104-1", "Fullcontact Head Guard - COW",
		"Leather - Material Red, with Full-Face-Protector Black", "",
		"156", "1",
		"1", 1,
		"Stückzahl", "17",
		"Color;Red@Sizes;Large@", "pd1090418834.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/HeadGuard_4.jpg",
		150, 195,
		"BHG-105-1", "Fullcontact Head Guard - PU",
		"PU - Material Red, with Full-Face-Protector Black", "",
		"134", "1",
		"1", 1,
		"Stückzahl", "17",
		"Color;Red@Sizes;Large@", "pd1093004244.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Leg_Cotton1.jpg",
		150, 173,
		"LC-101-1", "Cotton Leg, Standard",
		"White, elastic", "",
		"26", "0.3",
		"1", 1,
		"Pair/Paar", "17",
		"Sizes;Large@", "pd-843886069.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Leg_Cotton2.jpg",
		150, 173,
		"LC-102-1", "Cotton Leg, Protection",
		"White, with step, elastic", "",
		"34", "0.4",
		"1", 1,
		"Pair/Paar", "17",
		"Color;White@Sizes;Large@", "pd590500657.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/ShinGuardPU_s.jpg",
		150, 162,
		"LP-101-1", "Shin Guard, Protection - PU",
		"with elastic stripes", "",
		"42", "0.4",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd1092836657.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/ShinGuardShoe.gif",
		150, 159,
		"LP-102-1", "Shin Guard, Protection - PU",
		"with step, elastic stripes", "",
		"49", "0.4",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd1085650075.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/ShinGuardShoe1.gif",
		150, 159,
		"LP-103-1", "Shin Guard, Full-Protection - PU",
		"with complete step, elastic stripes", "",
		"64", "0.4",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd-431635124.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Suspensor_Cotton.jpg",
		150, 104,
		"S-101-1", "Cotton Suspensor, Protection",
		"White, with elastic stripes", "",
		"18", "0.4",
		"1", 1,
		"Stückzahl", "17",
		"Color;White@Sizes;Large@", "pd1225199815.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/MenSupporter.gif",
		150, 115,
		"S-102-1", "Professional Suspensor MEN, PU",
		"White, with elastic stripes", "",
		"58", "0.4",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17,9,22,2,8,24,20,17,2,10",
		"Color;White@Sizes;Large@", "pd1510010655.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY,AIKIDO,Trousers,KARATE,JiuJiutsu,SPECIALS,AccsSpecia,SAFETY,KARATE,TAEKWONDO", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/FocusPad_2.jpg",
		150, 130,
		"P1-102", "Focus Coaching Pads, BUFFALO",
		"Buffalo Leather, Glove inside", "",
		"96", "1.5",
		"1", 1,
		"Pair/Paar", "18",
		"", "pd2146635357.htm",
		"", 1,
		"BAGs", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/StrikeShield_3.jpg",
		150, 180,
		"ST-102-1", "Striking Shield, PU red/black",
		"Training, 60x35x11cm", "",
		"94", "1.5",
		"1", 1,
		"Stückzahl", "18",
		"Color;Red@", "pd2104215097.htm",
		"", 1,
		"BAGs", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Punching-Bag-2.gif",
		150, 212,
		"PB-01-6", "Punching /Boxing Bag, Leather",
		"Diameter 30cm, with chain hanger", "",
		"117", "4",
		"1", 1,
		"Stückzahl", "18",
		"Size;60cm@Color;Black@Design;Unfilled@", "pd-1601615649.htm",
		"", 1,
		"BAGs", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Punching-Bag-2.gif",
		150, 212,
		"PB-02-6", "Punching /Boxing Bag, Artifacial Leather",
		"Diameter 30cm, with chain hanger", "",
		"83", "4",
		"1", 1,
		"Stückzahl", "18",
		"Size;60cm@Color;Black@Design;Unfilled@", "pd1088262319.htm",
		"", 1,
		"BAGs", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Punching-Bag-2.gif",
		150, 212,
		"PB-03-6", "Punching /Boxing Bag, Para Shoot",
		"Diameter 30cm, with chain hanger", "",
		"72", "4",
		"1", 1,
		"Stückzahl", "18",
		"Size;60cm@Color;Black@Design;Unfilled@", "pd-1780615643.htm",
		"", 1,
		"BAGs", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/YourOwnLabel_(4).jpg",
		150, 113,
		"LABEL-0", "Initial Costs - Your Own Label !",
		"only once, up to 4 colors", "",
		"125", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-767513640.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Embrodery-Trouser_s.jpg",
		100, 75,
		"EMBRODERY-3", "Embrodery Machine costs, Size 5 x 20cm",
		"per order fix price, select by each embrodery order", "",
		"155", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-1079799203.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Embrodery-Back_s.jpg",
		100, 99,
		"EMBRODERY-4", "Embrodery Machine costs, Size 20 x 30cm",
		"per order fix price, select by each embrodery order", "",
		"290", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-1156738093.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Embrodery-Trouser_s.jpg",
		150, 113,
		"EMBRODERY-5", "Embrodery Batch or Direct-Stitched, 5 x 20cm",
		"up to four colors, size up to 50x200mm", "",
		"6.5", "0.05",
		"1", 1,
		"Stückzahl", "24",
		"", "pd1498188345.htm",
		"", 25,
		"SPECIALS", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Embrodery-Back_s.jpg",
		150, 149,
		"EMBRODERY-6", "Embrodery Batch or Direct-Stitched, 20 x 30cm",
		"up to four colors, size up to 200x300mm", "",
		"16", "0.05",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-48785451.htm",
		"", 25,
		"SPECIALS", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/JoggingDress_Black_DrawString.jpg",
		150, 113,
		"TS-305", "Training Suit Options",
		"Jacket or Trousers with thigt rob, Trousers with zippers", "",
		"4.5", "0",
		"1", 1,
		"Stückzahl", "23",
		"", "pd1105300327.htm",
		"", 1,
		"Clothes", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/Sageo_Silk_s.jpg",
		150, 130,
		"B-106-1", "Master-Belt, 2.00&quot; - 5cm - Shureido Style",
		"Silk, Black - Seide, schwarz", "",
		"58", "0.4",
		"1", 1,
		"Stückzahl", "14",
		"Color;Black@Belt-Sizes;320cm@", "pd1106701772.htm",
		"", 1,
		"BELTS", "30",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Kickboxing_Shoes3s.jpg",
		150, 113,
		"KBS-01-2", "Foot-Protector KICK-BOXING",
		"PU-Material, velcro lock", "",
		"54", "0.6",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Medium@", "pd-430315066.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/ScreenPrintSmall_s.jpg",
		150, 97,
		"ScreenPrint-1", "Screen Print, 10 x 10cm",
		"single color, size up to 100x100mm", "",
		"2", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd1109706061.htm",
		"", 25,
		"SPECIALS", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/ScreenPrintSmall_s.jpg",
		150, 97,
		"ScreenPrint-2", "Screen Print Machine costs, 10 x 10cm",
		"per order fix price, select by each screen printing order", "",
		"75", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-1396638264.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/ScreenPrintMedium_s.jpg",
		150, 182,
		"ScreenPrint-3", "Screen Print Machine costs, 5 x 20cm",
		"per order fix price, select by each screen printing order", "",
		"85", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd1109855237.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/ScreenPrintBig_s.jpg",
		150, 113,
		"ScreenPrint-4", "Screen Print Machine costs, 20 x 30cm",
		"per order fix price, select by each screen printing order", "",
		"95", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd834094523.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/ScreenPrintMedium_s.jpg",
		150, 182,
		"ScreenPrint-5", "Screen Print, 5 x 20cm",
		"single color, size up to 50x200mm", "",
		"2.5", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd664809057.htm",
		"", 25,
		"SPECIALS", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/ScreenPrintBig_s.jpg",
		150, 113,
		"ScreenPrint-6", "Screen Print, 20 x 30cm",
		"single color, size up to 200x300mm", "",
		"4.5", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd1936133757.htm",
		"", 25,
		"SPECIALS", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/MittThay1s.jpg",
		150, 129,
		"ST-104-1", "Striking Shield, Leather red/black",
		"Thay Mitt Profi, 42x21x11cm", "",
		"84", "1",
		"1", 1,
		"Stückzahl", "18",
		"Color;Red@", "pd1124141924.htm",
		"", 1,
		"BAGs", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/Label_50x100mm.jpg",
		150, 112,
		"LABEL-2", "Your Own Label ! 50x100mm",
		"Label on Jacket, Trouser and Belt or Accessories, up to 4 colors", "",
		"2.5", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd759562493.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/YourOwnLabel_(4).jpg",
		150, 113,
		"LABEL-1", "Your Own Label ! 30x60mm",
		"Label on Jacket, Trouser and Belt or Accessories, up to 4 colors", "",
		"1.1", "0",
		"1", 1,
		"Stückzahl", "24",
		"", "pd-1938021517.htm",
		"", 1,
		"SPECIALS", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/YanagiSashimi.gif",
		150, 245,
		"KitchenKnife-1", "Yanagi Sashimi Knife, 22cm",
		"Traditional Shusi Knife, right hand", "",
		"32", "0.5",
		"1", 1,
		"Stückzahl", "25",
		"", "pd462442909.htm",
		"", 1,
		"ASIA", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/UsubaJapaneseKnife.jpg",
		150, 163,
		"KitchenKnife-2", "Usuba Kitchen Knife, 16cm",
		"Traditional Japanese Kitchen Knife", "",
		"36", "0.5",
		"1", 1,
		"Stückzahl", "25",
		"", "pd-1138924269.htm",
		"", 1,
		"ASIA", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/SakeSet.jpg",
		150, 270,
		"SakeSet-1", "SAKE Set - Porcellan",
		"Traditional Can &amp; 3 Cups", "",
		"42", "1.5",
		"1", 1,
		"Stückzahl", "25",
		"", "pd-398606983.htm",
		"", 1,
		"ASIA", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/SakeSet2.jpg",
		150, 152,
		"SakeSet-2", "SAKE CUP - Porcellan",
		"Additional Cup to Sake Set", "",
		"9.5", "0.3",
		"1", 1,
		"Stückzahl", "25",
		"", "pd-1068981169.htm",
		"", 1,
		"ASIA", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/KBS_Tiger_s.gif",
		150, 107,
		"KBS_Tiger-1", "Muay Thai Shorts TIGER",
		"Soft Satin Material, Black with Red Stripes", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd-1428085519.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/KBS_StarsStripes_s.gif",
		150, 108,
		"KBS_StarsStripes-1", "Muay Thai Shorts Stars &amp; Stripes",
		"Soft Satin Material, Black with Red Stripes and White Stars", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd371275911.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/KBS_BlackNight_s.gif",
		150, 120,
		"KBS_BlackNight-1", "Muay Thai Shorts BLACK NIGHT",
		"Soft Satin Material, Black with Red Stripes &amp; white Stars", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd1138569306.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/KBS_ShinyStripes_s.gif",
		150, 120,
		"KBS_ShinyStripes-5", "Muay Thai Shorts SHINY STRIPES",
		"Soft Satin Material, Red with White Stripes", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Color;Red@Sizes;Large@", "pd1973438960.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/KBS_Sunrise_s.gif",
		150, 112,
		"KBS_Sunrise-1", "Muay Thai Shorts SUNRISE",
		"Soft Satin Material, Red with Gold and Green sides", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd-767939910.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/KBS_MuaiThaiSpecial_s.gif",
		150, 120,
		"KBS_MuayThaiSpecial-1", "Muay Thai Shorts SPECIAL",
		"Soft Satin Material, Red/Black/Green with Ribbons", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd2042124112.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/KBS_Wolf_s.gif",
		150, 106,
		"KBS_Wolf-1", "Muay Thai Shorts WOLF",
		"Soft Satin Material, Black", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd-1664140138.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/KBS_Bulls_s.gif",
		150, 113,
		"KBS_Bulls-1", "Muay Thai Shorts BULLS",
		"Soft Satin Material, with Bulls on front", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Color;Black@Sizes;Large@", "pd634863628.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/KBS_MadDog_s.gif",
		150, 118,
		"KBS_MadDog-1", "Muay Thai Shorts MAD DOG",
		"Soft Satin Material, Black with Red stripes", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd1944505418.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/KBS_SharkAttack_s.gif",
		150, 110,
		"KBS_SharkAttack-1", "Muay Thai Shorts SHARK ATTACK",
		"Soft Satin Material, Blue with white/black stripes", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "4",
		"Sizes;Large@", "pd976414048.htm",
		"", 1,
		"MuayThai", "20",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Kickboxing_Uniform1.jpg",
		150, 140,
		"KB-101-1", "Kick-Boxing Uniform",
		"35% Polyester /65% Cotton Mix, various colours", "",
		"81", "2",
		"1", 1,
		"Stückzahl", "5",
		"Size;120cm@Color;Black@", "pd-379301002.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Kickboxing_Uniform1.jpg",
		150, 140,
		"KB-102-1", "Kick-Boxing Uniform",
		"Satin, various colours", "",
		"87", "2",
		"1", 1,
		"Stückzahl", "5",
		"Size;120cm@Color;Black@", "pd-1116317102.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Trouser_Kickbox_5.jpg",
		150, 103,
		"KBS-101-1", "Shorts Kick-Boxing",
		"Soft Satin, with side stripes", "",
		"33", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Color;Black@Sizes;Large@", "pd-490410731.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Trouser_Kickbox_4.jpg",
		150, 92,
		"KBS-102-1", "Shorts Kick-Boxing",
		"Soft Satin, with stars or words", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Color;Black@Sizes;Large@", "pd1079918744.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/KickboxingShorts_Own_s.jpg",
		200, 153,
		"KBS-103-1", "Shorts Kick-Boxing - Own Design",
		"Soft Satin, with your own embroderies", "",
		"76", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Sizes;Large@", "pd632339640.htm",
		"", 25,
		"Kickboxin1", "20",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Trouser_Kickbox_2.jpg",
		150, 237,
		"KBT-101-1", "Trouser Kick-Boxing",
		"Soft Satin, with side stripes", "",
		"41", "0.7",
		"1", 1,
		"Stückzahl", "5",
		"Color;Black@Sizes;Large@", "pd1906138787.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Trouser_Kickbox_3.jpg",
		150, 262,
		"KBT-102-1", "Trouser Kick-Boxing",
		"Soft Satin, with side stripes, words or stars", "",
		"54", "0.7",
		"1", 1,
		"Stückzahl", "5",
		"Color;Black@Sizes;Large@", "pd-1301125689.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/KBS_Flame_s.gif",
		150, 96,
		"KBS_Flame-1", "Kick Boxing Shorts FLAME",
		"Soft Satin Material, Black with yellow Flames", "",
		"33", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Sizes;Large@", "pd-135130265.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/KBS_Kickboxing_s.gif",
		150, 120,
		"KBS_Kickboxing-5", "Kick Boxing Shorts KICKBOXING",
		"Soft Satin Material, Blue/Black/Red/Yellow with stripes and stars", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Color;Blue@Sizes;Large@", "pd-807933083.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/KBS_Sanda_s.gif",
		150, 181,
		"KBS_Sanda-6", "Kick Boxing Shorts SANDA",
		"Soft Satin Material, Black/Blue/Red ", "",
		"33", "0.5",
		"1", 1,
		"Stückzahl", "6",
		"Color;Blue@Sizes;Large@", "pd1154295420.htm",
		"", 1,
		"Sanda", "20",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/KBS_Sunset_s.gif",
		150, 101,
		"KBS_Kickboxing-9", "Kick Boxing Shorts SUNSET",
		"Soft Satin Material, Blue/Black/Red/Yellow with stripes and stars", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Color;Red@Sizes;Large@", "pd-751280258.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/BoxingBagMitts_s.gif",
		150, 154,
		"BX-103-1", "Boxing Bag Mitt EASY",
		"Buffalo Leather, velcro lock, black/inside red", "",
		"44", "1",
		"1", 1,
		"Pair/Paar", "16",
		"Sizes;Large@", "pd1141398416.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/BoxingBagMitts1s.gif",
		150, 132,
		"BX-104-1", "Boxing Bag Mitt PRO",
		"Buffalo Leather, velcro lock, red", "",
		"52.5", "2",
		"1", 1,
		"Pair/Paar", "16",
		"Sizes;Large@", "pd-1443754659.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/TrainingShoes_TS101s.gif",
		150, 143,
		"TS-101-14", "Training Shoes, Leather",
		"Elastic rubber sole, with two stripes", "",
		"66", "2",
		"1", 1,
		"Pair/Paar", "19",
		"Size;42@Color;White@", "pd-1360480016.htm",
		"", 1,
		"SHOEs", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/NS-101s.gif",
		150, 181,
		"NS-101-5", "Ninja Shoes - Tabi High",
		"Elastic rubber sole, with velcro lock", "",
		"51", "2",
		"1", 1,
		"Pair/Paar", "19",
		"Size;42@Color;Black@", "pd1596037202.htm",
		"", 1,
		"SHOEs", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/AllStars_GainTech1500s.jpg",
		150, 150,
		"GainTech1500-1", "GAIN-TECH - 1500g Dose",
		"Kohlenhydrat - Advanced Weight Gain Formula", "AllStars",
		"74.2", "1.5",
		"1", 1,
		"", "21",
		"Flavour;Chocolate@", "pd1842049029.htm",
		"", 1,
		"Nutrition", "5",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/AllStars_ProteinDrink60s.jpg",
		150, 150,
		"ProteinDrink60-2", "PROTEINDRINK 60, 12 x 500ml",
		"Protein - Konzentratdrink", "AllStars",
		"74.9", "6",
		"1", 1,
		"Stückzahl", "21",
		"Flavour;Chocolate@", "pd-1031028314.htm",
		"", 1,
		"Nutrition", "5",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/KickBoxing_Shoes1s.gif",
		150, 137,
		"KBS-02-1", "Foot-Protector KICK-BOXING PRO",
		"Leather, velcro lock", "",
		"72", "1",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd1149516288.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/ShinGuard_PU_Pro_150px.gif",
		150, 144,
		"LP-104-1", "Shin Guard, Protection - PRO",
		"PU EVA, with elastic stripes", "",
		"46", "0.4",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd884528326.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/MouthGuard_s.jpg",
		150, 165,
		"MG-101-5", "Mouthguard Single",
		"Thermo Rubber, hot water fits", "",
		"6", "0.1",
		"1", 1,
		"Stückzahl", "17",
		"Color;White@", "pd1721300287.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/MouthGuard1s.jpg",
		150, 119,
		"MG-102-1", "Mouthguard RazorTooth",
		"Thermo Rubber, hot water fits", "",
		"12.8", "0.1",
		"1", 1,
		"Stückzahl", "17",
		"Color;Black@", "pd-75826811.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/AnkleProtector1s.gif",
		150, 146,
		"AB-103-1", "Ankle-Protector KICK-BOXING",
		"Polyester/Cotton Mix, elastic", "",
		"12.5", "0.2",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd1149519096.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/GroinGuardFemale_s.gif",
		150, 130,
		"S-103-1", "Professional Suspensor LADIES, PU",
		"White, with elastic stripes", "",
		"32", "0.4",
		"1", 1,
		"Stückzahl", "17",
		"Color;White@Sizes;Large@", "pd-1373812866.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/KBS_TigerYellow_s.gif",
		150, 109,
		"KBS_Tiger1-1", "Shorts Kick-Boxing TIGER",
		"Soft Satin Material, Black with Yellow Stripes", "",
		"38", "0.5",
		"1", 1,
		"Stückzahl", "5",
		"Sizes;Large@", "pd1151077742.htm",
		"", 1,
		"Kickboxin1", "20",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/TaiChi_white_S.gif",
		150, 166,
		"T-101-3", "Tai Chi - Uniform, Chinese Style",
		"Polyester/Satin Mix", "",
		"62", "1",
		"1", 1,
		"Pieces", "12",
		"Size;120cm@Color;White@", "pd-412522339.htm",
		"", 1,
		"TaiChi", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/RushGuard1_150px.gif",
		150, 138,
		"RG-101-1", "Rash Guard, Short sleeves",
		"Lycra material", "",
		"52", "0.5",
		"1", 1,
		"Pieces", "7",
		"Color;Black@Sizes;Large@", "pd537435087.htm",
		"", 1,
		"M M A", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/RushGuard1_150px.gif",
		150, 138,
		"RG-102-1", "Rash Guard, Long sleeves",
		"Lycra Material", "",
		"67.5", "0.6",
		"1", 1,
		"Pieces", "7",
		"Color;Black@Sizes;Large@", "pd-334806379.htm",
		"", 1,
		"M M A", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/FreeFightShorts1_150px.gif",
		150, 132,
		"FS-101-1", "Free Fight Shorts",
		"Lycra material", "",
		"31.5", "0.5",
		"1", 1,
		"Pieces", "7",
		"Color;Black@Sizes;Large@", "pd1460605431.htm",
		"", 1,
		"M M A", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/FreeFightShorts2_150px.gif",
		150, 141,
		"FS-102-6", "Grappling Shorts",
		"Polyester material", "",
		"54", "0.5",
		"1", 1,
		"Pieces", "7",
		"Color;Black@Sizes;Large@", "pd1818402761.htm",
		"", 1,
		"M M A", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/FassSAUNA1_150px.jpg",
		150, 139,
		"Sauna-RELAX", "Fass-Sauna RELAX",
		"2200 x 2100 mm, 6 Personen, Elektroofen", "",
		"7490", "420",
		"1", 1,
		"Stückzahl", "35",
		"", "pd-337498067.htm",
		"", 1,
		"FASSSAUNA", "0",
		 3)
	
		Entry[157] = new Element(
		157, "assets/thumb/SaunaColdSplash_1_150px.JPG",
		150, 133,
		"HT_ColdSplash", "Badefass Sauna COLD SPLASH",
		"1500 oval x 1000mm, 800Liter, Holzdicke 40mm", "",
		"1480", "100",
		"1", 1,
		"Stückzahl", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17,9,22,2,8,24,20,17,2,10,30,35",
		"", "pd2017109539.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY,AIKIDO,Trousers,KARATE,JiuJiutsu,SPECIALS,AccsSpecia,SAFETY,KARATE,TAEKWONDO,BADEFASS,FASSSAUNA", "0",
		 3)
	
		Entry[158] = new Element(
		158, "assets/thumb/TannOil_2_150px.jpg",
		150, 207,
		"HolzOil-2", "Sauna Oil, farblos",
		"Flasche zu 1,0lt", "",
		"42", "1.2",
		"1", 1,
		"Stückzahl", "32",
		"", "pd-957376362.htm",
		"", 1,
		"HOLZ-Behan", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/Natura_Wood1_150px.JPG",
		150, 112,
		"HT_Natura", "Badefass NATURA",
		"1550 x 1100mm, 1300Liter, Holzdicke 44mm", "",
		"3980", "170",
		"1", 1,
		"Stückzahl", "30",
		"", "pd-443037516.htm",
		"", 1,
		"BADEFASS", "0",
		 3)
	
		Entry[160] = new Element(
		160, "assets/thumb/HotTubPropaneHeater_150px.jpg",
		150, 107,
		"Chofu_PropanGaz", "CHOFU Propan-Gas Heizofen",
		"Heizleistung 14kW, Aussenaufstellung", "",
		"1280", "12",
		"1", 1,
		"Stückzahl", "31",
		"", "pd-1413706752.htm",
		"", 1,
		"HEIZUNGEN", "0",
		 3)
	
		Entry[161] = new Element(
		161, "assets/thumb/HotTubWoodHeater_150px.jpg",
		150, 112,
		"Chofu_Wood", "CHOFU Holzofen",
		"Heizleistung 15kW, Aussenaufstellung", "",
		"1280", "25",
		"1", 1,
		"Stückzahl", "31",
		"", "pd-1442819538.htm",
		"", 1,
		"HEIZUNGEN", "0",
		 3)
	
		Entry[162] = new Element(
		162, "assets/thumb/TannOil_2_150px.jpg",
		150, 207,
		"HolzOil-1", "Tann Oil, braun",
		"Flasche zu 1,0lt", "",
		"33", "1.2",
		"1", 1,
		"Stückzahl", "32",
		"", "pd-590664772.htm",
		"", 1,
		"HOLZ-Behan", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/tn_SPC702.jpg",
		33, 50,
		"SPC702", "Duft-Essenz PINIE als Badezusatz",
		"Flasche zu 250ml, nicht-ölend", "",
		"33", "0.4",
		"1", 1,
		"Stückzahl", "34",
		"", "pd1562601546.htm",
		"", 1,
		"Duftstoffe", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/tn_SPC702.jpg",
		33, 50,
		"SPC703", "Duft-Essenz EUKALYPTUS als Badezusatz",
		"Flasche zu 250ml, nicht-ölend", "",
		"33", "0.4",
		"1", 1,
		"Stückzahl", "34",
		"", "pd1165782920.htm",
		"", 1,
		"Duftstoffe", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/werkzeug.jpg",
		50, 38,
		"Montage_Natura", "Montage Natura vor Ort, Pauschalpreis",
		"Komplettmontage Badefass und Ofen, ohne Wegkosten", "",
		"1080", "0",
		"1", 1,
		"Stückzahl", "36",
		"", "pd1913127158.htm",
		"", 1,
		"MONTAGE", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/werkzeug.jpg",
		50, 38,
		"Lasur_Natura", "Schutzanstrich Natura vor Ort, Pauschalpreis",
		"inkl. Material AQUAGRUND und WOODEX WOOD OIL", "",
		"315", "0",
		"1", 1,
		"Stückzahl", "36",
		"", "pd-1361319916.htm",
		"", 1,
		"MONTAGE", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/werkzeug.jpg",
		50, 38,
		"Montage_Relax", "Montage RELAX vor Ort, Pauschalpreis",
		"Komplettmontage Badefass, Ofen, Filtersystem und Treppen, ohne Wegkosten", "",
		"2100", "0",
		"1", 1,
		"Stückzahl", "36",
		"", "pd-985605022.htm",
		"", 1,
		"MONTAGE", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/werkzeug.jpg",
		50, 38,
		"Lasur_Relax", "Schutzanstrich Relax vor Ort, Pauschalpreis",
		"inkl. Material AQUAGRUND und WOODEX WOOD OIL", "",
		"525", "0",
		"1", 1,
		"Stückzahl", "36",
		"", "pd152854880.htm",
		"", 1,
		"MONTAGE", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/GardenFun_8_150px.jpg",
		150, 191,
		"HT_GardenFun", "Badefass GARDEN FUN",
		"1550 x 1100mm, 1300Liter, Holzdicke 44mm", "",
		"5450", "180",
		"1", 1,
		"Stückzahl", "30",
		"", "pd1877845646.htm",
		"", 1,
		"BADEFASS", "0",
		 3)
	
		Entry[170] = new Element(
		170, "assets/thumb/FassSAUNA1_150px.jpg",
		150, 139,
		"Sauna-NATURA", "Fass-Sauna NATURA",
		"2200 x 2100 mm, 6 Personen, Holzofen", "",
		"8450", "420",
		"1", 1,
		"Stückzahl", "35",
		"", "pd932538220.htm",
		"", 1,
		"FASSSAUNA", "0",
		 3)
	
		Entry[171] = new Element(
		171, "assets/thumb/tn_SPC008.jpg",
		50, 67,
		"SPC008", "SpaCARE PIPE CLEANER",
		"Rohrsystem Reiniger, 500ml", "",
		"66", "0.7",
		"1", 1,
		"Stückzahl", "33",
		"", "pd1755014848.htm",
		"", 1,
		"Chemicals", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/tn_SPC379.jpg",
		50, 67,
		"SPC379", "BIO ph-Indicator",
		"100 Teststreifen pro Packung", "",
		"74", "0",
		"1", 1,
		"Stückzahl", "33",
		"", "pd-1949455634.htm",
		"", 1,
		"Chemicals", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/tn_SPC501.jpg",
		50, 67,
		"SPC501", "SpaCARE SUNWAC-9",
		"Wasserdesinfektion mit Pinien-Duft, 180Tabletten", "",
		"84", "1.2",
		"1", 1,
		"Stückzahl", "33",
		"", "pd1440383692.htm",
		"", 1,
		"Chemicals", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/Glove_Cotton1.jpg",
		150, 105,
		"CG-101-1", "Cotton Gloves, Standard",
		"White, elastic", "",
		"19", "0.3",
		"1", 1,
		"Stückzahl", "20",
		"Sizes;Large@", "pd-1880040689.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/BoxingGlovesGift3s.jpg",
		150, 128,
		"BXG-101-1", "Boxing Gloves Souvenir, CORD",
		"PU, pair, 10cm", "",
		"14", "0.1",
		"1", 1,
		"Stückzahl", "20",
		"Color;Black@", "pd265998655.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/BoxingGlovesGift4s.jpg",
		150, 129,
		"BXG-102-1", "Boxing Gloves Souvenir, KEY",
		"PU, Key Hanger, 8cm", "",
		"9", "0.1",
		"1", 1,
		"Stückzahl", "20",
		"Color;Black@", "pd350152290.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/JumboGlove2_150px.jpg",
		150, 153,
		"BXG-10311", "Jumbo Boxing Glove, left",
		"PU-Material, 60cm", "",
		"79", "2",
		"1", 1,
		"Stückzahl", "20",
		"Color;Black@", "pd422511852.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/kinderboxSetAmerikaFlagge_150px.gif",
		150, 90,
		"BXB-101", "Junior Boxing Bag, USA Set",
		"PU-Material, 50cm", "",
		"35", "3",
		"1", 1,
		"Stückzahl", "20",
		"Color;White@", "pd-425201931.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/kinderboxSetBoxing_150px.gif",
		150, 270,
		"BXB-102-1", "Junior Boxing Bag, BOXING Set",
		"PU-Material, 50cm", "",
		"35", "3",
		"1", 1,
		"Stückzahl", "20",
		"Color;Red@", "pd-1457741743.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/kinderboxSetMitKopfschutz_150px.gif",
		150, 214,
		"BXB-103-1", "Junior Boxing Bag, SPARRING Set",
		"PU-Material, 50cm", "",
		"35", "3",
		"1", 1,
		"Stückzahl", "20",
		"Color;Red@", "pd-701628563.htm",
		"", 1,
		"AccsSpecia", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/Kumite01_150px.gif",
		150, 123,
		"K-1122", "KUMITE Style -  Karate-Uniform",
		"100% Cotton - SOFT CANVAS, 12 oz, no belt", "",
		"84", "2",
		"1", 1,
		"Pieces", "2",
		"Size;170cm@Color;White@", "pd1167340393.htm",
		"", 1,
		"KARATE", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/MMA_Gloves_Pro1_150px.gif",
		150, 123,
		"GM-101-1", "MMA Gloves PRO",
		"Buffalo Leather, velcro lock, black", "",
		"67.5", "0.7",
		"1", 1,
		"Pair/Paar", "22,1,22,1,22,1,22,8,22,8,22,1,8,2,24,24,1,8,2,11,10,9,22,2,22,2,22,2,22,8,22,9,22,9,2,16,2,16,10,17,10,17,9,22,2,8,24,20,17,2,10,30,35,16,7",
		"Color;Black@Sizes;Large@", "pd2620203.htm",
		"", 1,
		"Trousers,J U D O,Trousers,J U D O,Trousers,J U D O,Trousers,JiuJiutsu,Trousers,JiuJiutsu,Trousers,J U D O,JiuJiutsu,KARATE,SPECIALS,SPECIALS,J U D O,JiuJiutsu,KARATE,KUNG-FU,TAEKWONDO,AIKIDO,Trousers,KARATE,Trousers,KARATE,Trousers,KARATE,Trousers,JiuJiutsu,Trousers,AIKIDO,Trousers,AIKIDO,KARATE,GLOVES,KARATE,GLOVES,TAEKWONDO,SAFETY,TAEKWONDO,SAFETY,AIKIDO,Trousers,KARATE,JiuJiutsu,SPECIALS,AccsSpecia,SAFETY,KARATE,TAEKWONDO,BADEFASS,FASSSAUNA,GLOVES,M M A", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/ShinGuard_MuayThai_150px.gif",
		150, 174,
		"LP-105-1", "Shin Guard with Step, Protection - Muay Thai",
		"Leather, with elastic stripes", "",
		"84", "0.8",
		"1", 1,
		"Pair/Paar", "17",
		"Color;Black@Sizes;Large@", "pd1168543570.htm",
		"", 1,
		"SAFETY", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/Tabi_Leather_150px.gif",
		150, 159,
		"NS-102-5", "Ninja Shoes - Tabi Medium",
		"Leather sole, with velcro lock", "",
		"51", "2",
		"1", 1,
		"Pair/Paar", "19",
		"Size;42@Color;Black@", "pd1168794212.htm",
		"", 1,
		"SHOEs", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/MMA_Gloves_Competiton1_150px.gif",
		150, 113,
		"GM-102-5", "MMA Gloves COMPETITION",
		"Buffalo Leather, velcro lock, open fingers", "",
		"63", "0.7",
		"1", 1,
		"Pair/Paar", "16",
		"Color;Red@Sizes;Large@", "pd1179667558.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/MMA_Gloves_Easy1_150px.gif",
		150, 123,
		"GM-103-1", "Free Fight Gloves EASY",
		"PU, velcro lock, open fingers", "",
		"47.25", "0.7",
		"1", 1,
		"Pair/Paar", "16",
		"Color;Black@Sizes;Large@", "pd-1645683672.htm",
		"", 1,
		"GLOVES", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/BudoShop_AeroJump_Kinder_150px.jpg",
		150, 168,
		"AeroJumpKids", "Aero Jump Boots - for Kids",
		"max 60kg Körpergewicht", "",
		"369", "8",
		"1", 1,
		"Stückzahl", "0",
		"", "pd-1316514097.htm",
		"", 1,
		"AeroJump", "15",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/BudoShop_AeroJump_Erwachsene_150px.jpg",
		150, 217,
		"AeroJumpAdult-90", "Aero Jump Boots - for Adults",
		"max 90kg Körpergewicht", "",
		"559", "10",
		"1", 1,
		"Stückzahl", "0",
		"", "pd-1389447787.htm",
		"", 1,
		"AeroJump", "15",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/BudoShop_AeroJump_Erwachsene_150px.jpg",
		150, 217,
		"AeroJumpAdult-110", "Aero Jump Boots - for Adults",
		"max 110kg Körpergewicht", "",
		"589", "10",
		"1", 1,
		"Stückzahl", "0",
		"", "pd-381134160.htm",
		"", 1,
		"AeroJump", "15",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/Cover_DVD_Nikio.jpg",
		150, 150,
		"MOV-01", "DVD/VCD Bu-Jitsu BudoSportBischofszell",
		"Fantastische Aufnahmen - rechts, links, slow, old", "",
		"42", "0.5",
		"1", 1,
		"Stückzahl", "25",
		"", "pd-287643414.htm",
		"", 1,
		"ASIA", "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();
			};
		};