	// 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="80" height="16" alt="Note item" 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>Before:&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>Now only:&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 += "Price on demand";
			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/Alan 48+.jpg",
		188, 85,
		"1048", "MIDLAND ALAN 48 plus",
		"Multichannel AM/FM 1/4 watt CB radio", "",
		"129", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd-576642050.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/AE5090BLAU SMALL.jpg",
		218, 120,
		"12290", "ALBRECHT AE 5090",
		"Multichannel CB radio !NEW BLUE LCD!", "Alan gmbh",
		"149", "2",
		"1", 1,
		"Pieces", "9",
		"", "pd1035294425.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/AE8090-small.jpg",
		184, 100,
		"12890", "ALBRECHT AE 8090",
		"CB MULTICHANNEL BASE STATION", "",
		"269", "5",
		"1", 1,
		"Pieces", "9",
		"", "pd-30983642.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/12810_small.jpg",
		150, 64,
		"12891", "ALBRECHT AE 8090 wood design",
		"SOLD OUT", "",
		"279", "5",
		"1", 1,
		"Pieces", "9",
		"", "pd-1374658401.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/ae 4090.jpg",
		150, 102,
		"11409", "ALBRECHT AE 4090",
		"Multichannel mobile CB radio", "",
		"79", "1.5",
		"1", 1,
		"Pieces", "9",
		"", "pd-1330109128.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/AE5290-small.jpg",
		125, 114,
		"12490", "ALBRECHT AE 5290",
		"Multichannel LCD AM/FM CB tranceiver", "",
		"99", "2",
		"1", 1,
		"Pieces", "9",
		"", "pd1043429477.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/DR101 small.jpg",
		60, 74,
		"27300", "ALBRECHT DR 101 ",
		"Portable DAB radio Band III and Band L", "",
		"179.9", "0.5",
		"1", 1,
		"Pieces", "15",
		"", "pd1079347844.htm",
		"", 1,
		"DAB audio ", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/MAP500.jpg",
		49, 100,
		"C718", "Alan MAP 500",
		"Handheld GPS receiver with LCD display.", "",
		"199", "0.5",
		"1", 1,
		"Pieces", "16",
		"", "pd1083516131.htm",
		"", 1,
		"GPS", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/JOHNSON.gif",
		145, 100,
		"3050", "PRESIDENT JOHNSON",
		"LAATSTE STUKS !", "",
		"169", "2.5",
		"1", 1,
		"Pieces", "12",
		"", "pd1457148894.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Deltaforce.jpg",
		120, 76,
		"33541", "MAGNUM DELTA FORCE",
		"10 meter ham radio with many features.", "",
		"289", "3.5",
		"1", 1,
		"Pieces", "20",
		"", "pd1682678203.htm",
		"", 1,
		"MAGN", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/AE 540.jpg",
		200, 116,
		"35300", "ALBRECHT AE 540",
		"", "",
		"179", "1.5",
		"1", 1,
		"Pieces", "18",
		"", "pd-1700390968.htm",
		"", 1,
		"Alham", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/35510_klein.jpg",
		150, 78,
		"35511", "ALBRECHT AE 485 S",
		"10 Meter AM/FM/SSB mobile radio", "",
		"219", "2",
		"1", 1,
		"Pieces", "18",
		"", "pd1038937562.htm",
		"", 1,
		"Alham", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/35530_klein.jpg",
		150, 80,
		"35533", "ALBRECHT AE 497 W",
		"10 Meter high power base station", "",
		"329", "5",
		"1", 1,
		"Pieces", "18",
		"", "pd-887984711.htm",
		"", 1,
		"Alham", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/gp1-small.jpg",
		42, 100,
		"29720", "ALBRECHT GP ONE",
		"PMR 446 radio with integrated GPS", "",
		"249", "0.5",
		"1", 1,
		"Pieces", "16",
		"", "pd-770605178.htm",
		"", 1,
		"GPS", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/ae 30h.jpg",
		75, 279,
		"27030", "ALBRECHT AE 30H",
		"Handheld scanning receiver with 30 memory channels", "",
		"79.9", "0.5",
		"1", 1,
		"Pieces", "30",
		"", "pd1039426222.htm",
		"", 1,
		"albscan", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/ae 72h.jpg",
		75, 137,
		"27072", "ALBRECHT AE 72H KOERSSCANNER",
		"Handheld scanning receiver with 100 memory channels", "",
		"129.9", "0.5",
		"1", 1,
		"Pieces", "30",
		"", "pd1236852893.htm",
		"", 1,
		"albscan", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/ae69h.jpg",
		50, 125,
		"27069", "ALBRECHT AE 69H",
		"Handheld scanning receiver with 80 memory channels", "",
		"79.9", "0.5",
		"1", 1,
		"Pieces", "30",
		"", "pd-443774566.htm",
		"", 1,
		"albscan", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Alan 78+.jpg",
		172, 85,
		"1078", "MIDLAND ALAN 78 plus",
		"Multichannel 1/4 Watt AM/FM CB radio", "",
		"109", "1.7",
		"1", 1,
		"Pieces", "10",
		"", "pd-1649199541.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Alan42_small1.jpg",
		60, 225,
		"1042", "MIDLAND ALAN 42 plus",
		"Handheld CB radio in AM/FM Multi norm", "",
		"149", "1",
		"1", 1,
		"Pieces", "10",
		"", "pd386395440.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/djx3.jpg",
		47, 100,
		"27003", "ALINCO X3",
		"Wide range all mode pocket scanning receiver", "",
		"179", "0.3",
		"1", 1,
		"Pieces", "31",
		"", "pd984899052.htm",
		"", 1,
		"alin", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Cb980.gif",
		100, 59,
		"7117", "CB 250/CS 998/CB 980 communication speaker",
		"Heavy duty communication speaker for CB radio&rsquo;s etc..", "",
		"12.5", "0.5",
		"1", 1,
		"Pieces", "6",
		"", "pd1045996179.htm",
		"", 1,
		"speak", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Cb-905.gif",
		100, 85,
		"7120", "CB 20/CB 905 speaker with noise filter",
		"Communication speaker with noise filters for CB radio&rsquo;s etc...", "",
		"14.95", "1",
		"1", 1,
		"Pieces", "6",
		"", "pd-1654348328.htm",
		"", 1,
		"speak", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/CB150.gif",
		100, 111,
		"71150", "CB 150/CS 990 communication speaker",
		"Communication speaker for CB radio&rsquo;s etc...", "",
		"9.95", "0.5",
		"1", 1,
		"Pieces", "6",
		"", "pd1437677305.htm",
		"", 1,
		"speak", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/DMC.jpg",
		50, 79,
		"41964", "DMC 520/4 S",
		"4 pin microphone for older Cybernet based CB radio&rsquo;s ", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "5",
		"", "pd-389390394.htm",
		"", 1,
		"Mic", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/p-dmc-520-mic.jpg",
		50, 82,
		"41965", "DMC 520/P4 UNIDEN ",
		"4 pin microphone for older Uniden/President radio&rsquo;s", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "5",
		"", "pd1360968143.htm",
		"", 1,
		"Mic", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/p-dmc-520-mic.jpg",
		50, 82,
		"41966", "DMC 520/P6",
		"6 pin microphone for Albrecht, Midland, President etc...", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "5",
		"", "pd-2045336732.htm",
		"", 1,
		"Mic", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/images/nopicture.gif",
		74, 50,
		"41517", "President DNC 518 Up/down",
		"6 pin original President microphone with up/down for Herbert etc...", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "5",
		"", "pd-842624875.htm",
		"", 1,
		"Mic", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/images/nopicture.gif",
		74, 50,
		"41518", "President DNC 518",
		"Original 6 pin President micropohone for Harry, Wilson, Johnson etc...", "",
		"19.95", "0.5",
		"1", 1,
		"Pieces", "5",
		"", "pd-1911732174.htm",
		"", 1,
		"Mic", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/EA35.gif",
		100, 68,
		"7201", "CB 35",
		"Mobile linear amplifier", "",
		"39", "0.6",
		"1", 1,
		"Pieces", "4",
		"", "pd-1181209106.htm",
		"", 1,
		"Linamp", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Reer.jpg",
		100, 108,
		"C761.02", "Alan REER 5001 (set of 2)",
		"Low priced quality PMR446 radio..Licence free in Belgium..Good for Baby monitoring", "",
		"59.95", "0.5",
		"1", 1,
		"Pieces", "1",
		"", "pd1055324527.htm",
		"", 0,
		"BABY", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/41881-1.jpg",
		100, 100,
		"41892", "MHS 301",
		"Motorbike headset for Tectalk/Tectalk FM/Tectalk Joker", "",
		"29.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd1055433565.htm",
		"", 1,
		"MOTO", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/41881.jpg",
		100, 74,
		"41884", "MHS 300",
		"Motorbike headset for PMR 446 radio&rsquo;s", "",
		"25.5", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd-672512678.htm",
		"", 1,
		"MOTO", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/TAYLOR.gif",
		131, 100,
		"2375", "PRESIDENT NEW TAYLOR III",
		"Classic 40 ch AM/FM CB radio with up/down mike Multi", "",
		"175.95", "2",
		"1", 1,
		"Pieces", "12",
		"", "pd1056461553.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/S9.jpg",
		150, 62,
		"1009", "MAGNUM S9",
		"AM/FM/SSB Full feature radio", "",
		"429", "5",
		"1", 1,
		"Pieces", "20",
		"", "pd1114950682.htm",
		"", 1,
		"MAGN", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/27302.jpg",
		100, 80,
		"27302", "ALBRECHT DR 201",
		"DAB digital radio with MP3 ", "",
		"199.9", "0",
		"1", 1,
		"Pieces", "15",
		"", "pd-766396456.htm",
		"", 1,
		"DAB audio ", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/27305.jpg",
		100, 72,
		"27305", "ALBRECHT DR 601",
		"DAB digilal radio", "",
		"219", "0",
		"1", 1,
		"Pieces", "15",
		"", "pd1518916964.htm",
		"", 1,
		"DAB audio ", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/27303.jpg",
		100, 58,
		"27303", "ALBRECHT DR 301",
		"DAB digital radio with SD memory card", "",
		"299", "0",
		"1", 1,
		"Pieces", "15",
		"", "pd1938145734.htm",
		"", 1,
		"DAB audio ", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/KOMPASS.jpg",
		100, 113,
		"79280", "Digital Compass",
		"The ideal companion for all outdoor-activities", "",
		"35", "0",
		"1", 1,
		"Pieces", "16",
		"", "pd1771802300.htm",
		"", 1,
		"GPS", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/AE 92 H.jpg",
		75, 155,
		"27092", "ALBRECHT AE 92 H",
		"", "",
		"149.9", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd1414834546.htm",
		"", 1,
		"albscan", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/Walker.jpg",
		132, 100,
		"2380", "PRESIDENT WALKER",
		"AM/FM CB tranceiver MULIT NORM", "",
		"199", "2",
		"1", 1,
		"Pieces", "12",
		"", "pd1135783341.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/intek m-790.jpg",
		145, 90,
		"48790", "INTEK M-790 Plus",
		"Multi norm AM/FM tranceiver with speech processor", "",
		"109.95", "1.7",
		"1", 1,
		"Pieces", "11",
		"", "pd-976140294.htm",
		"", 1,
		"Intek", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/intekm120_.jpg",
		120, 100,
		"48120", "INTEK M-120 Plus",
		"Multi norm tranceiver AM/FM", "",
		"84.95", "1.5",
		"1", 1,
		"Pieces", "11",
		"", "pd618010296.htm",
		"", 1,
		"Intek", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Intek m-490.jpg",
		129, 90,
		"48490", "INTEK M-490 Plus",
		"AM/FM Multi Norm With SPEECH PROCESSOR", "",
		"159.95", "2",
		"1", 1,
		"Pieces", "11",
		"", "pd-1952400474.htm",
		"", 1,
		"Intek", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/teamroadcomsilver.jpg",
		150, 55,
		"3138", "TEAM ROADCOM AM/FM Multi Norm 12/24 Volt",
		"SUPER PRIJS !", "",
		"94.95", "3",
		"1", 1,
		"Pieces", "13",
		"", "pd1045790545.htm",
		"", 1,
		"Team", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/AE 5800 SSB.jpg",
		183, 100,
		"12900", "ALBRECHT AE 5800",
		"AM/FM/SSB mobile CB radio", "",
		"229", "2.6",
		"1", 1,
		"Pieces", "9",
		"", "pd1135791166.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Johnson-II-ASC.jpg",
		150, 107,
		"3055", "PRESIDENT JOHNSON 2 ASC",
		"MULTI CB TRANCEIVER", "",
		"229", "3",
		"1", 1,
		"Pieces", "12",
		"", "pd1156342354.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Ats909.jpg",
		150, 115,
		"10909", "SANGEAN ATS 909",
		"World receiver 140 KHz tot 30 MHz with SSB.", "",
		"189", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd1161165098.htm",
		"", 1,
		"Receivers", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/JMC RT2500.jpg",
		125, 61,
		"114007", "JMC RT 2500",
		"Marine toestel met DCS/ATIS", "",
		"159", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1161339925.htm",
		"", 1,
		"mar", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/tcb880_0000.jpg",
		125, 81,
		"80880", "TTI TCB 880",
		"Multi tranceiver with blue display", "",
		"129.95", "2",
		"1", 1,
		"Pieces", "14",
		"", "pd1161677189.htm",
		"", 1,
		"TTI", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/tcb770_0000.jpg",
		125, 71,
		"70770", "TTI TCB 770",
		"", "",
		"109.95", "2",
		"1", 1,
		"Pieces", "14",
		"", "pd-1989001413.htm",
		"", 1,
		"TTI", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/intek m 550 power.jpg",
		129, 86,
		"48550", "INTEK M-550 HI POWER",
		"", "",
		"159.95", "25",
		"1", 1,
		"Pieces", "11",
		"", "pd1510589409.htm",
		"", 1,
		"Intek", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Tectalk pro.jpg",
		50, 129,
		"29785", "TECTALK PRO",
		"", "",
		"149.9", "1",
		"1", 1,
		"Pieces", "27",
		"", "pd1539879159.htm",
		"", 1,
		"Pmr albrec", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/RIDER.jpg",
		100, 81,
		"15155", "ALBRECHT Rider",
		"", "",
		"149", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1178874140.htm",
		"", 1,
		"BLUE", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/BPA 100.jpg",
		100, 93,
		"15400", "BPA 100",
		"Bluetooth for bluetooth Helmets", "",
		"89.9", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-837909314.htm",
		"", 1,
		"BLUE", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/ProRadio.jpg",
		100, 122,
		"29333", "ProRadio FM",
		"Professional PMR446 radio", "",
		"499", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd1188898706.htm",
		"", 1,
		"Pmr albrec", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Tectalk office.jpg",
		100, 158,
		"29790", "Tectalk OFFICE",
		"Desktop PMR446 radio", "",
		"59.9", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd952655888.htm",
		"", 1,
		"Pmr albrec", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/AE 500.jpg",
		150, 168,
		"40000", "AE 500",
		"Moto set", "",
		"99.95", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd999124138.htm",
		"", 1,
		"MOTO", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/President atis marine.jpg",
		100, 210,
		"114008", "President PM 2010WP",
		"Portable Marine radio with ATIS", "",
		"259", "2",
		"1", 1,
		"Pieces", "22",
		"", "pd637708759.htm",
		"", 1,
		"mar", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/ULTRA FORCE.jpg",
		150, 113,
		"35500", "Ultra Force",
		"10/11 meter CB radio", "",
		"289", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd623954369.htm",
		"", 1,
		"Alham", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/AE 6690.jpg",
		150, 84,
		"6000", "AE 6690",
		"CB radio with CTCSS codes", "",
		"159.9", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd-1933995675.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/AE 6190 HD.jpg",
		150, 83,
		"6601", "AE 6190HD",
		"CB radio", "",
		"99.9", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd-1932080613.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Snake.jpg",
		75, 127,
		"12065", "SIRIO SNAKE",
		"", "",
		"33.95", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd1407067762.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2278", "SIRIO TURBO 800",
		"", "",
		"55", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd-147645792.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2279", "SIRIO TURBO 800 PL",
		"", "",
		"49.95", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd-102759986.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2295", "SIRIO TURBO 1000 PL",
		"", "",
		"45.95", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd-795950904.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2296", "SIRIO TURBO 1000",
		"", "",
		"52.5", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd-725633994.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/omega 27.jpg",
		75, 127,
		"2297", "SIRIO OMEGA 27",
		"", "",
		"39.95", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd-1659608998.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/omega 27.jpg",
		75, 127,
		"2297V", "VOLVO OMEGA 27",
		"", "",
		"34.95", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd-1157339624.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2298", "SIRIO TURBO 2000",
		"", "",
		"54", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd1694485844.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2299", "SIRIO TURBO 2000 PL",
		"", "",
		"48.5", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd20202402.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2300", "SIRIO TURBO 3000",
		"", "",
		"58.5", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd-988531540.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Turbo reeks.jpg",
		75, 127,
		"2310", "SIRIO TURBO 3000 PL",
		"", "",
		"52", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd1732860602.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/ml 145 mag.jpg",
		75, 136,
		"2311", "SIRIO ML 145 MAG",
		"", "",
		"54.95", "3",
		"1", 1,
		"Pieces", "0",
		"", "pd233744266.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Delta 95-120.jpg",
		75, 127,
		"6725", "SIRIO GAMMA 2/DELTA 95",
		"", "",
		"35", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd607400350.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Delta 95-120.jpg",
		75, 127,
		"67270", "SIRIO GAMMA 1/DELTA 120",
		"", "",
		"36", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd207169788.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Mythos 9000.jpg",
		75, 136,
		"2277", "SIRIO MYTHOS 9000",
		"", "",
		"52.95", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd1672026630.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Mythos 9000.jpg",
		75, 136,
		"2276", "SIRIO MYTHOS 900S",
		"", "",
		"52.95", "15",
		"1", 1,
		"Pieces", "0",
		"", "pd-17504348.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Snake.jpg",
		75, 127,
		"12066", "SIRIO MINI SNAKE",
		"", "",
		"31.5", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd238090736.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/10059309_440_DET01_08.jpg",
		75, 125,
		"40010", "AE 600",
		"Moto intercom", "",
		"59.95", "1",
		"1", 1,
		"Pieces", "23",
		"", "pd1204734704.htm",
		"", 1,
		"MOTO", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/ae600bt.jpg",
		100, 139,
		"40020", "AE 600 S",
		"Moto intercom", "",
		"99.95", "1",
		"1", 1,
		"Pieces", "23",
		"", "pd959081118.htm",
		"", 1,
		"MOTO", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/ae600bt.jpg",
		100, 139,
		"40030", "AE 600 BT",
		"Moto intercom", "",
		"199.95", "1",
		"1", 1,
		"Pieces", "23",
		"", "pd1224608252.htm",
		"", 1,
		"MOTO", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/G7.jpg",
		60, 158,
		"C776", "ALAN G7 set",
		"PMR SET with charger and battery pack", "",
		"113.9", "1.5",
		"1", 1,
		"Pieces", "25",
		"", "pd586318069.htm",
		"", 1,
		"alanpmr", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/g5.jpg",
		100, 108,
		"C735.04", "ALAN G5 set",
		"PMR set with battery and charger", "",
		"49.95", "1",
		"1", 1,
		"Pieces", "25",
		"", "pd154323759.htm",
		"", 1,
		"alanpmr", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/48760.jpg",
		100, 100,
		"48760", "INTEK M-760 Plus",
		"CB tranceiver with front speaker", "",
		"149.95", "4",
		"1", 1,
		"Pieces", "11",
		"", "pd-451100327.htm",
		"", 1,
		"Intek", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/48760.jpg",
		100, 100,
		"48150", "INTEK M-150 Plus",
		"Multi channel CB tranceiver with front speaker", "",
		"99.95", "3",
		"1", 1,
		"Pieces", "11",
		"", "pd1211186675.htm",
		"", 1,
		"Intek", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/JACKSON 2.jpg",
		100, 56,
		"2381", "PRESIDENT JACKSON 2 ",
		"New SSB CB tranceiver", "",
		"299", "4",
		"1", 1,
		"Pieces", "12",
		"", "pd5604395.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Magnum S380.jpg",
		100, 74,
		"1380", "MAGNUM S380",
		"", "",
		"369", "3.5",
		"1", 1,
		"Pieces", "20",
		"", "pd1211269815.htm",
		"", 1,
		"MAGN", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/SM9000.jpg",
		80, 49,
		"9000", "SM 9000",
		"Signal meter for CB radio&rsquo;s", "",
		"34.95", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd1213170409.htm",
		"", 1,
		"SWR", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/swr 420.jpg",
		80, 80,
		"4410", "SWR 420",
		"SWR meter for CB radio&rsquo;s", "",
		"11.5", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd-1186486465.htm",
		"", 1,
		"SWR", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/JFK2 2.jpg",
		150, 99,
		"2373", "PRESIDENT JFK 2",
		"", "",
		"279", "0",
		"1", 1,
		"Pieces", "12",
		"", "pd1222175129.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/AE 6890.jpg",
		150, 80,
		"12689", "AE 6890",
		"", "",
		"185.95", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd1225894293.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/cte cellular.jpg",
		10, 80,
		"0000", "GRATIS MOBIELE ANTENNE BIJ AANKOOP AE 5290 OF JOHNSON 1",
		"", "",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1257163629.htm",
		"", 1,
		"ANT", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/RT2-4112 standard.jpg",
		100, 132,
		"4100", "GEARKEEPER RT4-4112",
		"CB mike keeper", "",
		"23.95", "5",
		"1", 1,
		"Pieces", "5",
		"", "pd-698123672.htm",
		"", 1,
		"Mic", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Harry3 asc.jpg",
		100, 76,
		"2371", "PRESIDENT HARRY 3 ASC",
		"", "",
		"169.95", "25",
		"1", 1,
		"Pieces", "12",
		"", "pd2006126868.htm",
		"", 1,
		"presi", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Mini MAG bnc.jpg",
		100, 100,
		"BNC voetje", "BNC magneetvoetje",
		"Gratis bijgeleverd bij aankoop AE 72h WIELERSCANNER", "",
		"0", "0",
		"1", 1,
		"Pieces", "29",
		"", "pd1266401221.htm",
		"", 1,
		"SCAN", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/tv 300e.jpg",
		100, 100,
		"TV300", "TV 300 DIGITALE TV 3.6 inch scherm",
		"incl. afstandbediening, video uitgang en magneet antenne", "",
		"129.95", "5",
		"1", 1,
		"Pieces", "33",
		"", "pd2117214075.htm",
		"", 1,
		"TV", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/tv 300e.jpg",
		100, 100,
		"TV300E", "TV 300E Digitale TV",
		"Met magneetantenne", "",
		"99.95", "5",
		"1", 1,
		"Pieces", "33",
		"", "pd-1652187615.htm",
		"", 1,
		"TV", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/images.jpg",
		100, 92,
		"48005", "INTEK SEATEC 5",
		"Marine Portable mét ATIS", "",
		"105", "1",
		"1", 1,
		"Pieces", "22",
		"", "pd1279181044.htm",
		"", 1,
		"mar", "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>Sorry, no matching product was found. Please try again or contact us, we will try to find it for you.</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</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();
			};
		};