	// 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="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/tnMAGICALHORSESBOOK.JPG",
		77, 100,
		"100", "The Magical Horses - A Fairy Tale for the Young and the Young at Heart by Beate Epp",
		"24 fine art colour plates (pages) and illustrations included 11&quot;x8 1/2&quot; - 127 pages", "Beate Epp",
		"25.95", "0",
		"2", 1,
		"Pieces", "0",
		"", "pd-356810139.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/tnLa_famille.jpg",
		137, 100,
		"395", "La Famile  by Pierrette Dulude-Bohay",
		"Watercolour 18 x 24", "Pierrette Dulude-Bohay",
		"900", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1842603593.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/tnLe_Trio.jpg",
		115, 100,
		"396", "Le Trio by Pierrette Dulude-Bohay",
		" Watercolour 10 x 12", "Pierrette Dulude-Bohay",
		"450", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd203264701.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/tnEarly Morning on the Farm.JPG",
		134, 100,
		"419", "Early Morning on the Farm by J. Allison Robichaud ",
		"12 x 16 Oil on Canvas framed", "ALLISON ROBICHAUD",
		"900", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1059956940.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/tnMBeaudoin The Old Massey by Mario Beaudoin Oil on canvas 12 x 16 framed.jpg",
		133, 100,
		"428", "The Old Massey by Mario Beaudoin",
		"Oil on canvas 12 x 16 framed", "Mario Beaudoin",
		"575", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-860426310.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/tnMBeaudoin Go Habs Go by Mario Beaudoin Oil on Canvas 20 x 24 .jpg",
		119, 100,
		"429", "Go Habs Go by Mario Beaudoin",
		"Oil on Canvas 20 x 24 framed", "Mario Beaudoin",
		"1100", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1385890936.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/tn18625 Rhapsody in Colour 20x24.jpg",
		122, 100,
		"434", "Rhapsody in Colour  by Charles Spratt",
		"Acrylic on canvas 20 x 24", "Charles Spratt",
		"2200", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-596823937.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/tnnchiasson Glass & Wine Bottle by Nathalie Chiasson 8 x 10 Acrylic on Canvas unframed $230.jpg",
		79, 100,
		"435", "Glass &amp; Wine Bottle  by Nathalie Chiasson",
		"8 x 10 Acrylic on Canvas unframed", "Nathalie Chiasson",
		"230", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd53388997.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/tnnchiasson Wine & Candlelight by Nathalie Chiasson 8x10 Acrylic & Coffee. unframed $230.jpg",
		80, 100,
		"436", "Wine &amp; Candlelight by Nathalie Chiasson",
		"8x10 Acrylic &amp; Coffee unframed", "Nathalie Chiasson",
		"230", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-19177861.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/tnnchiasson Proud Rooster  by Nathalie Chiasson 20 x 30 Acrylic on Canvas unframed $850.jpg",
		65, 100,
		"437", "Proud Rooste by Nathalie Chiasson",
		"20 x 30 Acrylic on Canvas unframed", "Nathalie Chiasson",
		"850", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1449981217.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/tnKMcneil Mongolion Horses oil 24 x24 Framed $1800.JPG",
		101, 100,
		"444", "Mongolion Horses by Kelly McNeil",
		" oil 24 x24 Framed ", "Kelly McNeil",
		"1800", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd873192427.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/tnAfter the Rain 24 x 24 oil on canvas framed $995.jpg",
		100, 100,
		"457", "After the Rain by Margaret Chwialkowska",
		"24 x 24 oil on canvas framed ", "Margaret Chwialkowska",
		"995", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1228958990.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/tnApple Blossoms $1400 18 x 24 Oil on canvas framed.jpg",
		76, 100,
		"465", "Apple Blossoms by J. Allison Robichaud ",
		"Painting  18 x 24 Oil on canvas framed.", "ALLISON ROBICHAUD",
		"1400", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1550894055.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/tnlarge.12d.cheshirecat.jpg",
		79, 100,
		"468", "Alice &amp; the Cheshire Cat by Sir John Tenniel",
		"Signed and numbered limited edition fine art print, Chromolithograph 30x24&quot;", "Graphische Anstalt J. E. Wolfensberger AG",
		"500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd847016695.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/tnChwailkowska_Colours of Gatineau, 20x24inch oil on canvas framed $950.jpg",
		121, 100,
		"471", "Colours of Gatineau  by Margaret Chwialkowska",
		"20x24inch oil on canvas framed", "Margaret Chwialkowska",
		"950", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1234918077.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/tnDay_Winter Mackenzie King.jpg",
		124, 100,
		"473", "Winter Mackenzie King by John Alexander Day",
		"24 x 30 Winter, oil on canvas framed", "John Day",
		"1850", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1848940697.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/tnDay_Georgian Rock.jpg",
		75, 100,
		"476", "Georgian Rock by John Alexander Day",
		"40 x 30 oil on canvas framed", "John Day",
		"2750", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-28491413.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/tnDay_End of the Day.jpg",
		140, 100,
		"477", "End of the Day  by John Alexander Day",
		"20 x 28 Oil on Canvas ", "John Day",
		"1470", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1980715409.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/tnDay_Nature's Palette.jpg",
		83, 100,
		"478", "Nature&rsquo;s Palette  by John Alexander Day",
		"48 x 40 oil on canvas framed ", "John Day",
		"4000", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd221885991.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/tnDay_Reflections of a farm.jpg",
		100, 100,
		"479", "Reflections of a Farm by John Alexander Day",
		"24 x 24 Oil on Canvas", "John Day",
		"1500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1341670573.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/tnDay_Reflections of autumn.jpg",
		100, 100,
		"480", " Reflections of Autumn by John Alexander Day",
		"36 x 36 oil on canvas framed", "John Day",
		"2950", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-293548381.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/tnDay_West Coast Afternoon.jpg",
		120, 100,
		"481", "West Coast Afternoon by John Alexander Day",
		" 30 x 36 oil on canvas framed", "John Day",
		"2500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1888715145.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/tnDay_winter Tamaracks.jpg",
		150, 100,
		"482", "Winter Tamaracks  by John Alexander Day",
		"24 x 36 oil on canvas framed", "John Day",
		"2000", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-361609505.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/tnAbandonned  Acrylic on Canvas 20 x 24 framed $2200.jpg",
		120, 100,
		"483", "Abandonned  by Charles Spratt",
		"Acrylic on Canvas 20 x 24 framed", "Charles Spratt",
		"2200", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1943591899.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/tnAnne Barkley Tremblant 1. 36 x 36 Acrylic framed.$1500.jpg",
		100, 100,
		"491", "Tremblant 1 by Anne Barkley",
		"36 x 36 Acrylic framed", "Ann Barkley",
		"1500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1856497230.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/tnBarkley_Untitled012208.jpg",
		80, 100,
		"492", " Untitled 012208 by Anne Barkley",
		" Acrylic on Canvas 24 x 30 Gallery depth ", "Ann Barkley",
		"1000", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd501292848.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/tnBarkley_Amherst3A.jpg",
		80, 100,
		"493", "Amherst 3A  by Anne Barkley",
		"Acrylic on Canvas 32 x 40 Gallery Depth", "Ann Barkley",
		"1500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1032706270.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/tnMPleau  Un passage de lumiere 10x20 framed $575.jpg",
		200, 98,
		"497", "Un passage de lumiere by Michel Pleau",
		" 10x20 framed $575", "Michel Pleau",
		"575", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1250960632.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/tnSur la riviere du loup 30x36 .jpg",
		120, 100,
		"498", "Sur la rivière du loup by Michel Pleau",
		"30x36", "Michel Pleau",
		"1650", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd295334886.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/tnSoleil sur la montagne 30x36 oil on canvas framed.jpg",
		121, 100,
		"499", "Soleil sur la montagne by Michel Pleau",
		"30x36 oil on canvas framed ", "Michel Pleau",
		"1650", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1412344700.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/tnRapide a Tremblant 24x24 Oil on canvas framed .jpg",
		102, 100,
		"500", "Rapide à Tremblant  by Michel Pleau",
		"24x24 Oil on canvas framed ", "Michel Pleau",
		"1100", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd310894162.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/tnChute au matin 24x24 oil on canvas framed.jpg",
		99, 100,
		"501", "Chute au matin  by Michel Pleau",
		"24x24 oil on canvas framed", "Michel Pleau",
		"1100", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd104133840.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/tnRayon de soleil 30x36 oil on canvas framed.jpg",
		120, 100,
		"502", "Rayon de soleil by Michel Pleau",
		"30x36 oil on canvas framed ", "Michel Pleau",
		"1650", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1261951106.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/tnROSES.jpg",
		75, 100,
		"503", "Roses  by Suzanne Goudreau",
		"Oil on Canvas 18 x24   unframed", "Suzanne Goudreau",
		"800", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1180629881.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/tnView-from-Sant-Antimo.jpg",
		100, 100,
		"504", "View from Santa antino  by Sharon Fox Cranston",
		"Acrylic on Canvas framed 10 x 10", "Sharon Fox Cranston",
		"400", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd2013116941.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/tnThe-Wainting-Game.jpg",
		100, 100,
		"505", "The Waiting Game  by Sharon Fox Cranston",
		"Acrylic on Canvas framed 10 x 10", "Sharon Fox Cranston",
		"400", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-2113092861.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/tnMakin_Hay.jpg",
		141, 100,
		"506", "Makin Hay  by Sharon Fox Cranston",
		" Pastel 19 x 12 framed", "Sharon Fox Cranston",
		"600", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1339683607.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/tnScraps.jpg",
		100, 100,
		"507", "Scraps  by Sharon Fox Cranston",
		"Acrylic on canvas framed 10 x 10", "Sharon Fox Cranston",
		"400", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1490625.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/tnSpring-Lamb-Provence.jpg",
		153, 100,
		"508", "Spring Lamb, Provence  by Sharon Fox Cranston",
		"Pastel 18 x 11 framed", "Sharon Fox Cranston",
		"600", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd687089029.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/tnSURPRISE.jpg",
		67, 100,
		"510", " Surprise by Suzanne Goudreau",
		"Acrylic on canvas 24 x 36  unframed", "Suzanne Goudreau",
		"1000", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-54665247.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/tnBOUQUET.jpg",
		83, 100,
		"511", "Bouquet  by Suzanne Goudreau",
		" Oil/Acrylic on Canvas 30 x 36   unframed", "Suzanne Goudreau",
		"1100", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-695587593.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/tnTHE VERANDA.jpg",
		132, 100,
		"513", " The Verandah by Suzanne Goudreau",
		"Oil &amp; Acrylic on canvas  framed 18 x 24", "Suzanne Goudreau",
		"850", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd665637491.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/tnWater Spirits $400  30x22 Acrylic on Paper unframed.JPG",
		133, 100,
		"514", "Water Spirits  by Stephen Snake",
		" 30 x 22 Acrylic on Paper unframed", "Stephen Snake",
		"400", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1421579815.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/tnThe Dreamer 20x24.JPG",
		119, 100,
		"515", "The Dreamer  by Stephen Snake",
		"20 x 24  Acrylic on canvas", "Stephen Snake",
		"1500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1739892655.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/tnEncouragement16x20 Acrylic on canvas$800.JPG",
		125, 100,
		"516", "Encouragement  by Stephen Snake",
		"16 x 20 Acrylic on canvas", "Stephen Snake",
		"800", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1213615755.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/tnA World Within 24x36Acrylic on canvas$2400.JPG",
		67, 100,
		"517", "A World Within  by Stephen Snake",
		"24 x 36 Acrylic on canvas", "Stephen Snake",
		"2400", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1158817963.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/tnGeorgian Bay 1.jpg",
		133, 100,
		"523", "Georgian Bay 1  by Deborah Czernekcy ",
		"18 x 24 Oil Framed in Floater", "Deborah Czernecky",
		"525", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1251573362.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/tnpoppy.jpg",
		126, 100,
		"524", "Poppy by Deborah Czernekcy ",
		"", "Deborah Czernecky",
		"450", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1648619024.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/tncspratt Sundown Acrylic 48 x 40 framed $4600.jpg",
		120, 100,
		"525", "Sundown by Charles Spratt",
		"Acrylic Painting 48 x 40 framed", "Charles Spratt",
		"4600", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1378718.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/tn18609 Song of Summer  30x30.jpg",
		100, 100,
		"526", "Song of Summer by Charles Spratt",
		"Acrylic on canvas 30 x 30 ", "Charles Spratt",
		"2900", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1803927804.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/tn17482 Prepring for Winter 14x18.jpg",
		129, 100,
		"527", "Preparing for Winter by Charles Spratt",
		"Acrylic on canvas 14 x 18", "Charles Spratt",
		"1500", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd407699338.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/tn17483 Deep in Thiought 12x14 acrylic.jpg",
		128, 100,
		"528", "Deep in Thought  by Charles Spratt",
		"Acrylic on canvas 12 x 14", "Charles Spratt",
		"950", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-931866424.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/tn16461 Abandonned to Memories 30x30 small file.jpg",
		100, 100,
		"529", "Abandonned to Memories  by Charles Spratt",
		"Acrylic on canvas 30 x 30", "Charles Spratt",
		"2900", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1551076406.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/tnThe Runner.jpg",
		148, 100,
		"530", "The Runner  by John Stevenson",
		"Oil on canvas framed 30 x 36", "John Stevenson",
		"1770", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1077372244.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/tnForgotten Pier 28 x30 inches Oil by John Stevenson .jpg",
		125, 100,
		"531", "Forgotten Pier    by John Stevenson",
		"Oil on Canvas framed 24 x 36", "John Stevenson",
		"1470", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1298818142.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/tnBrown Horse with Bridle.jpg",
		133, 100,
		"534", "Horse by Bruce Gilchrist",
		"Oak and Walnut Brown Horse with Bridle", "Bruce Gilchrist",
		"175", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-1987814187.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/tnFarmall Tractor.jpg",
		133, 100,
		"535", "Fabulous Farmall by Bruce Gilchrist",
		" Oak, walnut Pine", "Bruce Gilchrist",
		"225", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-225557749.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/tnBulldog.jpg",
		133, 100,
		"536", "Bulldog by Bruce Gilchrist",
		"Bulldog ", "Bruce Gilchrist",
		"175", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd103459889.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/tnHeron.jpg",
		133, 100,
		"537", "Heron  by Bruce Gilchrist",
		"Oak Walnut and Pine", "Bruce Gilchrist",
		"175", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd1744507335.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/tnMuskrat Lake.jpg",
		133, 100,
		"538", "Muskrat Lake by Bruce Gilchrist",
		"Oak &amp; Walnut", "Bruce Gilchrist",
		"200", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-1028421299.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/tnThe Pheasant Hunt.jpg",
		133, 100,
		"539", "Pheasant Hunt Oak by Bruce Gilchrist",
		"Oak, Walnut &amp; Pine ", "Bruce Gilchrist",
		"255", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd1632379971.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/tnMarkowsky_From Mini Series 6 x 8 oil framed $450.JPG",
		137, 100,
		"540", "From Mini Series  by Martha Markowsky",
		" 6 x 8 oil framed", "Martha Markowsky",
		"450", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1260653777.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/tnOrange Sky16 x 20 oil on canvas framed $1200.jpg",
		131, 100,
		"541", " Orange Sky by Martha Markowsky",
		"16 x 20 oil on canvas framed ", "Martha Markowsky",
		"1200", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-131996825.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/tnSymphony and Strings $1750.jpg",
		154, 100,
		"542", "Symphony and Strings  by Martha Markowsky",
		"", "Martha Markowsky",
		"1750", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1047081965.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/tnExpectations.jpg",
		67, 100,
		"544", "Expectations  by Monika Seidenbusch",
		"Acrylic on Gallery Canvas 24 x 36", "Monika Seidenbusch",
		"600", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd545508694.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/tnReflection.jpg",
		67, 100,
		"545", "Reflection  by Monika Seidenbusch",
		"Acrylic on Gallery Canvas 24 x 36", "Monika Seidenbusch",
		"600", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-12448908.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/tnCity Girl_2.jpg",
		67, 100,
		"546", "City Girl #2  by Monika Seidenbusch",
		"Acrylic on Gallery Canvas 24 x 36", "Monika Seidenbusch",
		"600", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1424675134.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/tnAu Clair de la Lune.jpg",
		76, 100,
		"547", "Au Clair de la Lune by Monika Seidenbusch",
		"Acrylic on framed stretched canvas 30 x 40", "Monika Seidenbusch",
		"700", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-270107968.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/tnEarly Snow 30 x 40 oil on canvas framed $2200.jpg",
		133, 100,
		"549", " Early Snow by John Alexander Day",
		"30 x 40 oil on canvas framed ", "John Day",
		"2750", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1822349004.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/tnRiver Fall 20 x 40 inches Oils by John Stevenson 2009.jpg",
		170, 100,
		"550", "River in  Fall   by John Stevenson",
		" oil on canvas framed 20 x 40 ", "John Stevenson",
		"1750", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1464251942.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/tnOttawa River Ottawa River at Luskville Qc 20 x 40 inches Oils.jpg",
		176, 100,
		"551", "Ottawa River by John Stevenson",
		"oil on canvas framed 20 x 40", "John Stevenson",
		"1750", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-584488040.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/tnTHree Birches 24 x 30 inches OIls by John Stevenson 2009.jpg",
		124, 100,
		"552", "Three Birches  by John Stevenson",
		"oil on canvas  framed 24 x 30 ", "John Stevenson",
		"1878", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1228643206.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/tnFall Bay Black Lake  Gatineau Park 24 x 36 inches Oils by John Stevenson 2009.jpg",
		139, 100,
		"553", " Fall Bay, Black Lake  by John Stevenson",
		" oil on canvas framed 24 x 36 ", "John Stevenson",
		"1878", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd136398116.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/tnThrough the Tree 26 x20 inches Oils by John Stevenson 2009.jpg",
		120, 100,
		"554", "Through the Tree  by John Stevenson",
		"24 x 20 framed oil on canvas ", "John Stevenson",
		"1190", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-500711438.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/tnhaycock_ Spring on Costello Creek.jpg",
		125, 100,
		"556", "Spring on Costello Creek by Kathy Haycock",
		" 16 x 20oil on canvas framed ", "Kathy Haycock",
		"650", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd2046582855.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/tnhaycock_Dancing on a Hillside.jpg",
		129, 100,
		"557", "Dancing on a Hillside by Kathy Haycock",
		" Oil 11 x 14 ", "Kathy Haycock",
		"420", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1618967501.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/tnhaycock_Spring, near Madawaska.jpg",
		120, 100,
		"558", "Spring near Madawaskaby Kathy Haycock",
		" Oil on canvas  framed ", "Kathy Haycock",
		"800", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd972249795.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/tnhaycock_ Spring on an Algonquin Pond.jpg",
		84, 100,
		"559", "Spring on an Algonquin Pond by Kathy Haycock",
		" 24 x 20 oil on canvas  framed ", "Monika Seidenbusch",
		"850", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1936364887.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/tnLastLight.jpg",
		81, 100,
		"149", "Last Light, Perth by John Alexander Day",
		"Oil 20 x 16  Framed", "John Day",
		"1000", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd519070302.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/example6.JPG",
		200, 154,
		"162", "Custom Photo Collage by Fine Design. 20 x 24 dry mounted and framed. ",
		"Includes up to 8 photos blended together.  Add additional photos for $10 each.", "Fine Design",
		"175", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd368688243.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/tnSnowandOtherGuises.JPG",
		64, 100,
		"176", "Snow and Other Guises by John L. Falk. ",
		"Guernica Press. Essential Poets Series 90", "John L. Falk, Guernica Press",
		"12", "0",
		"2", 1,
		"Pieces", "0",
		"", "pd-748327098.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/tnGOOSE_CHRISTABER.JPG",
		133, 100,
		"187", "LARGE CANADA GOOSE.  23&quot; long 13&quot; high by Chris Taber",
		"wood carved", "Chris Taber",
		"75", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd979261195.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/tnLG_DUCKTABER.JPG",
		133, 100,
		"189", "LG. DUCK. 13&quot; long x 6&quot; high CARVED DETAILING.  by Chris Taber",
		"", "Chris Taber",
		"65", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd719058465.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/tnholdingout.jpg",
		66, 100,
		"221", "Holding Out.  John L. Falk Guernica Editions Inc.",
		"Essential Poets Series 134. 2005", "John L. Falk, Guernica Press",
		"15", "0",
		"2", 1,
		"Pieces", "0",
		"", "pd-1414424306.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/tnField of Poppies.jpg",
		133, 100,
		"264", "Field of Poppies by Deborah Czernekcy ",
		"", "Deborah Czernecky",
		"550", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd1182698404.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/tn1_ambrosia maple2.75x10_50.JPG",
		133, 100,
		"338", "AMBROSIA MAPLE WOODTURNED BOWL by LORNE BABB",
		"10&quot; diameter by 2 3/4&quot; high", "Lorne Babb",
		"50", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd1198337203.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/tn2_Cherry265x10_60.JPG",
		133, 100,
		"339", "Cherry WOODTURNED BOWL by LORNE BABB",
		"10&quot; diameter by 2 5/8&quot; high", "Lorne Babb",
		"60", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-966963687.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/tn4_cherry3625_75top.jpg",
		133, 100,
		"340", "Cherry WOODTURNED BOWL by LORNE BABB",
		"10&quot; diameter by 3 5/8&quot; high", "Lorne Babb",
		"75", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd1354835439.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/tn5_ambrosia maple2.75x10_45Top.jpg",
		133, 100,
		"341", "AMBROSIA MAPLE WOODTURNED BOWL by LORNE BABB",
		"10&quot; diameter by 2 3/4&quot; high", "Lorne Babb",
		"45", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-587507275.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/tn9_pine12.625x7.5_120side.jpg",
		133, 100,
		"343", "Pine woodturned bowl by Lorne Babb",
		"12 5/8&quot; diameter by 7 1/2&quot; high", "Lorne Babb",
		"120", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-1498323171.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/tn6_cherrry14.5x4_125.jpg",
		133, 100,
		"345", "Cherry woodturned bowl by Lorne Babb",
		"14 1/2&quot; diameter by 4&quot; high", "Lorne Babb",
		"125", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd-1295570183.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/tn7_maple13x4.75_100.jpg",
		133, 100,
		"346", "Maple woodturned bowl by Lorne Babb",
		"13&quot; diameter by 4 3/4&quot; high", "Lorne Babb",
		"100", "0",
		"2", 1,
		"Pieces", "2",
		"", "pd292933071.htm",
		"", 1,
		"23", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/tnLakeside Cottage.jpg",
		128, 100,
		"376", "Lakeside Cottage  by John Alexander Day",
		"Oil on Linen 14 x 18 framed", "John Day",
		"840", "0",
		"2", 1,
		"Pieces", "3",
		"", "pd-1255191851.htm",
		"", 1,
		"22", "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...</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();
			};
		};
