	// 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="83" height="24" alt="Lägg till i varukorg" 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>Förut:&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>Nu endast:&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/P-33S.jpg",
		35, 80,
		"P-33S", "Varför är anonymiteten viktig i Al-Anon?",
		"", "",
		"20", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd-1951733792.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[1] = new Element(
		1, "",
		0, 0,
		"P-19S", "Vad gör du då alkoholisten dricker?",
		"", "",
		"20", "0.01",
		"1", 1,
		"styck", "3",
		"", "pd-1517574648.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[2] = new Element(
		2, "",
		0, 0,
		"P-16S", "Till alkoholistens mor och far",
		"", "",
		"30", "0.045",
		"1", 1,
		"styck", "3",
		"", "pd-676038084.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/P-31S.jpg",
		35, 80,
		"P-31S", "Sponsorskap - vad det innebär",
		"", "",
		"35", "0.013",
		"1", 1,
		"styck", "3",
		"", "pd-645953900.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[4] = new Element(
		4, "",
		0, 0,
		"P-24-27S", "Servicemanual för Al-Anon och Alateengruppernas i Sverige servicearbete",
		"", "",
		"60", "0.37",
		"1", 1,
		"styck", "3",
		"", "pd-1892410506.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[5] = new Element(
		5, "",
		0, 0,
		"P-08S", "På väg hem",
		"", "",
		"35", "0.013",
		"1", 1,
		"styck", "3",
		"", "pd-433507918.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/P-49S.jpg",
		51, 80,
		"P-49S", "Livet med en nykter alkoholist - Att börja om på nytt",
		"", "",
		"85", "0.111",
		"1", 1,
		"styck", "3",
		"", "pd1994218585.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/P-53S.jpg",
		35, 80,
		"P-53S", "Här talar vi Al-Anon",
		"OBS! Tillfälligt slut. OBS!", "",
		"15", "0.007",
		"1", 1,
		"styck", "3",
		"", "pd1181816807.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[8] = new Element(
		8, "",
		0, 0,
		"P-09S", "Hur kan jag hjälpa mina barn?",
		"", "",
		"45", "0.025",
		"1", 1,
		"styck", "3",
		"", "pd-1736968400.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[9] = new Element(
		9, "",
		0, 0,
		"R-64S", "Familjevåld (särtryck ur in All Our Affairs,B-15)",
		"", "",
		"10", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd-1623208861.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/P-62S.jpg",
		36, 80,
		"P-62S", "Dricker hon för mycket?",
		"", "",
		"30", "0.012",
		"1", 1,
		"styck", "3",
		"", "pd168655981.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[11] = new Element(
		11, "",
		0, 0,
		"P-14S", "Du älskar alltså en alkoholist",
		"", "",
		"20", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd1918922974.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[12] = new Element(
		12, "",
		0, 0,
		"P-32S", "Detta är Al-Anon",
		"", "",
		"40", "0.025",
		"1", 1,
		"styck", "3",
		"", "pd-71852318.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/p17Thumb.jpg",
		43, 80,
		"P-17S", "De Tolv Stegen och Traditionerna",
		"", "",
		"50", "0.028",
		"1", 1,
		"styck", "3",
		"", "pd-1374201142.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[14] = new Element(
		14, "",
		0, 0,
		"P-48S", "Att förstå oss själva och alkoholism",
		"", "",
		"20", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd-101506829.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[15] = new Element(
		15, "",
		0, 0,
		"P-05S", "Arbetsbok för framsteg (Fjärde steget)",
		"", "",
		"50", "0.13",
		"1", 1,
		"styck", "3",
		"", "pd1285607652.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[16] = new Element(
		16, "",
		0, 0,
		"P-03S", "Alkoholism- förnekelsens karusell",
		"", "",
		"20", "0.035",
		"1", 1,
		"styck", "3",
		"", "pd-717606586.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/b-6s.gif",
		57, 93,
		"B-06S", "En dag i taget i Al-Anon (EDIT)",
		"EDIT hjälper oss med en textsida för varje dag att leva En Dag I Taget så att vi får uppleva ökat välbefinnande och sinnesro. Här finns också Sinnesrobönen, våra slagord, de Tolv Stegen och Traditionerna och ett ämnesregister. (376 s)", "",
		"195", "0.27",
		"1", 1,
		"styck", "2",
		"", "pd1633066467.htm",
		"", 1,
		"svalabok", "0",
		 0)
	
		Entry[18] = new Element(
		18, "",
		0, 0,
		"P-41S", "Fakta om Alateen",
		"", "",
		"15", "0.015",
		"1", 1,
		"styck", "9",
		"", "pd291423130.htm",
		"", 1,
		"svalathf", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/b17.jpg",
		49, 80,
		"B-16U", "Courage to Change",
		"This collection of insightful daily reflections reveals the surprisingly simple things that can transform lives.", "",
		"135", "0.265",
		"1", 1,
		"styck", "14",
		"", "pd1060285066.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[20] = new Element(
		20, "",
		0, 0,
		"B-01U", "Al-Anon Faces Alcoholism",
		"", "",
		"120", "0.475",
		"1", 1,
		"styck", "14",
		"", "pd159222303.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/B-4U.gif",
		76, 106,
		"B-04U", "The dilemma of the Alcoholic Marriage",
		"Al-Anon can help with the unique problems of alcoholic relationships. Members share experiences with applying the Twelve Steps to their relationships.", "",
		"95", "0.13",
		"1", 1,
		"styck", "14",
		"", "pd1624347163.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/b-5U.gif",
		69, 115,
		"B-05U", "Al-Anon Family Groups",
		"With a new introduction, footnotes, and appendix, the original text connects us with Al-Anon&rsquo;s roots. The hope that this book still offers the world is undeniable. ", "",
		"95", "0.355",
		"1", 1,
		"styck", "14",
		"", "pd331928001.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/B-6U.gif",
		70, 115,
		"B-06U", "One Day At A Time in Al-Anon",
		"This Al-Anon classic offers inspirational daily readings relating Al-Anon philosophy to everyday situations. ", "",
		"120", "0.262",
		"1", 1,
		"styck", "14",
		"", "pd-1116081705.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/B-7U.gif",
		83, 115,
		"B-07U", "Lois remembers",
		"Lois W., co-founder of Al-Anon, recalls the eventful years before and after the founding of AA and Al-Anon.", "",
		"120", "0.395",
		"1", 1,
		"styck", "14",
		"", "pd-887380003.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/B-8U.gif",
		63, 107,
		"B-08U", "Al-Anons Twelve Steps &amp; Twelve Traditions",
		"The Twelve Steps and Twelve Traditions come alive through essays, personal reflections, and stories from Al-Anon members.", "",
		"95", "0.33",
		"1", 1,
		"styck", "14",
		"", "pd-462838445.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[26] = new Element(
		26, "",
		0, 0,
		"B-06N", "En Dag om Gangen i Al-Anon",
		"", "",
		"175", "0.262",
		"1", 1,
		"styck", "14",
		"", "pd223805534.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[27] = new Element(
		27, "",
		0, 0,
		"B-08N", "Tolv Trinn og Tolv Tradisjoner",
		"", "",
		"175", "0.291",
		"1", 1,
		"styck", "14",
		"", "pd156997052.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[28] = new Element(
		28, "",
		0, 0,
		"B-09UC", "Forum Favorites - Volume 3",
		"", "",
		"60", "0.192",
		"1", 1,
		"styck", "14",
		"", "pd35329736.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[29] = new Element(
		29, "",
		0, 0,
		"B-10U", "Alateen - A Day at a Time",
		"", "",
		"95", "0.275",
		"1", 1,
		"styck", "18",
		"", "pd883786580.htm",
		"", 1,
		"övsalab", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/B-11U.gif",
		65, 107,
		"B-11U", "As We Understood",
		"Al-Anon members share their understanding of prayer, letting go, fellowship, meditation, a Higher Power, and spiritual awakening.", "",
		"110", "0.205",
		"1", 1,
		"styck", "14",
		"", "pd-2035226206.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/B-15U.gif",
		79, 115,
		"B-15U", "In all our Affairs - Making Crises Work for You",
		"Al-Anon members&rsquo; personal stories reveal how applying specific Al-Anon principles helped them through life&rsquo;s difficult situations. It includes stories dealing with abuse, death, divorce, violence, infidelity, and more.", "",
		"140", "0.315",
		"1", 1,
		"styck", "14",
		"", "pd1872955342.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/b-24U.gif",
		73, 115,
		"B-24U", "Paths to Recovery - Al-Anons Steps, Traditions and Concepts",
		"A guide for study of Al-Anon&rsquo;s three legacies. Chapters on each Step, Tradition, and Concept of Service include insightful text, poignant personal stories, and thought-provoking questions for group or individual study.", "",
		"190", "0.53",
		"1", 1,
		"styck", "14",
		"", "pd-1756021384.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[33] = new Element(
		33, "",
		0, 0,
		"LB02-F", "Litteraturbeställningslista Finland",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "16",
		"", "pd-1041257282.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[34] = new Element(
		34, "",
		0, 0,
		"LB-03N", "Litteraturbeställningslista Norge",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "16",
		"", "pd78223644.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[35] = new Element(
		35, "",
		0, 0,
		"LB-04D", "Litteraturbeställningslista Danmark",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "16",
		"", "pd-2077789464.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[36] = new Element(
		36, "",
		0, 0,
		"LB-05I", "Litteraturbeställningslista Island",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "16",
		"", "pd-1861151574.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[37] = new Element(
		37, "",
		0, 0,
		"M-13S", "Alateens Bara för idag - bokmärke",
		"OBS! Tillfälligt slut.", "",
		"5", "0.005",
		"1", 1,
		"styck", "10",
		"", "pd-1996130748.htm",
		"", 1,
		"svalatöv", "0",
		 0)
	
		Entry[38] = new Element(
		38, "",
		0, 0,
		"SM-08S", "Vykort, 5 olika slagord (2 av varje = 10st)",
		"OBS! Tillfälligt slut.", "",
		"5", "0.04",
		"1", 1,
		"styck", "6",
		"", "pd-184510878.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[39] = new Element(
		39, "",
		0, 0,
		"SM-05S", "Litteraturbeställningslista Sverige, Kopiera gärna och dela ut i grupperna!",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "6",
		"", "pd732907536.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[40] = new Element(
		40, "",
		0, 0,
		"SM-04S", "Gruppregistreringsblankett",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "6",
		"", "pd-450749706.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[41] = new Element(
		41, "",
		0, 0,
		"SM-03S", "Möteslista: Al-Anon och Alateen i Sverige (får kopieras)",
		"", "",
		"25", "0.03",
		"1", 1,
		"styck", "6",
		"", "pd355957128.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/SM-17S.jpg",
		157, 80,
		"SM-17S", "Al-Anons förklaring - bordsskylt",
		"", "",
		"25", "0.01",
		"1", 1,
		"styck", "6",
		"", "pd-1312567406.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/SM-16S.jpg",
		149, 80,
		"SM-16S", "Detta är Al-Anon - bordsskylt",
		"", "",
		"25", "0.01",
		"1", 1,
		"styck", "6",
		"", "pd966079428.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/S-9S.jpg",
		157, 80,
		"S-09S", "Låt det stanna här (skylt för bord)",
		"", "",
		"25", "0.01",
		"1", 1,
		"styck", "6",
		"", "pd138325352.htm",
		"", 1,
		"xvalövr", "0",
		 0)
	
		Entry[45] = new Element(
		45, "",
		0, 0,
		"P-14U", "So You Love an Alcoholic",
		"", "",
		"15", "0.01",
		"1", 1,
		"styck", "15",
		"", "pd-95174052.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[46] = new Element(
		46, "",
		0, 0,
		"P-16U", "To the Mother and Father of an Alcoholic",
		"", "",
		"15", "0.015",
		"1", 1,
		"styck", "15",
		"", "pd2089050090.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[47] = new Element(
		47, "",
		0, 0,
		"P-17U", "The Twelve Steps and Traditions",
		"", "",
		"15", "0.02",
		"1", 1,
		"styck", "15",
		"", "pd-456085464.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[48] = new Element(
		48, "",
		0, 0,
		"P-01U", "Al-Anon IS for Men",
		"", "",
		"20", "0.005",
		"1", 1,
		"styck", "15",
		"", "pd-413338364.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[49] = new Element(
		49, "",
		0, 0,
		"P-24/27U", "Al-Anon/Alateen Service Manual 2002-2004",
		"", "",
		"45", "0.295",
		"1", 1,
		"styck", "15",
		"", "pd1401205398.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[50] = new Element(
		50, "",
		0, 0,
		"P-02U", "Al-Anon, You and the Alcoholic",
		"", "",
		"20", "0.01",
		"1", 1,
		"styck", "15",
		"", "pd1307472594.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[51] = new Element(
		51, "",
		0, 0,
		"P-32U", "This is Al-Anon",
		"", "",
		"15", "0.01",
		"1", 1,
		"styck", "15",
		"", "pd-681938252.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[52] = new Element(
		52, "",
		0, 0,
		"P-35U", "Why Conference Approved Litterature?",
		"", "",
		"0", "0.01",
		"1", 1,
		"styck", "15",
		"", "pd-2049382398.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[53] = new Element(
		53, "",
		0, 0,
		"P-05U", "Blueprint for progress - Al-Anons Fort Step Inventory",
		"", "",
		"30", "0.085",
		"1", 1,
		"styck", "15",
		"", "pd-700474032.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[54] = new Element(
		54, "",
		0, 0,
		"P-78U", "When I Got Busy, I Got Better",
		"", "",
		"40", "0.85",
		"1", 1,
		"styck", "15",
		"", "pd-808688116.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[55] = new Element(
		55, "",
		0, 0,
		"P-85U", "Al-Anon is for Gays and Lesbians",
		"", "",
		"5", "0.005",
		"1", 1,
		"styck", "15",
		"", "pd-63542502.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[56] = new Element(
		56, "",
		0, 0,
		"P-86U", "A Guide to Alateen Sponsotship - An Unforgettable...",
		"", "",
		"50", "0.215",
		"1", 1,
		"styck", "19",
		"", "pd-1618448680.htm",
		"", 1,
		"Övsalahf", "0",
		 0)
	
		Entry[57] = new Element(
		57, "",
		0, 0,
		"S-13U", "Translated material (material som översattstill olika språk)",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "16",
		"", "pd-953404586.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[58] = new Element(
		58, "",
		0, 0,
		"S-20U", "Alateen is it for You",
		"", "",
		"10", "0.005",
		"1", 1,
		"styck", "20",
		"", "pd-1928115918.htm",
		"", 1,
		"övsalaöv", "0",
		 0)
	
		Entry[59] = new Element(
		59, "",
		0, 0,
		"S-16U", "Prenumerationsblanketter för The Forum",
		"", "",
		"0", "0",
		"1", 1,
		"styck", "16",
		"", "pd955834740.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[60] = new Element(
		60, "",
		0, 0,
		"S-17U", "Are You Troubled by Someones drinking? Al-Anon...",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "16",
		"", "pd-682558364.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[61] = new Element(
		61, "",
		0, 0,
		"S-23", "Gettin in touch with Al-Anon/Alateen adresslista över världens alla Servicekontor",
		"", "",
		"0", "0.01",
		"1", 1,
		"styck", "16",
		"", "pd-799950016.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[62] = new Element(
		62, "",
		0, 0,
		"S-04U", "Information for the Newcomer",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "16",
		"", "pd-1432923962.htm",
		"", 1,
		"övsalö", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/S-20S.jpg",
		36, 80,
		"S-20S", "Alateen är det något för dig?",
		"", "",
		"10", "0.005",
		"1", 1,
		"styck", "10",
		"", "pd-1385129150.htm",
		"", 1,
		"svalatöv", "0",
		 0)
	
		Entry[64] = new Element(
		64, "",
		0, 0,
		"P-52S", "Al-Anon - För vuxna barn till alkoholister",
		"", "",
		"45", "0.025",
		"1", 1,
		"styck", "9",
		"", "pd1061497484.htm",
		"", 1,
		"svalathf", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/S-25S.jpg",
		37, 80,
		"S-25S", "Har du vuxit upp tillsammans med en alkoholmissbrukare?",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "10,9",
		"", "pd1739461486.htm",
		"", 1,
		"svalatöv,svalathf", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/B-21U.gif",
		70, 115,
		"B-21U", "From Survival to Recovery: Growing up in an Alcoholic home",
		"", "",
		"170", "0.445",
		"1", 1,
		"styck", "18",
		"", "pd1377729480.htm",
		"", 1,
		"övsalab", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/B-27U.jpg",
		54, 80,
		"B-27U", "Hope for Today",
		"This insightful new daily reader is a collection of thoughts and meditations based on the sharings of Al-Anon members who grew up with the family disease of alcoholism.", "",
		"135", "0.318",
		"1", 1,
		"styck", "18",
		"", "pd-278796490.htm",
		"", 1,
		"övsalab", "0",
		 0)
	
		Entry[68] = new Element(
		68, "",
		0, 0,
		"S-25U", "Did You Grow Up with a Problem Drinker? ",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "20",
		"", "pd1012783792.htm",
		"", 1,
		"övsalaöv", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/P-44S.jpg",
		86, 80,
		"P-44S", "Vad betyder &quot;full&quot; mamma?",
		"OBS! Tillfälligt slut. OBS!", "",
		"50", "0.075",
		"1", 1,
		"styck", "9",
		"", "pd384405774.htm",
		"", 1,
		"svalathf", "0",
		 0)
	
		Entry[70] = new Element(
		70, "",
		0, 0,
		"G-12S", "Hur man startar en Al-Anon-grupp",
		"", "",
		"10", "0.005",
		"1", 1,
		"styck", "5",
		"", "pd2071760880.htm",
		"", 1,
		"ualanrikt", "0",
		 0)
	
		Entry[71] = new Element(
		71, "",
		0, 0,
		"G-13S", "Förslag till mötesprogram i Al-Anon",
		"", "",
		"10", "0.01",
		"1", 1,
		"styck", "5",
		"", "pd-1677609058.htm",
		"", 1,
		"ualanrikt", "0",
		 0)
	
		Entry[72] = new Element(
		72, "",
		0, 0,
		"G-08S", "Låt oss göra en gruppinventering",
		"", "",
		"10", "0.01",
		"1", 1,
		"styck", "5",
		"", "pd1491549208.htm",
		"", 1,
		"ualanrikt", "0",
		 0)
	
		Entry[73] = new Element(
		73, "",
		0, 0,
		"Alla-vi", "Alla-Vi, Prenumeration 1 år / 6nr per år",
		"Al-Anon´s egen tidning - Betala in 190 kronor på postgiro: 384708-4 och ange &quot;Alla-Vi&quot; på inbetalningskortet", "",
		"190", "0",
		"1", 1,
		"styck", "4",
		"", "pd-197528399.htm",
		"", 1,
		"talapren", "0",
		 0)
	
		Entry[74] = new Element(
		74, "",
		0, 0,
		"B-26U", "Living today in Alateen",
		"", "",
		"100", "0.278",
		"1", 1,
		"styck", "18",
		"", "pd1884240247.htm",
		"", 1,
		"övsalab", "0",
		 0)
	
		Entry[75] = new Element(
		75, "",
		0, 0,
		"S-27S", "Alateen sponsorskap är det något för dig?",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "10",
		"", "pd1047440056.htm",
		"", 1,
		"svalatöv", "0",
		 0)
	
		Entry[76] = new Element(
		76, "",
		0, 0,
		"P-29S", "Handledning för sponsorer av Alateengrupper",
		"", "",
		"15", "0.006",
		"1", 1,
		"styck", "9",
		"", "pd851144614.htm",
		"", 1,
		"svalathf", "0",
		 0)
	
		Entry[77] = new Element(
		77, "",
		0, 0,
		"SM-12S", "Checklista för Stormöten - erfarenhetspärm",
		"Endast för utlåning!", "",
		"0", "0",
		"1", 1,
		"styck", "5",
		"", "pd-1832103572.htm",
		"", 1,
		"ualanrikt", "0",
		 0)
	
		Entry[78] = new Element(
		78, "",
		0, 0,
		"SM-13S", "Vägledning för information om Al-Anon i Sverige",
		"", "",
		"15", "0.05",
		"1", 1,
		"styck", "5",
		"", "pd744080762.htm",
		"", 1,
		"ualanrikt", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/M-1S.jpg",
		53, 80,
		"M-01S", "Är du orolig för någon som dricker?",
		"", "",
		"10", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd1674476538.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/M-1S.jpg",
		53, 80,
		"M-01SS", "Är du orolig för någon som dricker? 50st för ställ M-38S",
		"", "",
		"115", "0.055",
		"1", 1,
		"styck", "3",
		"", "pd90598072.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/M-12S.jpg",
		30, 80,
		"M-12S", "Bara för idag - bokmärke",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd-109498458.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/M-26S.jpg",
		52, 80,
		"M-26S", "Sinnesrobönen - bokmärke",
		"", "",
		"15", "0",
		"1", 1,
		"styck", "3",
		"", "pd736613906.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/M-36S.jpg",
		56, 80,
		"M-36S", "Du behöver inte dricka för att drabbas av alkoholism-affisch i A4-format",
		"", "",
		"15", "0.01",
		"1", 1,
		"styck", "3",
		"", "pd-1170427248.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/M-38S.jpg",
		50, 80,
		"M-38S", "Informationsställ med ficka för M-1",
		"", "",
		"15", "0.015",
		"1", 1,
		"styck", "3",
		"", "pd-1475011778.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/M-44S.jpg",
		25, 80,
		"M-44S", "Al-Anon är, är inte - bokmärke",
		"OBS! Tillfälligt slut.", "",
		"10", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd1068936092.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/S-4S.jpg",
		36, 80,
		"S-04S", "Information till dig som är ny",
		"", "",
		"20", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd-916559062.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/S-19S.jpg",
		35, 80,
		"S-19S", "Frigörelse",
		"OBS! Tillfälligt slut.", "",
		"10", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd1414317044.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/B-21S.jpg",
		54, 80,
		"B-21S", "Från överlevnad mot tillfriskande",
		"Vuxna barn till alkoholister berättar om sina liv - med känsla och humor, med mod och tuff ärlighet. De lyfter på förnekelsens slöjor och berättar om familjens hemligheter, all smärta och alla minnen. De väcker hopp hos oss alla och rör oss alla.", "",
		"220", "0.434",
		"1", 1,
		"styck", "2",
		"", "pd1082562941.htm",
		"", 1,
		"svalabok", "0",
		 0)
	
		Entry[89] = new Element(
		89, "",
		0, 0,
		"Frivilligt_Bidrag", "Frivilligt bidrag á 20 SEK",
		"Köp ett eller flera frivilliga bidrag. Från Al-Anon medlemmar till Al-Anon Familjegrupper i Sverige (Bidrag tas ej emot från övriga)", "",
		"20", "0",
		"1", 1,
		"styck", "11",
		"", "pd-218557504.htm",
		"", 1,
		"Bidrag", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/P-78S.gif",
		51, 80,
		"P-78S", "Engagemang = Tillfrisknande",
		"En guldgruva för vidare utveckling i programmet! Personligt och ärligt delar Al-Anon-vänner med sig av erfarenheter av hur de vuxit när de gått emot sina rädslor och engagerat sig för att föra budskapet vidare till andra.", "",
		"125", "0.14",
		"1", 1,
		"styck", "3",
		"", "pd1257275097.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[91] = new Element(
		91, "",
		0, 0,
		"P-34", "En medlemsguide (för yrkesverksamma)",
		"Al-Anon/Alateen - en medlemsguide beskriver Al-Anons/Alateens riktlinjer för kontakter med behandlingshem, gästtalare, professionella inom vårdyrken, forskare etc, och även för Al-Anon-medlemmarnas kontakter utanför gruppen/gemenskapen.", "",
		"25", "0",
		"1", 1,
		"styck", "3",
		"", "pd1258053164.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[92] = new Element(
		92, "",
		0, 0,
		"P-67S", "Kära Mamma &amp; Pappa",
		"", "",
		"20", "0",
		"1", 1,
		"styck", "9",
		"", "pd1264801081.htm",
		"", 1,
		"svalathf", "0",
		 0)
	
		Entry[93] = new Element(
		93, "",
		0, 0,
		"B-16UCD", "Courage to Change (Talbok CD)",
		"", "",
		"150", "0",
		"1", 1,
		"styck", "14",
		"", "pd-645328171.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[94] = new Element(
		94, "",
		0, 0,
		"B-29U", "Opening our Hearts - Transforming our Losses",
		"", "",
		"170", "0",
		"1", 1,
		"styck", "14",
		"", "pd798409265.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[95] = new Element(
		95, "",
		0, 0,
		"B-30U", "Discovering Choices",
		"", "",
		"190", "0",
		"1", 1,
		"styck", "14",
		"", "pd1815734539.htm",
		"", 1,
		"1övsb", "0",
		 0)
	
		Entry[96] = new Element(
		96, "",
		0, 0,
		"S-70U", "Al-Anon Welcomes Gays and Lesbians",
		"", "",
		"20", "0",
		"1", 1,
		"styck", "15",
		"", "pd-505934198.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[97] = new Element(
		97, "",
		0, 0,
		"S-27U", "Alateen Sponsorship - Is it for you?",
		"", "",
		"20", "0",
		"1", 1,
		"styck", "19",
		"", "pd-1588713943.htm",
		"", 1,
		"Övsalahf", "0",
		 0)
	
		Entry[98] = new Element(
		98, "",
		0, 0,
		"P-91U", "Blueprint for Progress - Forth Step Inventory",
		"", "",
		"85", "0",
		"1", 1,
		"styck", "15",
		"", "pd1020001407.htm",
		"", 1,
		"övsalhf", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/omslagMaF.jpg",
		51, 80,
		"B-16S", "Mod att förändra",
		"&quot;Mod att förändra - En Dag I Taget i Al-Anon II&quot; har precis samma uppläggning som &quot;En Dag I Taget&quot;, och innehåller nya fräscha dagliga reflektioner, &quot;Dagens påminnelse&quot; och olika passande citat för varje dag under året. Dessutom finns de Tolv Stegen, Trad", "",
		"200", "0.3",
		"1", 1,
		"styck", "2",
		"", "pd1288726541.htm",
		"", 1,
		"svalabok", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/S-17S.jpg",
		34, 80,
		"S-17S", "Al-Anon, är det något för dig?",
		"", "",
		"15", "0.005",
		"1", 1,
		"styck", "3",
		"", "pd-1691356714.htm",
		"", 1,
		"svalahf", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/omslagVägar.jpg",
		51, 80,
		"B-24S", "Vägar mot tillfrisknande",
		"Vägar mot tillfrisknande är ett arbetsmaterial för Al-Anons tre legat: Stegen, Traditionerna, och Begreppen. Texter, personliga berättelser och arbetsfrågor finns för varje Steg, Tradition, och Begrepp.", "",
		"290", "0.422",
		"1", 1,
		"styck", "2",
		"", "pd1324826374.htm",
		"", 1,
		"svalabok", "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>Inga träffar på din sökning!</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Du har inte angett några sökkriterier!</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();
			};
		};
