	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="115" height="48" alt="BtnAddToBag.gif" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Preis vorher:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Jetzt nur noch:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/00456_stardust.jpg",
		150, 70,
		"456a", "Stardust 120",
		"ready to fly mit Gürteltasche", "Rhombus",
		"15", "0.24",
		"1", 1,
		"Stück", "0",
		"", "pd1207457279.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/00451_thunderbird-160.jpg",
		150, 71,
		"451", "Thunderbird 160",
		"", "Rhombus",
		"30", "0.24",
		"1", 1,
		"Stück", "0",
		"", "pd-2002110508.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/00452_thunderbird-200.jpg",
		150, 72,
		"452", "Thunderbird 200",
		"", "Rhombus",
		"51", "0.26",
		"1", 1,
		"Stück", "0",
		"", "pd-988526523.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/00432_speedtango.jpg",
		150, 83,
		"432", "Speed-Tango",
		"ready to fly", "Rhombus",
		"18", "0",
		"1", 1,
		"Stück", "2",
		"", "pd974472654.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/00437_blue.jpg",
		150, 68,
		"437", "Blue",
		"ready to fly", "Rhombus",
		"57", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1737028916.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/00436_blue-light.jpg",
		150, 89,
		"436", "Blue-Light",
		"ready to fly", "Rhombus",
		"28", "0.35",
		"1", 1,
		"Stück", "3",
		"", "pd2006986205.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/00321_rapper.jpg",
		150, 73,
		"321", "Rapper",
		"", "Rhombus",
		"31", "0.55",
		"1", 1,
		"Stück", "2",
		"", "pd1191327590.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Ringgriffmitschnur.jpg",
		150, 132,
		"1742", "Dyneema - Lenkset",
		"Spulen, 2 x 30 m, 100 kp", "Rhombus",
		"18.4", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1876009761.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/00103_breezy-a.jpg",
		150, 116,
		"103", "Breezy (Breitschweif)",
		"", "Rhombus",
		"7.5", "0.152",
		"1", 1,
		"Stück", "5",
		"", "pd980638231.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/00808_regenbogenspinner.jpg",
		98, 130,
		"808", "Regenbogenspinner",
		"", "Rhombus",
		"9.4", "0.27",
		"1", 1,
		"Stück", "6",
		"", "pd-60122608.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/00810_Boot.jpg",
		98, 130,
		"810", "Boot",
		"", "Rhombus",
		"11", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1495758033.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/00819_bienchen.jpg",
		107, 130,
		"819", "Bienchen",
		"", "Rhombus",
		"12", "0.33",
		"1", 1,
		"Stück", "6",
		"", "pd-562853017.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/00820_flora.jpg",
		98, 130,
		"820", "Flora",
		"", "Rhombus",
		"10", "0.31",
		"1", 1,
		"Stück", "6",
		"", "pd5114652.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/00821_Windblume.jpg",
		88, 130,
		"821", "Windblume",
		"", "Rhombus",
		"10", "0.31",
		"1", 1,
		"Stück", "6",
		"", "pd1723014125.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/00822_muehle_S.jpg",
		87, 117,
		"822", "Windmühle S",
		"", "Rhombus",
		"7", "0",
		"1", 1,
		"Stück", "6",
		"", "pd315807402.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/00823_muehle_M.jpg",
		97, 130,
		"823", "Windmühle M",
		"", "Rhombus",
		"9", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1804830749.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/00824_muehle_L.jpg",
		97, 130,
		"824", "Windmühle L",
		"", "Rhombus",
		"11", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1418134760.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/00826_spanische-Windmuehle.jpg",
		97, 135,
		"826", "Spanische Windmühle",
		"", "Rhombus",
		"10", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-601600823.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/00827_holland-muehle.jpg",
		97, 154,
		"827", "Holland Mühle",
		"", "Rhombus",
		"10", "0.38",
		"1", 1,
		"Stück", "6",
		"", "pd1419646294.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/00828_leuchtturm.jpg",
		84, 200,
		"828", "Leuchtturm",
		"", "Rhombus",
		"10", "0.33",
		"1", 1,
		"Stück", "6",
		"", "pd242549791.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/00107_diamant.jpg",
		150, 188,
		"107", "Diamant",
		"", "Rhombus",
		"9", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1366537699.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/00825_rotor.jpg",
		89, 130,
		"825", "Rotor",
		"", "Rhombus",
		"10", "0.23",
		"1", 1,
		"Stück", "6",
		"", "pd983648951.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/00831_Spinny-L.jpg",
		79, 130,
		"829", "Spinny S",
		"", "Rhombus",
		"5", "0.17",
		"1", 1,
		"Stück", "6",
		"", "pd-1841656788.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/00831_Spinny-L.jpg",
		79, 130,
		"830", "Spinny M",
		"", "Rhombus",
		"5", "0.23",
		"1", 1,
		"Stück", "6",
		"", "pd2100964285.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/00110_regenbogendelta.jpg",
		150, 85,
		"110", "Regenbogen-Delta",
		"", "Rhombus",
		"16", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1870599450.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/00115_clown.jpg",
		120, 191,
		"115", "Clown",
		"", "Rhombus",
		"14.5", "0.176",
		"1", 1,
		"Stück", "5",
		"", "pd57223384.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/00169_airplane-a-l.jpg",
		150, 126,
		"167", "Airplane-Prop",
		"", "Rhombus",
		"16.8", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-400615217.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/00169_airplane-a-l.jpg",
		150, 126,
		"168", "Airplane-Prop-M",
		"", "Rhombus",
		"18", "0",
		"1", 1,
		"Stück", "5",
		"", "pd646010468.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/00111_regenbogenpfeil.jpg",
		150, 197,
		"111", "Regenbogenpfeil",
		"", "Rhombus",
		"15", "0",
		"1", 1,
		"Stück", "5",
		"", "pd980648621.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/00136_minidiamond-a.jpg",
		150, 234,
		"136", "Mini - Diamond",
		"6 Farbkombinationen", "Rhombus",
		"2.2", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1965989769.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/00137_minidelta-a.jpg",
		150, 128,
		"137", "Mini - Delta",
		"6 Farbkombinationen", "Rhombus",
		"3.5", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1908875542.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/00151_baby-diamond.jpg",
		120, 134,
		"151", "Baby - Diamond",
		"", "Rhombus",
		"5", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1415568859.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/00152_junior-diamond-a.jpg",
		120, 143,
		"152", "Junior - Diamond",
		"6 Farbkombinationen", "Rhombus",
		"6.2", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1710014846.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/00165_mini-bird-a.jpg",
		150, 108,
		"165", "Mini - Bird",
		"6 Farbkombinationen", "Rhombus",
		"2.8", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-868781037.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/00161_fisky-b.jpg",
		150, 197,
		"161", "Fisky B",
		"", "Rhombus",
		"19", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1780828300.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/02744-kl.gif",
		93, 71,
		"2744", "Dyneema - Vierleiner-Lenkset mit Alu-Handles 43 cm",
		"150 kg Steuerleinen, 80 kg Bremsleinen", "Rhombus",
		"63.4", "0",
		"1", 1,
		"Stück", "9",
		"", "pd985709412.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/00831_Spinny-L.jpg",
		79, 130,
		"831", "Spinny L",
		"", "Rhombus",
		"7", "0.25",
		"1", 1,
		"Stück", "6",
		"", "pd984441264.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/00306_zipper-a.jpg",
		150, 76,
		"306", "Zipper",
		"", "Rhombus",
		"28.6", "0",
		"1", 1,
		"Stück", "2",
		"", "pd783045293.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/00308_rascal-a.jpg",
		150, 82,
		"308", "Rascal",
		"ready to fly", "Rhombus",
		"18.4", "0",
		"1", 1,
		"Stück", "2",
		"", "pd282195562.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/00319_Cracker-one-a.jpg",
		150, 82,
		"319", "Cracker One",
		"", "Rhombus",
		"17", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1575103144.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/00456_stardust-f.jpg",
		150, 73,
		"456", "Stardust 120",
		"ready to fly - new Design -", "Rhombus",
		"19", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1012600771.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/00458_firebee-2-0.jpg",
		183, 55,
		"458", "Firebee 2.0",
		"", "Rhombus",
		"90", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-840239288.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/00320_Cracker-two-a.jpg",
		150, 86,
		"320", "Cracker Two",
		"", "Rhombus",
		"17", "0",
		"1", 1,
		"Stück", "2",
		"", "pd353660809.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/00322_tango-a.jpg",
		150, 83,
		"322", "Tango",
		"ready to fly  - new Design -", "Rhombus",
		"15.2", "0",
		"1", 1,
		"Stück", "2",
		"", "pd101495062.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/deltahawk.jpg",
		150, 77,
		"70330", "Delta Hawk",
		"", "KeWo-International",
		"40", "0",
		"1", 1,
		"Stück", "2",
		"", "pd671850495.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/00851_delphin.jpg",
		105, 130,
		"851", "Delphin",
		"", "Rhombus",
		"13", "0",
		"1", 1,
		"Stück", "6",
		"", "pd725881408.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/00631_frosch.jpg",
		91, 200,
		"631", "Frosch",
		"", "Rhombus",
		"8.8", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-431954356.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/00625_teddy.jpg",
		73, 200,
		"625", "Teddy",
		"", "Rhombus",
		"13.8", "0.11",
		"1", 1,
		"Stück", "8",
		"", "pd-1762138790.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/00611-Tropicalfish.jpg",
		96, 200,
		"611", "Tropicalfish-S",
		"", "Rhombus",
		"13.4", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1817489163.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/00614_buntling.jpg",
		81, 200,
		"614", "Buntling",
		"", "Rhombus",
		"9.3", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-337205520.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/00633_hase.jpg",
		85, 200,
		"633", "Hase",
		"", "Rhombus",
		"15.3", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1794483870.htm",
		"", 1,
		"25", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Lenkschlaufengepolstert.jpg",
		150, 60,
		"2742", "Dyneema - Lenkset",
		"gepolsterte Lenkschlaufen, 2 x 30 m, 95 kp", "Rhombus",
		"22.6", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-470575925.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/01136_Mini-DiamondA.jpg",
		150, 200,
		"1136", "Mini - Diamond mit Aufdruck",
		"", "Rhombus",
		"3", "0",
		"1", 1,
		"Stück", "5",
		"", "pd997311234.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/MyWay2.jpg",
		150, 68,
		"70209", "My Way 2",
		"", "KeWo-International",
		"120", "0",
		"1", 1,
		"Stück", "3",
		"", "pd2080291796.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/00459_firebee-3-0.jpg",
		188, 55,
		"459", "Firebee 3.0",
		"", "Rhombus",
		"118", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1677774518.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/8303000_1_Giraffe.jpg",
		150, 139,
		"C-8303000/1", "Giraffe",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1008176923.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/8303000_2_Hund.jpg",
		150, 87,
		"C-8303000/2", "Hund",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd980838848.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/8303000_3_Schaf.jpg",
		150, 103,
		"C-8303000/3", "Schaf",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1507006145.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/8303000_4_Ente.jpg",
		150, 149,
		"C-8303000/4", "Ente",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd466380270.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/8303000_5_Frosch.jpg",
		150, 153,
		"C-8303000/5", "Frosch",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-603865385.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/8303000_6_Baer.jpg",
		150, 183,
		"C-8303000/6", "Bär",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd8631756.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/8303000_7_Kuh.jpg",
		150, 178,
		"C-8303000/7", "Kuh",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-478397219.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/8303000_8_Elefant.jpg",
		150, 105,
		"C-8303000/8", "Elefant",
		"mit Kugelfüllung, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1103446234.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/1263-Elefant.jpg",
		150, 113,
		"C-1263", "Elefant",
		"mit Saugnapf, ca. 12 cm", "",
		"2.5", "0",
		"1", 1,
		"Stück", "10",
		"", "pd785964217.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/00845_mini-wetterhahn.jpg",
		88, 130,
		"845", "Mini - Wetterhahn",
		"", "Rhombus",
		"5.9", "0.08",
		"1", 1,
		"Stück", "7",
		"", "pd-260527713.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/00846_mini-bienchen.jpg",
		95, 130,
		"846", "Mini - Bienchen",
		"", "Rhombus",
		"5.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd981549270.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/00847_mini-boot.jpg",
		80, 130,
		"847", "Mini - Boot",
		"", "Rhombus",
		"5.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1597614491.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/00848_mini-erpel.jpg",
		93, 130,
		"848", "Mini - Erpel",
		"", "Rhombus",
		"5.9", "0.08",
		"1", 1,
		"Stück", "7",
		"", "pd979020532.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/00849_mini-pingy.jpg",
		108, 130,
		"849", "Mini - Pingy",
		"", "Rhombus",
		"5.9", "0.08",
		"1", 1,
		"Stück", "7",
		"", "pd267180610.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/00442.gif",
		150, 137,
		"442", "Thunderbird 1.2",
		"ready to fly - 3 Farben", "Rhombus",
		"90", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1091426047.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/00309_Techno-stunt.jpg",
		150, 87,
		"309", "Techno - Stunt",
		"ready to fly", "Rhombus",
		"22", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-394980703.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/00305_Micro-wave-a.jpg",
		150, 76,
		"305", "Micro - Wave",
		"ready to fly", "Rhombus",
		"11.5", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1607704571.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/00307_Junior-stunt.jpg",
		150, 206,
		"307", "Junior - Stunt",
		"ready to fly ", "Rhombus",
		"7.9", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1370399008.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/00807_techno-rotor.jpg",
		108, 130,
		"807", "Techno - Rotor",
		"", "Rhombus",
		"10.4", "0",
		"1", 1,
		"Stück", "6",
		"", "pd289906103.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/00855_techno-flora.jpg",
		80, 130,
		"855", "Techno - Flora",
		"", "Rhombus",
		"9.7", "0.26",
		"1", 1,
		"Stück", "6",
		"", "pd-1380848326.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/00174_rainbow-snake.jpg",
		150, 227,
		"174", "Rainbow - Snake",
		"", "Rhombus",
		"32", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1498409912.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Firebee-1.0-kl.gif",
		171, 55,
		"464", "Firebee 1.0",
		"ready to fly", "Rhombus",
		"85.5", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1043496221.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/00401-kl.gif",
		198, 73,
		"401", "Ice",
		"ready to fly", "Rhombus",
		"33.9", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1682768326.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/00402-kl.gif",
		198, 107,
		"402", "Ion",
		"ready to fly", "Rhombus",
		"78", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-459197489.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/00179-kl.gif",
		150, 138,
		"179", "Paint - Diamond - S",
		"ready to fly", "Rhombus",
		"5.4", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1510869554.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/00179-kl.gif",
		150, 138,
		"180", "Paint - Diamond - L",
		"ready to fly", "Rhombus",
		"7.2", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-2078230837.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Speaker.jpg",
		150, 151,
		"P0049", "Lautsprecher",
		"120 Watt PMPO", "",
		"4", "0",
		"1", 1,
		"Stück", "4",
		"", "pd2119982996.htm",
		"0::5::3.5;0::10::3.2;", 1,
		"100", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/D001_SCSI.jpg",
		160, 139,
		"P0001", "SCSI-2 Controller 3194UPlus",
		"", "",
		"7.8", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1048718374.htm",
		"0::3::7.5;0::10::6.5;", 1,
		"100", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Flyinset-fb.gif",
		100, 126,
		"2750", "Firebee Flying Set 130/70kp",
		"komplett mit Alu Handles", "Rhombus",
		"62.9", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1051802131.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Flyinset-fb.gif",
		100, 126,
		"2751", "Firebee Flying Set 180/95 kp",
		"komplett mit Alu Handles", "Rhombus",
		"68.5", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1521064569.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/00842-kl.gif",
		100, 176,
		"842", "Sea-horse Mobile",
		"", "Rhombus",
		"11", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1054659997.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/00813-kl.gif",
		120, 90,
		"813", "Fish Mobile - B",
		"", "Rhombus",
		"11.5", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-109411975.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/00869-kl.gif",
		90, 95,
		"869", "Gliiter Fish",
		"", "Rhombus",
		"12.4", "0.2",
		"1", 1,
		"Stück", "6",
		"", "pd1054921993.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/00866-kl.gif",
		80, 133,
		"866", "Glitter - Rotor",
		"", "Rhombus",
		"10.5", "0.27",
		"1", 1,
		"Stück", "6",
		"", "pd-1780627873.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/00850_mini-windblume.jpg",
		85, 130,
		"850", "Mini - Windblume",
		"", "Rhombus",
		"5.9", "0.08",
		"1", 1,
		"Stück", "7",
		"", "pd-1333312283.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/00854_mini-seagul.jpg",
		77, 130,
		"854", "Mini - Seagul",
		"", "Rhombus",
		"6.8", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-231426371.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/00867-kl.gif",
		81, 130,
		"867", "Glitter - Flower",
		"Mini - Windspiel", "Rhombus",
		"5.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1442881748.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/00441.gif",
		150, 138,
		"441", "Thunderbird 0.8",
		"ready to fly - 3 Farben", "Rhombus",
		"55", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-16142011.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/pc_7089.jpg",
		150, 119,
		"B10914", "CD/DVD Reparaturset",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1091563708.htm",
		"", 1,
		"100", "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();
			};
		};