	// 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="86" height="20" 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/MKI-CooperS2-sw.jpg",
		200, 148,
		"M010001", "Mini MK I Cooper S",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1232218898.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/FOTL LF Valueweight T pastellblau.jpg",
		200, 200,
		"FO 61-046-0", "FOTL Lady-Fit Valueweight T",
		"", "Fruit Of The Loom",
		"12", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd752481216.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/FOTL Heavy-T weiss.jpg",
		200, 200,
		"FO 61-208-0", "FOTL Herren Heavy T",
		"", "Fruit Of The Loom",
		"12", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd-2072832015.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/FOTL Kids Valueweight T gelb.jpg",
		200, 200,
		"FO 61-033-0", "FOTL Kids Valueweight T",
		"", "Fruit Of The Loom",
		"12", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;116@Farbe;Schwarz@", "pd-896105836.htm",
		"", 0,
		"002", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/SpitfireMKII-bw.jpg",
		200, 82,
		"M030001", "Triumph Spitfire MK II",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"Druckfarbe;gelb@", "pd-82380062.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/SpitfireMKIII-bw.jpg",
		200, 98,
		"M030002", "Triumph Spitfire MK III",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"Druckfarbe;gelb@", "pd940155872.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/SpitfireMKIV-bw.jpg",
		200, 77,
		"M030003", "Triumph Spitfire MK IV",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"Druckfarbe;gelb@", "pd701934862.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/FOTL LF Strap T orange.jpg",
		240, 240,
		"FO 61-024-0", "FOTL Lady-Fit Strap T",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd-151574484.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/FOTL Polo6535 blau.jpg",
		240, 240,
		"FO 63-402-0", "FOTL 65/35 Polo",
		"", "",
		"17", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd840318530.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/FOTL pocketPolo6535 weiss.jpg",
		240, 240,
		"FO 63-308-0", "FOTL 65/35 Pocket polo",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd-1841082327.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/FOTL Kids 6535 Piquet Polo pastellblau1.jpg",
		240, 240,
		"FO 63-417-0", "FOTL Kids 65/35 Piquet Polo",
		"", "",
		"17", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;116@Farbe;Schwarz@", "pd-457751561.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/FOTL SETINSWEAT stahlblau.jpg",
		240, 240,
		"FO 62-202-0", "FOTL Set-In-Sweat",
		"", "Fruit Of The Loom",
		"22", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd422658221.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/FOTL HoodedSweat grau1.jpg",
		240, 240,
		"FO 62-208-0", "FOTL Hooded Sweat",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd614084153.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/FOTL SweatJacket graphit0.jpg",
		240, 240,
		"FO 62-228-0", "FOTL Sweat Jacket",
		"", "Fruit Of The Loom",
		"30", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd-1617187815.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/FOTL HoodedZip khaki.jpg",
		240, 240,
		"FO 62-034-0", "Zip Through Hooded Sweat",
		"Fruit of the loom", "Fruit Of The Loom",
		"38", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd494731144.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/FOTL LF Sweat beige.jpg",
		240, 240,
		"FO 62-004-0", "Lady-Fit Raglan Sweat",
		"Fruit of the loom", "Fruit Of The Loom",
		"23", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd-53333473.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/FOTL LF Sweat Jacket oliv.jpg",
		240, 240,
		"FO 62-002-0", "Lady-Fit Sweat Jacket",
		"Fruit of the loom", "Fruit Of The Loom",
		"32", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd1552617405.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/FOTL LF HoodedZip weiss.jpg",
		240, 240,
		"FO 62-924-0", "Lady-Fit Hooded Sweat Jacket",
		"Fruit of the loom", "Fruit Of The Loom",
		"36", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;L@Farbe;Schwarz@", "pd-1290628224.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/FOTL Kids Sweat pastellblau.jpg",
		240, 240,
		"FO 62-031-0", "Kids Set-in Sweat",
		"Fruit of the loom", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;116@Farbe;Schwarz@", "pd726750786.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/FOTL Kids Sweatjacket navy.jpg",
		240, 240,
		"FO 62-001-0", "Kids Sweat Jacket",
		"Fruit of the loom", "",
		"28", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;116@Farbe;Schwarz@", "pd1701396988.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/FOTL Kids HoodedZip grau.jpg",
		240, 240,
		"FO 62-035-0", "Kids Zip Through Hooded Sweat",
		"Fruit of the loom", "",
		"28", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;140@Farbe;Schwarz@", "pd743410534.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/FOTL Kids HoodedSweat rot2.jpg",
		240, 240,
		"FO 62-037-0", "Kids Hooded Sweat",
		"Fruit of the loom", "Fruit Of The Loom",
		"26", "0",
		"1", 1,
		"Stück", "13",
		"Grösse;116@Farbe;Schwarz@", "pd-1379197155.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/MKI-CooperS-sw.jpg",
		200, 142,
		"M010002", "Mini MK I Cooper S ",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1887872705.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/MKII-CooperS-bw.jpg",
		200, 120,
		"M010003", "Mini MK II Cooper S",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1241164521.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/MKIII-bw.jpg",
		200, 138,
		"M010004", "Mini MK III",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd654964465.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/MKIV-special-bw.jpg",
		200, 137,
		"M010005", "Mini MK IV Special",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1972382597.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/MKV-bw.jpg",
		200, 144,
		"M010006", "Mini MK V",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1388810201.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/mkv-jOHNcOOPER-BW.jpg",
		200, 157,
		"M010007", "Mini MK V Cooper",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd339129489.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/13-2Zusatz-bw.jpg",
		200, 139,
		"M010008", "Mini MK VII (XN)  Cooper",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1099886317.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/13-4Zusatz-bw.jpg",
		200, 141,
		"M010008", "Mini MK VII (XN)  Cooper",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd650353413.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/13-back.jpg",
		200, 116,
		"M010010", "Mini MK VII (XN)  Cooper Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1667799207.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/1001-bw.jpg",
		200, 126,
		"M010011", "Mini Innocenti B38",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-2071264357.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/InnoCooper1-bw.jpg",
		200, 122,
		"M010012", "Mini Innocenti B39",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-762929331.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/Lamm-bw.jpg",
		200, 125,
		"M010013", "Mini Cabrio Lamm",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd353391343.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/LH13-bw.jpg",
		200, 137,
		"M010014", "Mini Cabrio L&amp;H",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1782852863.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Clubman-bw.jpg",
		200, 122,
		"M010015", "Mini Clubman",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1768779773.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/1275GT-bw.jpg",
		200, 183,
		"M010016", "Mini Clubman 1275 GT",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd223532661.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Estate-bw.jpg",
		200, 109,
		"M010017", "Mini Clubman Estate",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1223823657.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/Estate-back-bw.jpg",
		200, 113,
		"M010018", "Mini Clubman Estate Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd812465577.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/DeTomaso-bw.jpg",
		200, 128,
		"M010019", "Mini Innocenti 120L DeTomaso",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1386636139.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Marcos-bw.jpg",
		200, 113,
		"M010020", "Mini Marcos",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-622437219.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/marcos-back-bw.jpg",
		200, 129,
		"M010021", "Mini Marcos Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1237033407.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Moke-bw.jpg",
		200, 128,
		"M010022", "Mini Moke",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1640449873.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/MokeDach-bw.jpg",
		200, 138,
		"M010023", "Mini Moke mit Dach",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1464001069.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/MokeAus-bw.jpg",
		200, 104,
		"M010024", "Mini Moke Australian / Cagiva",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd997904837.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/NewMini-bw.jpg",
		200, 124,
		"M020001", "New Mini MK I",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"", "pd876815781.htm",
		"", 1,
		"000102", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/NewMiniCabrio-bw.jpg",
		200, 108,
		"M020002", "New Mini Cabrio Cooper S",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "4",
		"Druckfarbe;gelb@", "pd-192710565.htm",
		"", 1,
		"000102", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/Pickup-bw.jpg",
		200, 116,
		"M010025", "Mini Pickup",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-661324275.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/Elfe-bw.jpg",
		200, 133,
		"M010026", "Riley Elf",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd107269039.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/Elfe-back-bw.jpg",
		200, 128,
		"M010027", "Riley Elf Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-358017599.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Countryman-bw.jpg",
		200, 122,
		"M010028", "Mini Countryman",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1197067459.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Countryman-back-bw.jpg",
		200, 122,
		"M010029", "Mini Countryman Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1047544523.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/Countryman2-bw.jpg",
		200, 92,
		"M010030", "Mini Countryman",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd717402007.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Traveller.jpg",
		200, 92,
		"M010031", "Mini Traveller",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1504610409.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/Van2-bw.jpg",
		200, 120,
		"M010032", "Mini Van",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1159239637.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Van2-Schnauzbart-bw.jpg",
		200, 123,
		"M010033", "Mini Van Schnauzbart",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1189399389.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/Van-bw.jpg",
		200, 86,
		"M010034", "Mini Van",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd856402559.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Stag-bw.jpg",
		200, 126,
		"M030004", "Triumph Stag",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-430276631.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/DolomiteSprint-bw.jpg",
		200, 121,
		"M030005", "Triumph Dolomite Sprint",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-669263107.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/TR2.jpg",
		200, 123,
		"M030006", "Triumph TR 2",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1810111953.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/TR3a-bw.jpg",
		200, 117,
		"M030007", "Triumph TR 3A",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"Druckfarbe;gelb@", "pd-905683865.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Tr4-bw.jpg",
		200, 119,
		"M030008", "Triumph TR 4",
		"", "",
		"1", "0",
		"1", 1,
		"Stück", "5",
		"Druckfarbe;gold@", "pd1941170873.htm",
		"", 1,
		"00103", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Minor-Pickup-bw.jpg",
		200, 114,
		"M040001", "Morris Minor Pickup",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-780396314.htm",
		"", 1,
		"00104", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Minor-Pickup-back-bw.jpg",
		200, 111,
		"M040002", "Morris Minor Pickup Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "6",
		"Druckfarbe;gelb@", "pd696222084.htm",
		"", 1,
		"00104", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Minor-Van-bw.jpg",
		200, 130,
		"M040003", "Morris Minor Van",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1715456228.htm",
		"", 1,
		"00104", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/Minor-Van-back-bw.jpg",
		200, 129,
		"M040004", "Morris Minor Van Rückansicht",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "6",
		"Druckfarbe;gelb@", "pd-1916737102.htm",
		"", 1,
		"00104", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/Kadett-C-Cpoupe-bw.jpg",
		200, 105,
		"M050001", "Opel Kadett C Coupe",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "7",
		"", "pd203288551.htm",
		"", 1,
		"00105", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/Manta-A-GTE-bw.jpg",
		200, 101,
		"M050002", "Opel Manta A GT/E",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "7",
		"Druckfarbe;gelb@", "pd400954477.htm",
		"", 1,
		"00105", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/T1-Samba-bw.jpg",
		200, 117,
		"M060001-10", "VW Bus T1 &quot;Samba&quot;",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "8",
		"Druckfarbe;weiss@", "pd-797479045.htm",
		"", 1,
		"00106", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/T2-bw.jpg",
		200, 120,
		"M060002-10", "VW Bus T2 ",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "8",
		"Druckfarbe;weiss@", "pd881552929.htm",
		"", 1,
		"00106", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Caddy-bw.jpg",
		200, 112,
		"M060003-10", "VW Caddy 2K",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "8",
		"Druckfarbe;weiss@", "pd-575225855.htm",
		"", 1,
		"00106", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Käfer65-bw.jpg",
		200, 113,
		"M060004-10", "VW Käfer 1965",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "8",
		"Druckfarbe;weiss@", "pd-1383417963.htm",
		"", 1,
		"00106", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Wartburg-311-bw.jpg",
		200, 101,
		"M900001", "Wartburg 311",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "9",
		"Druckfarbe;gelb@", "pd-497051422.htm",
		"", 1,
		"00191", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Wartburg353-bw.jpg",
		200, 108,
		"M900002", "Wartburg 353",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "9",
		"Druckfarbe;gelb@", "pd-1254395424.htm",
		"", 1,
		"00191", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Puck-bw.jpg",
		200, 145,
		"M900003", "Eriba Puck 1965",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-1183271104.htm",
		"", 1,
		"00191", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/SuperSeven-bw.jpg",
		200, 132,
		"M910001", "Lotus Super Seven",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-854369884.htm",
		"", 1,
		"00192", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/ShelbyCobra-bw.jpg",
		200, 105,
		"M920001", "Shelby Cobra",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "11",
		"Druckfarbe;schwarz@", "pd28611272.htm",
		"", 1,
		"00193", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Bierkrug05-50-2.jpg",
		200, 254,
		"C1S-28-2-26NA", "Bierkrug 0,5 L &quot;MINI 50&quot;",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1245664462.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/Bierkrug05-50-1.jpg",
		200, 247,
		"C1S-28-2-26NA-1", "Bierkrug 0,5 L &quot;50 Jahre MINI&quot;",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "15",
		"", "pd242204588.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Bierkrug05-50-2.jpg",
		200, 254,
		" C1S-28-0-26LG", "Bierkrug 1,0 L (Maßkrug) &quot;MINI 50)",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1406918074.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Bierkrug05-50-1.jpg",
		200, 247,
		" C1S-28-0-26LG-1", "Bierkrug 1,0 L (Maßkrug) &quot;50 Jahre MINI&quot;",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-364797320.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Bierkrug10-IMM.jpg",
		200, 287,
		"IMM0001", "Maßkrug (Bierkrug 1.0 Liter)",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1302830831.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Bierkrug05-IMM.jpg",
		200, 267,
		"IMM0002", "Bierkrug 0.5 Liter (Steinkrug)",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1007319733.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Haferl-IMM.jpg",
		200, 216,
		"IMM0003", "Kaffeebecher (Haferl)",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-2070080533.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Haferl-Mini50.jpg",
		200, 234,
		"03-03-12-015 ", "Kaffeebecher (Haferl) &quot;MINI 50&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1583179793.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Haferl-50Jahre.jpg",
		200, 219,
		"03-03-12-015 -1", "Kaffeebecher (Haferl) &quot;50 Jahre MINI&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1816113319.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Haferl-40Jahre.jpg",
		200, 221,
		"03-03-12-015 -2", "Kaffeebecher (Haferl) &quot;40 Jahre Clubman&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "15",
		"", "pd657420579.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/Haferl-JC-rot.jpg",
		200, 207,
		"03-03-12-015 -3", "Kaffeebecher (Haferl) &quot;John Cooper&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "15",
		"", "pd60614665.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Kinderrucksack1.jpg",
		200, 194,
		"KRS-594-1", "Kinderrucksack wenn ich groß bin...",
		"Mini frei wählbar...", "",
		"17.5", "0",
		"1", 1,
		"Stück", "17",
		"Farbe;rot@", "pd-1545214718.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Kinderrucksack-blanko-blau.jpg",
		200, 200,
		"KRS-595", "Kinderrucksack",
		"", "",
		"17.5", "0",
		"1", 1,
		"Stück", "17",
		"Farbe;rot@", "pd-864609536.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/Button-IMM-Ich bin dabei.jpg",
		200, 188,
		"IMM0004", "Button &quot;Ich bin dabei!&quot;",
		"", "",
		"1", "0",
		"1", 1,
		"Stück", "24",
		"", "pd473692940.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Mauspad 230x190-50.jpg",
		200, 168,
		"M1A-01-4-36BA", "Mousepad &quot;Mini 50&quot;",
		"", "",
		"5", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1708968083.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Anhaenger-Affe-50.jpg",
		200, 236,
		"S4A-04-0-25WH", "Schlüsselanhänger Affe &quot;Mini 50&quot;",
		"", "",
		"6.5", "0",
		"1", 1,
		"Stück", "18",
		"", "pd390118854.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Anhaenger-Hund-50.jpg",
		200, 216,
		"S4A-04-0-25WH-1", "Schlüsselanhänger Hund &quot;Mini 50&quot;",
		"", "",
		"6.5", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1563177316.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Anhaenger-Teddy-50.jpg",
		200, 212,
		"S4A-04-0-25WH-2", "Schlüsselanhänger Teddy &quot;Mini 50&quot;",
		"", "",
		"6.5", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-980056526.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Anhaenger-Affe-IMM.jpg",
		200, 220,
		"IMM0005", "Schlüsselanhänger Affe",
		"", "",
		"6.5", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-889299024.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Anhaenger-Hund-IMM.jpg",
		200, 211,
		"IMM0006", "Schlüsselanhänger Hund",
		"", "",
		"6.5", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1664601479.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Anhaenger-Teddy-IMM.jpg",
		200, 221,
		"IMM0007", "Schlüsselanhänger Teddy",
		"", "",
		"6.5", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-1703564531.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Affe-50.jpg",
		200, 254,
		"S1A-08-1-25BR", "Klammeraffe &quot;Mini 50&quot;",
		"", "",
		"10", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1877613571.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Affe-IMM.jpg",
		200, 241,
		"IMM0008", "Plüschtier &quot;Affe&quot;",
		"Sitzhöhe 18cm", "",
		"10", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-930673175.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Teddy-IMM.jpg",
		200, 235,
		"IMM0009", "Plüschtier &quot;Teddy&quot;",
		"Sitzhöhe 18cm", "",
		"9", "0",
		"1", 1,
		"Stück", "24",
		"", "pd177866516.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/DAufkleber100x50.jpg",
		200, 108,
		"AM007", "Aufkleber Digitaldruck, z.B. 140 Stück 100x50mm",
		"Bitte anfragen! Wir unterbreiten gerne ein Angebot!", "",
		"35", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-423095454.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/images/nopicture.gif",
		75, 50,
		"AM003-1", "Heckscheibenaufkleber Text ca. 850x90mm",
		"Bitte teilen Sie uns den gewünschten Text mit!", "",
		"9.5", "0",
		"1", 1,
		"Stück", "16",
		"Text;100% free of BMW parts@", "pd1592946784.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/NewMini-boy-stinkefinger.jpg",
		200, 267,
		"AM005", "Stinkefinger Boy &quot;New Mini&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "16",
		"Farbe;rot@", "pd-939269717.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Piss-NewMini.jpg",
		200, 207,
		"AM005", "Stinkefinger Boy &quot;New Mini&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "16",
		"Farbe;rot@", "pd1516235729.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/NewMini-boy-stinkefinger.jpg",
		180, 240,
		"AM005", "Stinkefinger Boy &quot;New Mini&quot;",
		"", "",
		"6", "0",
		"1", 1,
		"Stück", "16",
		"Farbe;rot@", "pd205943210.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/images/nopicture.gif",
		75, 50,
		"S1Z-01-1-25BR ", "Teddy &quot;Mini 50&quot;",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1774400287.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Entwurf1.jpg",
		396, 240,
		"Forum01", "Forums-Shirt Variante 1 ",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "23",
		"Grösse;L@Farbe;aschgrau@Druckfarbe;gelb@", "pd570656231.htm",
		"", 1,
		"101", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Entwurf2.jpg",
		392, 240,
		"Forum02-1", "Forums-Shirt Variante 2",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "23",
		"Grösse;L@Farbe;aschgrau@Druckfarbe;gelb@", "pd-1847747987.htm",
		"", 1,
		"101", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Entwurf1.jpg",
		396, 240,
		"Forum03-1", "Forums-Shirt Variante 1 LADY-FIT Größen!",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "23",
		"Grösse;L@Farbe;deep navy@Druckfarbe;gelb@", "pd1245914247.htm",
		"", 1,
		"101", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/IMM2010H.jpg",
		200, 133,
		"IMM0010-13", "T-Shirt &quot;wir sehen uns&quot; (Herren)",
		"neue Qualität, hochwertiger Druck!", "",
		"14.5", "0",
		"1", 1,
		"Stück", "24",
		"Grösse;XL@Farbe;classic oliv@", "pd134442952.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/IMM2010W.jpg",
		200, 133,
		"IMM0011-1", "T-Shirt &quot;wir sehen uns&quot; (Damen)",
		"", "",
		"14.5", "0",
		"1", 1,
		"Stück", "24",
		"Grösse;L@Farbe;Weiss@", "pd287308598.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Zubehoer-Rakel.jpg",
		190, 190,
		"Z0028", "Kunststoffrakel",
		"", "",
		"1.5", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1121312437.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Kochset1.jpg",
		200, 150,
		"C0001", "Camping Kochset 7-teilig",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-1614345199.htm",
		"", 1,
		"099", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Wasserkocher.jpg",
		200, 150,
		"C0002", "Reisewasserkocher mit Zubehör",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-237898585.htm",
		"", 1,
		"099", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Kuehltasche1.jpg",
		200, 150,
		"C0003", "Kühltasche mit Picknickset",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "22",
		"", "pd804562733.htm",
		"", 1,
		"099", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Shoulderbag-GB.jpg",
		200, 163,
		"FA0001", "Shoulder Bag GB",
		"auch andere Nation en erhältlich", "",
		"15", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1198656221.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Hanes-String.jpg",
		200, 200,
		"UM0001", "String Tanga",
		"", "",
		"10", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1125141806.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/BritishOpen.jpg",
		200, 135,
		"M010035-10", "Mini British Open",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1246460032.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/MotorA.jpg",
		200, 150,
		"M011001", "Motor A-Serie",
		"NUR MIT SUBLIMATIONS-ARTIKELN KOMBINIERBAR!!!", "",
		"0", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-138694781.htm",
		"", 1,
		"001A", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/basic-creme.jpg",
		200, 200,
		"S0001-1", "Sublimations T-Shirt Herren",
		"für hochwertigen Colordruck", "",
		"14.5", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;L@Farbe;classic oliv@", "pd-108215510.htm",
		"", 1,
		"002A", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/b asic-weiss-lady.jpg",
		200, 200,
		"S0002", "Sublimations T-Shirt Lady Fit",
		"für hochwertigen Colordruck", "",
		"14.5", "0",
		"1", 1,
		"Stück", "14",
		"Grösse;L@Farbe;Weiss@", "pd1260566268.htm",
		"", 1,
		"002A", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/Race-Minis.jpg",
		200, 150,
		"M011002", "Race Minis",
		"NUR MIT SUBLIMATIONS-ARTIKELN KOMBINIERBAR!!!", "",
		"0", "0",
		"1", 1,
		"Stück", "3",
		"", "pd144850946.htm",
		"", 1,
		"001A", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Rallye.jpg",
		200, 150,
		"M011003", "Rallye Mini",
		"NUR MIT SUBLIMATIONS-ARTIKELN KOMBINIERBAR!!!", "",
		"0", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1130959360.htm",
		"", 1,
		"001A", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/LogoInnoCooper1300.jpg",
		200, 57,
		"M010901-10", "Logo Innocenti Mini 1300 (B39)",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1246864509.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/B38-1001.jpg",
		200, 74,
		"M010902-10", "Logo Innocenti Mini 1001 (B38)",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-2115948719.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Austin2.jpg",
		200, 67,
		"M010903-10", "Logo Austin",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1231792667.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Austin3.jpg",
		200, 53,
		"M010904-10", "Logo Austin",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd104336441.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Austin.jpg",
		200, 136,
		"M010905-10", "Logo Austin",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-558168499.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/BL1.jpg",
		200, 199,
		"M010906-10", "Logo British Leyland",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1245820961.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Innocenti.jpg",
		200, 75,
		"M010907-10", "Logo Innocenti ",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1392137653.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Leyland.jpg",
		200, 123,
		"M010908-10", "Logo Leyland",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1297034487.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Leyland-Innocenti.jpg",
		200, 172,
		"M010909-10", "Logo Leyland Innocenti",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1037900771.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Morris.jpg",
		200, 53,
		"M010910-10", "Logo Morris",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1544813809.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Riley.jpg",
		200, 102,
		"M010911-10", "Logo Riley",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd673272197.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Schaltschema1.jpg",
		200, 96,
		"M010912-1", "Logo Schaltschema ",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;gelb@", "pd-2125081127.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Schaltschema2.jpg",
		200, 117,
		"M010913-10", "Logo Schaltschema ",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-327270931.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Wolseley1.jpg",
		200, 51,
		"M010914-10", "Logo Wolseley",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-767754815.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Woseley2.jpg",
		200, 113,
		"M010915-1", "Logo Wolseley",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;gelb@", "pd-253867691.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/NewMiniBoyStinkefinger.jpg",
		200, 235,
		"M010801-10", "Fun: New Mini Repair Kit",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1175710551.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/NewMiniGirlpiss.jpg",
		200, 163,
		"M010802-10", "Fun: New Mini pissing girl",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1887300675.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/Stinkeboy.jpg",
		200, 203,
		"M010804-10", "Fun: New Mini Boy Stinkefinger",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1788757359.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/Stinkegirl.jpg",
		200, 205,
		"M010805", "Fun: New Mini Girl Stinkefinger",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd-1983496923.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/boypiss.jpg",
		200, 153,
		"M010803-10", "Fun: New Mini pissing boy",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1246871755.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/2Door.jpg",
		200, 111,
		"M040005-10", "Morris 2-Door Saloon",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "6",
		"Druckfarbe;weiss@", "pd-1847065622.htm",
		"", 1,
		"00104", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/Handtasche-klein.jpg",
		200, 150,
		"FA0002", "Schultertasche klein",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1500190855.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/shoulderbag-mittel-mokeblau.jpg",
		200, 150,
		"FA0003", "Schultertasche mittel",
		"", "",
		"18", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1339809359.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/images/nopicture.gif",
		75, 50,
		"FA0002-1", "Ersatzlasche zu Schultertasche klein (inkl. Druck)",
		"", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1766476053.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/images/nopicture.gif",
		75, 50,
		"FA0003-1", "Ersatzlasche zu Schultertasche mittel  (inkl. Druck)",
		"", "",
		"10", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-349238965.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/images/nopicture.gif",
		75, 50,
		"FA0004", "Schultertasche groß",
		"", "",
		"20", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1967774833.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/images/nopicture.gif",
		75, 50,
		"FA0004-1", "Ersatzlasche zu Schultertasche groß  (inkl. Druck)",
		"", "",
		"11", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1246956008.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/Damenhandtasche.jpg",
		200, 150,
		"FA0005", "Damenhandtasche",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "17",
		"", "pd935174742.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/Estate-MKI-bw.jpg",
		200, 112,
		"M010036", "Mini Clubman Estate MK I",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "2",
		"Druckfarbe;weiss@", "pd1251655329.htm",
		"", 1,
		"000101", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/IMM2010.jpg",
		200, 128,
		"IMM0012", "IMM-Sticker gross (75 x 42cm)",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1252404400.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/IMM2010.jpg",
		200, 128,
		"IMM0013", "IMM-Sticker mittel (37 x 21 cm)",
		"", "",
		"7", "0",
		"1", 1,
		"Stück", "24",
		"", "pd181361923.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/IMM2010.jpg",
		200, 128,
		"IMM0014", "IMM-Sticker klein (13 x 7 cm)",
		"", "",
		"1.2", "0",
		"1", 1,
		"Stück", "24",
		"", "pd2144483049.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/images/nopicture.gif",
		75, 50,
		"IMM0015", "Heckscheibenaufkleber IMM",
		"WWW.IMM2010.DE", "",
		"4", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-1260815553.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/images/nopicture.gif",
		75, 50,
		"MF0001", "Heute nicht Mädels",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "12",
		"", "pd276982101.htm",
		"", 1,
		"M002", "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();
			};
		};