	// 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 = encryptTextData(anElement.Title);
				myLine.Description = encryptTextData(anElement.Subtitle);
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = encryptTextData(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();
			location.href="orderform.htm";
			};
		};
// ** 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 + "=" + variants[i].split(";")[1] + "&"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="177" height="24" alt="Προσθήκη παραγγελίας" 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=\"javascript:callpage('" + this.LnkAdress + "','" + variantString + "'," + 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 += ">";
			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=\"javascript:callpage('" + this.LnkAdress + "','" + variantString + "'," + 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>Τιμή πριν:&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>Τώρα μόνο:&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 += "Τιμή κατ&#0039; επιλογή";
			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/Cult2010.gif",
		125, 125,
		"11016", "Naish Cult 2010 + Universal Control Bar System",
		"Δεν περιλαμβάνεται τρόμπα", "Naish",
		"1150", "0",
		"1", 1,
		"Τεμάχιο", 1,
		"Διαστάσεις;10,5μ@", "pd338030014.htm",
		"", 1,
		"1100", 0,
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Helix2010.gif",
		125, 125,
		"11036", "Naish Helix 2010 + Universal Control Bar System",
		"Δεν περιλαμβάνει την τρόμπα", "Naish",
		"1190", "0",
		"1", 1,
		"Τεμάχιο", 1,
		"Διαστάσεις;10,5μ@", "pd-606727531.htm",
		"", 1,
		"1100", 0,
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/1509.gif",
		120, 86,
		"1514", "Pattex 50gr",
		"Διάφανη κόλλα ( ειδική για χρήση στο μπαλόνι )", "B3 Tarifa Canarias",
		"6", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd1939397665.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/DSC_0472.jpg",
		125, 173,
		"15101", "Leash P &amp; J 2m",
		"Σχοινί ασφαλείας σανίδας", "B3 Tarifa Canarias",
		"45", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"Χρώμα;Black@", "pd-124973901.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/DSC_0467.jpg",
		125, 213,
		"1502", "Chicken Finger",
		"Naish Control Bar Accessories", "Naish",
		"5", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd1256639963.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/DSC_0468.jpg",
		125, 134,
		"1503", "Smart Loop Red Handle",
		"Naish Control Bar Accessories", "Naish",
		"10", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd-146476672.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/1513.jpg",
		80, 125,
		"1501", "Naish Pump",
		"Naish Accessories", "Naish",
		"25", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd1209496449.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/6101.jpg",
		125, 283,
		"6101", "Gul Response Flatloched 3/2",
		"Στολή για Kite Surf", "Gul",
		"135", "0",
		"1", 1,
		"Τεμάχιο", 11,
		"Μέγεθος;XL@", "pd1065449071.htm",
		"", 1,
		"6100", 0,
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/6102.jpg",
		125, 270,
		"6102", "Gul Response Blindstitch 5/3",
		"Στολή για Kite Surf", "Gul",
		"180", "0",
		"1", 1,
		"Τεμάχιο", 11,
		"Μέγεθος;M@", "pd-329890927.htm",
		"", 1,
		"6100", 0,
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/6103.jpg",
		125, 184,
		"61031", "Gul Delta 5/4/3 Blindstitch Steamer",
		"Στολή για Kite Surf", "Gul",
		"300", "0",
		"1", 1,
		"Τεμάχιο", 11,
		"Μέγεθος;L@", "pd807971434.htm",
		"", 1,
		"6100", 0,
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/6104.jpg",
		125, 184,
		"61041", "Response 3/2 Flatlock spring suit",
		"Στολή για Kite Surf", "Gul",
		"90", "0",
		"1", 1,
		"Τεμάχιο", 11,
		"Μέγεθος;L@", "pd-736971895.htm",
		"", 1,
		"6100", 0,
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/1301 FUSION.jpg",
		125, 125,
		"13011", "Fusion 2010",
		"Ζώνη για Kite Surf", "Dakine",
		"120", "0",
		"1", 1,
		"Τεμάχιο", 3,
		"Μέγεθος;L@", "pd-1051231942.htm",
		"", 1,
		"1300", 0,
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/1302.jpg",
		125, 125,
		"13021", "Storm Seat 2010",
		"Ζώνη για Kite Surf", "Dakine",
		"80", "0",
		"1", 1,
		"Τεμάχιο", 3,
		"Μέγεθος;L@", "pd2069899652.htm",
		"", 1,
		"1300", 0,
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/1303.jpg",
		125, 125,
		"13031", "Renegade 2010",
		"Ζώνη για Kite Surf", "Dakine",
		"110", "0",
		"1", 1,
		"Τεμάχιο", 3,
		"Μέγεθος;L@", "pd202149415.htm",
		"", 1,
		"1300", 0,
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/1401.jpg",
		125, 125,
		"14011", "Dakine Matrix Kiteboarding",
		"Προστατευτικό σωσίβιο για Kite Surf", "Dakine",
		"120", "0",
		"1", 1,
		"Τεμάχιο", 4,
		"Μέγεθος;L@", "pd1451610546.htm",
		"", 1,
		"1400", 0,
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Torch2010.gif",
		125, 125,
		"11025", "Naish Torch 2010 + Universal Control Bar System",
		"Δεν περιλαμβάνει την τρόμπα", "Naish",
		"1180", "0",
		"1", 1,
		"Τεμάχιο", 1,
		"Διαστάσεις;10,0μ@", "pd1504139123.htm",
		"", 1,
		"1100", 0,
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Haze2010.gif",
		125, 125,
		"21014", "Haze 2010",
		"", "Naish",
		"470", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διάσταση;136 x 40.0cm@", "pd-1406973680.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Sol2010.gif",
		125, 125,
		"21024", "Sol 2010",
		"Naish Kiteboarding", "Naish",
		"565", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διάσταση;137 x 40.5cm@", "pd1252174708.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Momentum2010.gif",
		125, 125,
		"21031", "Momentum 2010",
		"Naish Kiteboarding", "Naish",
		"565", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διάσταση;130 x 40cm@", "pd-2125984872.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/ThornCC2010.gif",
		125, 125,
		"2104", "Thorn CC 2010",
		"Naish Kiteboarding", "Naish",
		"700", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διάσταση;132 x 40cm@", "pd1586579851.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/0029.jpg",
		125, 187,
		"9106", "Viper Radical Kiteboard 136x38",
		"Άριστη κατάσταση", "",
		"200", "0",
		"1", 1,
		"Τεμάχιο", 12,
		"", "pd-509387177.htm",
		"", 1,
		"9000", 0,
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/DSC_0471.jpg",
		125, 169,
		"1505", "Pulley",
		"Naish Control Bar Accessories", "Naish",
		"25", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd1812225925.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/DSC_0469.jpg",
		125, 151,
		"1506", "Pulley Seive Line Organizer",
		"Naish Control Bar Accessories", "Naish",
		"45", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd-220837790.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/DSC_0464.jpg",
		125, 277,
		"15161", "SMART LOOP TRIM LOOP ",
		"Smart Loop Trim Loop", "Naish",
		"20", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"Διαστάσεις;30cm@", "pd-1328703753.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/DSC_0465.jpg",
		125, 232,
		"1508", "Smart Loop Trim Line for SLE",
		"Naish Control Bar Accessories", "Naish",
		"30", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd-192580756.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/1402.jpg",
		106, 125,
		"14023", "Gath Helmet",
		"Προστατευτικό Κράνος για Kite Surf", "Gath",
		"110", "0",
		"1", 1,
		"Τεμάχιο", 4,
		"Μέγεθος;L@", "pd-453987471.htm",
		"", 1,
		"1400", 0,
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/1601.jpg",
		116, 125,
		"16011", "Heavy Duty Dry Bag",
		"Αδιάβροχη τσάντα για Kite Surf", "Gul",
		"52.35", "0",
		"1", 1,
		"Τεμάχιο", 6,
		"Λίτρα;100lt@", "pd-487378057.htm",
		"", 1,
		"1600", 0,
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/1602.jpg",
		125, 125,
		"16021", "Slider Bag",
		"Θήκη για σανίδι", "Dakine",
		"45", "0",
		"1", 1,
		"Τεμάχιο", 6,
		"Διαστάσεις;1,35μ@", "pd1379974328.htm",
		"", 1,
		"1600", 0,
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/1501.jpg",
		125, 125,
		"1504", "Naish Stopper",
		"Naish Control Bar Accessories", "Naish",
		"8", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd-1672439790.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/1502.jpg",
		175, 125,
		"1701", "Mega Blaster",
		"Dakine Tools", "Dakine",
		"20", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd223012651.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/1503.jpg",
		150, 125,
		"1702", "Stubby Driver",
		"Dakine Tools", "Dakine",
		"12", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd-711244656.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/1504.jpg",
		185, 125,
		"1703", "Cool Tool",
		"Dakine Tools", "Dakine",
		"17", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd1608805713.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/1505.jpg",
		125, 125,
		"1704", "Torque Driver",
		"Dakine Tools", "Dakine",
		"12.5", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd-1801585346.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/1506.jpg",
		122, 125,
		"1705", "Commando Tool",
		"Dakine Tools", "Dakine",
		"17", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd-1429522457.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/1507.jpg",
		116, 116,
		"1706", "Shop Driver",
		"Dakine Tools", "Dakine",
		"21.5", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd1353866652.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/1205.jpg",
		72, 125,
		"12052", "Custom Global 2010",
		"Naish Kiteboarding", "Naish",
		"640", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διάσταση;162.6cm x 42.5cm@", "pd1147526466.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/1305_th.jpg",
		125, 48,
		"13051", "Spreader Bar Pad",
		"Για ζώνες Dakine", "Dakine",
		"15", "0",
		"1", 1,
		"Τεμάχιο", 3,
		"Διαστάσεις;10 inches@", "pd-157513159.htm",
		"", 1,
		"1300", 0,
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/1403.jpg",
		146, 125,
		"1403", "Eva Helmet",
		"Προστατευτικό Κράνος για Kite Surf", "B3 Tarifa Canarias",
		"55", "0",
		"1", 1,
		"Τεμάχιο", 4,
		"", "pd1256022000.htm",
		"", 1,
		"1400", 0,
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/1508.jpg",
		167, 125,
		"15081", "SPINAKER TAPE",
		"Υφασμάτινη αυτοκόλλητη ταινία επισκευής αετού 50mm x 4.5m", "B3 Tarifa Canarias",
		"18", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"Χρώμα;Blue@", "pd499974304.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/1304.jpg",
		125, 125,
		"13041", "Hammer Head Kite Bar",
		"Για ζώνες Dakine", "Dakine",
		"10", "0",
		"1", 1,
		"Τεμάχιο", 3,
		"Διαστάσεις;10 inches@", "pd528600525.htm",
		"", 1,
		"1300", 0,
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/DSC_0466.jpg",
		125, 209,
		"1509", "Smart Loop Trim Line for SHIFT SYSTEM",
		"Naish Control Bar Accessories", "Naish",
		"25", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd-1607970307.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/DSC_0470.jpg",
		125, 201,
		"1510", "Complete Smart Loop with Trim Line for SLE",
		"Naish Control Bar Accessories", "Naish",
		"100", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd-1358973062.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/DSC_0470.jpg",
		125, 201,
		"1511", "Complete Smart Loop with Trim Line for SHIFT SYSTEM",
		"Naish Control Bar Accessories", "Naish",
		"85", "0",
		"1", 1,
		"Τεμάχιο", 5,
		"", "pd2118835315.htm",
		"", 1,
		"1500", 0,
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/2405.jpg",
		125, 125,
		"24051", "Fixed Harness Lines",
		"", "Dakine",
		"25", "0",
		"1", 1,
		"Τεμάχιο", 9,
		"Διαστάσεις;24 inches - 61 cm@", "pd-934419247.htm",
		"", 1,
		"2300", 0,
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/1206.jpg",
		125, 125,
		"1206", "Adjastable Control Footstrap",
		"Dakine Kiteboarding Tools", "Dakine",
		"30", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"", "pd1081973787.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/1207.jpg",
		125, 125,
		"1207", "X-Lace Kite Footstrap",
		"Dakine Kiteboarding Tools", "Dakine",
		"40", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"", "pd-267078976.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/xplorer1.jpg",
		125, 125,
		"1707", "Skywatch Xplorer 1",
		"Ανεμόμετρο", "JDC Electronics",
		"49", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd-931582024.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/xplorer2.jpg",
		125, 125,
		"1708", "Skywatch Xplorer 2",
		"Ανεμόμετρο", "JDC Electronics",
		"59", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd1949086553.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/1208.jpg",
		125, 125,
		"1208", "Dakine Boost II Deckpad with Plate",
		"Dakine Kiteboarding Tools", "Dakine",
		"49", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"", "pd-34671585.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/1209.jpg",
		125, 95,
		"1209", "Dakine Boost II Deckpad",
		"Dakine Kiteboarding Tools", "Dakine",
		"20", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"", "pd-15416460.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/skywatch_eole1_b.jpg",
		125, 209,
		"1709", "Skywatch Eole",
		"Ανεμόμετρο", "JDC Electronics",
		"79", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd1849523366.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/skywatch_meteos1_b.jpg",
		125, 210,
		"1710", "Skywatch Meteos",
		"Ανεμόμετρο", "JDC Electronics",
		"90", "0",
		"1", 1,
		"Τεμάχιο", 7,
		"", "pd172756271.htm",
		"", 1,
		"1700", 0,
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/6108.jpg",
		125, 184,
		"6108", "3mm Strapped Slipper Round Toe",
		"Μποτάκια", "Gul",
		"45", "0",
		"1", 1,
		"Τεμάχιο", 11,
		"Μέγεθος;10@", "pd-300861461.htm",
		"", 1,
		"6100", 0,
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/1210a.jpg",
		125, 125,
		"12101", "Naish Kiteboarding Custom Fish 2010 Kitesurf Board",
		"Naish Kiteboarding", "Naish",
		"640", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διαστάσεις;5,40@", "pd-913740805.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/1211.jpg",
		125, 125,
		"12111", "Naish Kiteboarding Custom Gun 2010",
		"", "",
		"720", "0",
		"1", 1,
		"Τεμάχιο", 2,
		"Διαστάσεις;5,10@", "pd1319878444.htm",
		"", 1,
		"1200", 0,
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/0031.jpg",
		125, 84,
		"9102", "Naish Cult Sport 7.5m 2009",
		"Άριστη Κατάσταση - Περιλαμβάνει μπάρα", "",
		"400", "0",
		"1", 1,
		"Τεμάχιο", 12,
		"", "pd1114355355.htm",
		"", 1,
		"9000", 0,
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/0039.jpg",
		125, 84,
		"9103", "Naish Cult 9m 2010",
		"Άριστη Κατάσταση - Περιλαμβάνει μπάρα", "",
		"700", "0",
		"1", 1,
		"Τεμάχιο", 12,
		"", "pd1388206912.htm",
		"", 1,
		"9000", 0,
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/0004.jpg",
		125, 94,
		"9104", "Best Waroo 9m 2009",
		"Δεν έχει χρησιμοποιηθεί ποτέ", "",
		"650", "0",
		"1", 1,
		"Τεμάχιο", 12,
		"", "pd561089089.htm",
		"", 1,
		"9000", 0,
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/0049.jpg",
		125, 94,
		"9105", "Best Waroo 13m 2010",
		"Άριστη Κατάσταση - Περιλαμβάνει μπάρα", "",
		"300", "0",
		"1", 1,
		"Τεμάχιο", 12,
		"", "pd-294931602.htm",
		"", 1,
		"9000", 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;
// ** 1111
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 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"){
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"){
						matchCategory = (navigation[mySearchEngine.categoryIndex].categoryID == Entry[i].Category) ? true : false;
						if(matchCategory!=true){
							productCategory = getNavElementByCatID(Entry[i].Category);
							if(productCategory!=null){
								if(productCategory.parentID!=null){
									if(navigation[productCategory.parentID].categoryID==xmlConfig.getFirstItem("SearchEngine").categoryID){
										matchCategory=true;
										};
									};
								};
							};
						}
					else{
						matchCategory = true;
						};
					}
				else{
					matchCategory = true;
					};
				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>Δυστυχώς δεν βρέθηκε κανένα προϊόν που να αντιστοιχεί Παρακαλώ προσπαθήστε ξανά...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Δεν έχετε εισάγει κριτήρια αναζήτησης Παρακαλώ εισάγετε τη λέξη αναζήτησης</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;
		};

