	// 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="99" height="24" 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/AG100.jpg",
		49, 100,
		"AG100", "CD Nano® Auto Glas Versiegelung 100 ml",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd366667931.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/ASR100.jpg",
		98, 98,
		"ASR100", "CD Nano® Auto Glas Sachet 16 ml",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-942257197.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/HS100.jpg",
		60, 120,
		"HS1000", "CD Nano® Outdoor Holz- und Stein-Versiegelung",
		"", "",
		"79.9", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-29720114.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/nanopad.jpg",
		131, 100,
		"NSC1", "CD Nano® CD Nanopad (Schmutzradierer) 1Stück",
		"", "",
		"1.49", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1871041971.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/pl kl.jpg",
		168, 185,
		"PT100", "CD Nano® Poliertuch im Sachet je 10 Stk.",
		"", "",
		"7.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-671195409.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/tuecher V014.jpg",
		155, 150,
		"V014", "CD Nano® Große Poliertücher, neutral 10 Stück",
		"", "",
		"7.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-698472431.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/nopicture.gif",
		100, 125,
		"TEX100", "CD Nano® Textil- Versiegelung 1000 ml",
		"", "",
		"129.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-164621016.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/textil1l.jpg",
		62, 120,
		"TEX250", "CD Nano® Textil-Versiegelung 250 ml",
		"", "",
		"34.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd2112266134.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/EC100.jpg",
		224, 185,
		"EC100", "CD Nano® Lackveredelung der neuesten Technologie - Sachettuch",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1540060828.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/WN100.gif",
		146, 180,
		"WN100", "Indische Waschnüsse 250g",
		"", "",
		"6.9", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-1070405311.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/WN100.gif",
		146, 180,
		"WN200", "Indische Waschnüsse 1 kg",
		"", "",
		"25.9", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-488647337.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/frost400.jpg",
		148, 186,
		"FRS1000", "CD Nano® CD Nano Frostschutz Spezial-Konzentrat je 1 Ltr.",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-40780745.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/NF100.jpg",
		149, 185,
		"NF100", "CD Nano® Fresh",
		"", "",
		"12.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1415980220.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/mikrofilhaushalt.jpg",
		100, 100,
		"MF01", "Mikrofil Universaltücher 2er Set gelb + grau 34 x 36 cm",
		"", "",
		"12.9", "0",
		"1", 1,
		"Stück", "6",
		"", "pd213252413.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/mikrofill hand.jpg",
		130, 145,
		"MF02", "2 Mikrofil-Universal und Geschirrtücher 40 x 50 cm",
		"", "",
		"12.9", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-285876247.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/mikrofill hand.jpg",
		130, 145,
		"MF03", "2 Mikrofil Universal und Geschirrtücher 60 x 50 cm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "6",
		"", "pd254364735.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/MF04.jpg",
		119, 120,
		"MF04", "Mikrofil Brillenputztücher",
		"", "",
		"6.95", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-805361531.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/giga schaum.jpg",
		58, 200,
		"MCS250", "CD-Nano® Multifunktions Gigaschaum",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1349053727.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/fleckenentferner.jpg",
		68, 185,
		"FL100", "CD Nano® Profi- Fleckenentferner, reicht für ca. 5 m²",
		"", "",
		"13.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-2093401347.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/brutalo reiniger.jpg",
		70, 185,
		"BRS1000", "CD Nano® Brutalo-Profi-Spezialreiniger",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1152782989.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/boots versiegelung.jpg",
		108, 200,
		"BTS250", "CD Nano® Bootsbeschichtung 2 Komponenten",
		"", "",
		"99.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-633375627.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/boot.jpg",
		164, 200,
		"BTS1000", "CD Nano® Nano-Bootsbeschichtung 2 Komponenten",
		"", "",
		"299", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-414604373.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/TSHxxx.jpg",
		150, 150,
		"TSH", "Dienstleister-Poloshirt mit CD Nano®  Logo gestickt XX= Größe  S-XXL",
		"", "",
		"21.9", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-2126060610.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/GS100.jpg",
		236, 185,
		"GS100-1", "CDNano® Glas - Selbstreinigungssystem",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-126718676.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/IS100.jpg",
		222, 185,
		"IS100", "CD Nano® Indoor-System",
		"", "",
		"69.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-836483270.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/HS100sy.jpg",
		217, 185,
		"HS10 SY", "CD Nano® Outdoor-System",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1179244552.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/KL300.jpg",
		215, 185,
		"KL300", "CDNano® KFZ-Komplett-Veredelungs-Set",
		"", "",
		"86.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1272721126.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/FS 100sy.jpg",
		198, 185,
		"FS 100sy", "CD Nano® Felgen - Veredelungs-Set",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1233811580.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/RK100.jpg",
		210, 185,
		"RK10", "CD Nano® Nachreinigungs- und Aufbereitungssystem",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1999849810.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/RK100 system2.jpg",
		63, 185,
		"RK01", "Reiniger Konzentrat K1 100 ml",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1341595887.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/RK100 system1.jpg",
		51, 185,
		"RK02", "Nano Konditioner K2",
		"", "",
		"27.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1694021099.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/nopicture.gif",
		100, 125,
		"RK2000", "Nano Konditioner K1 1 Liter",
		"", "",
		"149.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd980015633.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/spezial rein.jpg",
		82, 200,
		"CF1000", "CD Nano® Spezialreiniger 1 Liter",
		"", "",
		"28.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-489663187.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/FS 100sy.jpg",
		198, 185,
		"FS 100sy-1", "CD Nano® Felgen - Veredelungs-Set",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd633951011.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/GS100.jpg",
		236, 185,
		"GS100", "CDNano® Glas - Selbstreinigungssystem",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "5",
		"", "pd777699764.htm",
		"", 1,
		"07", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/gs 100.jpg",
		80, 173,
		"GS021", "CD Nano® Glaspflege selbstreinigend 100 ml",
		"", "",
		"26.9", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-953299198.htm",
		"", 1,
		"07", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/iindoor vers.jpg",
		62, 185,
		"IS02", "CD Nano® Indoor-Versiegelung",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1987837138.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/IS100.jpg",
		222, 185,
		"IS100-System", "CD Nano® Indoor-System",
		"", "",
		"69.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1374579444.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/nopicture.gif",
		100, 125,
		"IS1000", "CD Nano® Indoor-Versiegelung 1 Liter",
		"", "",
		"129.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-304401894.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/nopicture.gif",
		100, 125,
		"HS200", "CD Nano® Outdoor Holz- und Stein-Versiegelung 100ml",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-816937018.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/HS100sy.jpg",
		217, 185,
		"HS10 SY-1", "CD Nano® Outdoor-System",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-688484904.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/V015.jpg",
		200, 185,
		"V015", "CD Nano® Keyholder (Schlüsselband)",
		"", "",
		"3.9", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1205881681.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/MPR100.jpg",
		49, 100,
		"MPR100", "CD Nano® Möbelpolitur 100 ml",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd694817155.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/DFN100.jpg",
		50, 100,
		"DFN100-1", "CD Nano® Nano Bad &amp; Sanitär Desinfektionsmittel 100 ml",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1875706663.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/nopicture.gif",
		100, 125,
		"DFN1000-1", "CD Nano® Nano Bad &amp; Sanitär Desinfektionsmittel 1000ml",
		"", "",
		"18.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-315526481.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/grundreiniger.jpg",
		26, 80,
		"GS02", "CD Nano® Grundreiniger 100 ml ",
		"", "",
		"10.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1207743037.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/brutalo reiniger.jpg",
		70, 185,
		"BRS1000-1", "CD Nano® Brutalo-Profi-Spezialreiniger",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1083598873.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/MPR100.jpg",
		49, 100,
		"MPR100-1", "CD Nano® Möbelpolitur ",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-121122833.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/KL300.jpg",
		215, 185,
		"KL300-1", "CDNano® KFZ-Komplett-Veredelungs-Set",
		"", "",
		"86.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd44717291.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/entkrusterherd.jpg",
		150, 150,
		"KX100", "CD Nano® Super-Entkruster",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1207998989.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/kfz-profi holo.jpg",
		59, 200,
		"KL001", "Reiniger und Hologrammpolitur (2in1)",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1705813624.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/kfz-lackgel.jpg",
		169, 180,
		"KL002", "CDi Nano® Nanolackveredelungs-Gel",
		"", "",
		"42.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1126234870.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/nopicture.gif",
		100, 125,
		"KL1000", "CDi Nano® Reiniger und Hologrammpolitur (2in1)",
		"", "",
		"129.9", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1816490516.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/tueten.jpg",
		106, 80,
		"VOO7", "CD-Nano Tragetaschen aus Papier 27x22 cm",
		"", "",
		"4", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1208010506.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/grundreiniger.jpg",
		60, 185,
		"GS02-1", "CD Nano® Grundreiniger 100 ml ",
		"", "",
		"10.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd830077575.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/nopicture.gif",
		100, 125,
		"GS1000", "Grundreiniger für die Reinigung vor und nach der Nanoformierung",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1721212941.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/hso21.jpg",
		60, 185,
		"HS02", "Outdoor Bodenversiegelung saugend",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1208262105.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/nopicture.gif",
		100, 125,
		"AG5000", "CD Nano® Auto Glas Versiegelung 5000 ml",
		"", "",
		"389", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1205598357.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/ag200.jpg",
		94, 150,
		"AG200", "CD Nano® Auto Glas Versiegelung 1 Liter",
		"", "",
		"129.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd838447191.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/nopicture.gif",
		100, 125,
		"FS2000", "Spezial Felgenversiegelung 1 Liter",
		"", "",
		"149.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1191048925.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/nopicture.gif",
		100, 125,
		"FRS5000", "CD Nano® Tensidefreier Frostschutz für Scheibenwischanlage",
		"", "",
		"69.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1182238288.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/nopicture.gif",
		100, 125,
		"GS5000/1", "Grundreiniger für die Reinigung vor und nach der Nanoformierung",
		"", "",
		"69.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1527847171.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/hs5000.jpg",
		160, 185,
		"HS5000", "Outdoor Holz u. Stein Versiegelung 5 Liter",
		"", "",
		"199", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1701848477.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/nopicture.gif",
		100, 125,
		"RK1000", "Reiniger Konzentrat K1 1 Liter",
		"", "",
		"58.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1095906123.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/nopicture.gif",
		100, 125,
		"GS022", "CD Nano® Fensterglas-Nanoformierung - Versiegelung SR (selbstreinigend) 1000ml",
		"", "",
		"179", "0",
		"1", 1,
		"Stück", "11",
		"", "pd157729698.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/nopicture.gif",
		100, 125,
		"MPR1000", "CD Nano® Möbelpolitur 1Ltr.",
		"", "",
		"79.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-760348823.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/nanopad.jpg",
		131, 100,
		"NSC30", "CD Nano® CD Nanopad (Schmutzradierer) 30 Stück",
		"", "",
		"36.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1230364903.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/nanopad.jpg",
		131, 100,
		"NSC30-1", "CD Nano® CD Nanopad (Schmutzradierer) 30 Stück",
		"", "",
		"36.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1894746354.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/V141.jpg",
		280, 187,
		"V141", "Artic 4-Jahreszeiten-Jacke 3-in-1 kobaltblau",
		"", "",
		"80", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1227183591.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/V140.jpg",
		220, 207,
		"V140", "Baseballmütze",
		"", "",
		"10", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1796467309.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/V901.jpg",
		90, 100,
		"V901", "CD-Nano® - Prospekt",
		"", "",
		"1.5", "0",
		"1", 1,
		"Stück", "10",
		"", "pd2040785507.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/MSK100.jpg",
		220, 211,
		"MSK100", "Milboma® Milbenschreck 250 ml",
		"", "",
		"26.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd136512329.htm",
		"", 1,
		"09", "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();
			};
		};