	// 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/card.jpg" width="121" height="31" 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/1001.jpg",
		90, 80,
		"1001", "MOLNIJA Railroader Watch",
		"Pocketwatch", "",
		"45", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1022690463.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/2277besser.jpg",
		90, 102,
		"2277", "Poljot Chronograph &quot;Albatros&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-306708160.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/2278.jpg",
		90, 99,
		"2278", "Poljot Chronograph &quot;Ruslan&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "2",
		"", "pd712489025.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/2478.jpg",
		90, 92,
		"2478", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1556482467.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/2901.jpg",
		90, 94,
		"2901", "Chronograph &quot;Sturmanskie&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1254612058.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/2902.jpg",
		90, 101,
		"2902", "                                   Chronograph &quot;Sturmanskie - Civil&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1986357293.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/5104W.jpg",
		90, 106,
		"5104", " Aviator Flightwatch “Classic”",
		"Manual-winding watch", "",
		"145", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-290554923.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/5108S.jpg",
		90, 82,
		"5108", " Chronograph &quot;Flightcaptain&quot;",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "2",
		"", "pd875346737.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/5176.jpg",
		90, 93,
		"5176", "Chronograph &quot;Jetfighter&quot;",
		"Chronograph", "",
		"245", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-213193314.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/5177.jpg",
		90, 90,
		"5177", "Chronograph &quot;Jetfighter - 24h.&quot;",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-416827193.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/5215.jpg",
		90, 103,
		"5215", "                                                          Poljot alarm watch “Alarm Traveller Watch”",
		"Alarmwatch", "",
		"225", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-524401412.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/5503.jpg",
		90, 113,
		"5503", "Poljot Automatic ETA",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-965965747.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/5504.jpg",
		90, 110,
		"5504", "Poljot Automatic ETA",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1523137347.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/5506.jpg",
		90, 109,
		"5506", "Poljot Automatic",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1330659113.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/FSmatt.jpg",
		90, 78,
		"9020", "Leather band with a folding clasp",
		"wristband", "",
		"15", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1383594949.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/metallband.jpg",
		117, 80,
		"9900", "Stainless steel bands",
		"Stainless steel band", "",
		"40", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1634581966.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/2476.jpg",
		90, 93,
		"2476", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1397576679.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/2479besser.jpg",
		90, 103,
		"2479", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "2",
		"", "pd726054502.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/2677.jpg",
		90, 91,
		"2677", "Chronograph &quot; 2677 &quot;",
		"Chronograph", "",
		"210", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1053668335.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/5104AN.jpg",
		90, 101,
		"5104A", "Poljot Flightwatch &quot;Aviator Automatic 40 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-2004214784.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/5215A.jpg",
		90, 97,
		"5215 A", "Poljot Automatic &quot;Traveller Watch - luxury&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1498822970.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/3907.jpg",
		90, 105,
		"3907", "Buran Chronograph &quot;Saphire-Moonphase&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1027008063.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/3909.jpg",
		90, 99,
		"3909", "Chronograph &quot;Moon Phase&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1029318568.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/3208B.jpg",
		90, 97,
		"3208B", "Chronograph &quot;SS-20&quot;",
		"Chronograph", "",
		"510", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1137119832.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/0100ANeu.jpg",
		90, 98,
		"0100A", "Glasbottom - Polished Stainless Steel Mounting",
		"Glasbottom", "",
		"30", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1023119531.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/0100B.jpg",
		90, 96,
		"0100B", "Glasbottom - Matt finished Stainless Steel Mounting",
		"Glasbottom", "",
		"30", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1023119924.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/3002offen.jpg",
		90, 159,
		"3002", "Poljot observation watch",
		"Observation watch", "",
		"615", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1024657878.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/2904.jpg",
		90, 98,
		"2904", "Traveller Chronograph ",
		"Chronograph", "",
		"245", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-25960858.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/2905B.jpg",
		90, 131,
		"9903", "Stainless steel band",
		"Steel band", "",
		"40", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1031170023.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/2904B.jpg",
		90, 100,
		"2904B", "Traveller Chronograph",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1825349893.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/5012Neu.jpg",
		90, 98,
		"5012", "Aviator &quot;Small Second&quot;",
		"Manual-Winding-Watch", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1873887323.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/2903BII.jpg",
		90, 95,
		"2903B", "Traveller Chronograph",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "2",
		"", "pd101096364.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/2476.jpg",
		90, 93,
		"2476-3D", "Poljot Chronograph &quot;Blue Angels&quot; -3D",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-2143537226.htm",
		"", 1,
		"92", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/5002.jpg",
		90, 102,
		"5002-3D", "Chronograph Aviator II -3D",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "15",
		"", "pd2016816806.htm",
		"", 1,
		"92", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/5505.jpg",
		90, 109,
		"5505-3D", "Poljot Automatic -3D",
		"Automatic watch", "",
		"255", "0",
		"1", 1,
		"Stück", "15",
		"", "pd221933974.htm",
		"", 1,
		"92", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/5302.jpg",
		90, 98,
		"5302-3D", "&quot;Classic&quot; -3D",
		"Manual winding", "",
		"150", "0",
		"1", 1,
		"Stück", "15",
		"", "pd386566227.htm",
		"", 1,
		"92", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Bandschwarz.jpg",
		90, 43,
		"9010", "Leather strap",
		"Leather strap", "",
		"9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1739775333.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Bandschwarzlang.jpg",
		90, 38,
		"9016", "Leather strap extra-long",
		"Leather strap extra-long", "",
		"10", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1478555163.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/9014.jpg",
		90, 42,
		"9014", "Leather Strap - Extra thick",
		"Leather Strap - Extra thick", "",
		"18.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-524888639.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/5060.jpg",
		90, 97,
		"5060", "Chronograph Aviator III  ",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-132909217.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/5062aviator4.jpg",
		90, 101,
		"5062", " Chronograph Aviator IV Saphir",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd802928059.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/5063Saphir.jpg",
		90, 98,
		"5063", "Chronograph Aviator IV Saphir",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1637211857.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/3908B.jpg",
		90, 103,
		"3908B", "Buran Chronograph &quot;Saphire-Moonphase&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1054810668.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/3505.jpg",
		90, 129,
		"3505", "Kirowa Chronograph &quot;Retro&quot;",
		"Chronograph", "",
		"380", "0",
		"1", 1,
		"Stück", "2",
		"", "pd157538099.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/3506.jpg",
		90, 129,
		"3506", "Kirowa Chronograph &quot;Retro&quot;",
		"Chronograph", "",
		"380", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-888275815.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/3500.jpg",
		90, 138,
		"3500", "Chronograph &quot;Wright Brothers&quot;",
		" Chronograph", "",
		"495", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1303083310.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/3400.jpg",
		90, 101,
		"3400", "Buran Chronograph &quot;Saphir-Moonphase&quot;",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1106475206.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/3401.jpg",
		90, 98,
		"3401", "Buran Chronograph &quot;Saphir&quot;",
		"Chronograph", "",
		"435", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-138861642.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/5420.jpg",
		90, 102,
		"5420", "Buran &quot;Siberia&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1889346467.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/5421.jpg",
		90, 95,
		"5421", "Buran &quot;Siberia&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1424125519.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/5422.jpg",
		90, 99,
		"5422", "Buran &quot;Siberia&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1386962348.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/5423.jpg",
		90, 103,
		"5423", "Buran &quot;Siberia&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1787272075.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/5424.jpg",
		90, 100,
		"5424", "Buran &quot;Siberia&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1618249598.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/5425.jpg",
		90, 103,
		"5425", "Buran &quot;Siberia&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1137573387.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/4300.jpg",
		90, 109,
		"4300", "Poljot Alarm &quot;Tonneau&quot;",
		"Alarmwatch", "",
		"185", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1070524912.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/5427.jpg",
		90, 95,
		"5427", "&quot;Aviator 43&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-368654654.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/5428.jpg",
		90, 96,
		"5428", "&quot;Aviator 43&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1402065600.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/5429.jpg",
		90, 95,
		"5429", "&quot;Aviator 43&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1628718046.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/3403.jpg",
		90, 98,
		"3403", "Buran Chronograph &quot;Saphir-24hours&quot;",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1073658694.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/3402.jpg",
		90, 99,
		"3402", "Buran Chronograph &quot;Saphir-Moonphase&quot;",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1315862075.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/1401.jpg",
		90, 99,
		"1401", "Raketa &quot;Watch for Blind People&quot;",
		"Manual Winding ", "",
		"55", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1780155919.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/5320neu2.jpg",
		90, 96,
		"5320", "                                                                              Aviator 24-hour Watch",
		"24-hour Watch", "",
		"195", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1081177049.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/2800II.jpg",
		90, 97,
		"2800", "Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"280", "0",
		"1", 1,
		"Stück", "2",
		"", "pd143382525.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/2801.jpg",
		90, 95,
		"2801", "                                             Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd2024919667.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/2802.jpg",
		90, 100,
		"2802", "Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1759624830.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/9066.jpg",
		90, 68,
		"9066", "watch case for 18 wristwatches",
		"", "",
		"115", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1084289001.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/1250.jpg",
		90, 103,
		"1250", "                              Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-711381867.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/1251.jpg",
		90, 102,
		"1251", "                           Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd146184395.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/1252.jpg",
		90, 105,
		"1252", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd199065277.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/1253.jpg",
		90, 111,
		"1253", "Chronograph &quot;Buran&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1088575810.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/1254neu.jpg",
		90, 102,
		"1254", "                                                                                Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1091818803.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/3263.jpg",
		90, 97,
		"3263", "Chronograph &quot;Air Force-24hours&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1472771658.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/3816GUT.jpg",
		90, 98,
		"3810", "Chronograph &quot;Putin&quot;",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-420992056.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/5326neu.jpg",
		90, 103,
		"5326", "&quot;Arctic&quot; 24-hour Watch",
		"24-hour Watch", "",
		"155", "0",
		"1", 1,
		"Stück", "6",
		"", "pd746840954.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Canada 2004 (95).jpg",
		90, 134,
		"0000", "&quot;Lisa&quot; - not for sale...",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-659194337.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/5002.jpg",
		90, 102,
		"5002S", "    Chronograph Aviator II Saphir",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-59464268.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/5065.jpg",
		90, 99,
		"5065", "Chronograph Aviator &quot;Caoutchouc&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1811072087.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/5066.jpg",
		90, 98,
		"5066", "Chronograph Aviator &quot;Caoutchouc&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd224545050.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/3908C.jpg",
		90, 103,
		"3908C", "Buran Chronograph &quot;Saphire-Moonphase&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1222529478.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/0302.jpg",
		90, 92,
		"0302", "                                                                      Wostok Ship´s clock &quot;5-CHM&quot;",
		"", "",
		"235", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1097072705.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/1002.jpg",
		90, 99,
		"1002", "Agat Stopp-watch &quot;CCCP&quot;",
		"", "",
		"55", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1145585468.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/3264.jpg",
		90, 99,
		"3264", "Chronograph &quot;Air Force-24hours&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1104172694.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/1256.jpg",
		90, 105,
		"1256", "Chronograph &quot;Buran&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd47134020.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/5067.jpg",
		90, 103,
		"5067", "Chronograph Aviator &quot;Caoutchouc&quot;",
		"Chronograph", "",
		"395", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-200843308.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/9018.jpg",
		90, 169,
		"9018", "Textile Strap",
		"Textile Strap", "",
		"12", "0",
		"1", 1,
		"Stück", "11",
		"", "pd362296932.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/2570.jpg",
		90, 102,
		"2570", "Chronograph &quot;Polar&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1776946844.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/5430.jpg",
		90, 94,
		"5430", " Aeronavigator",
		"Manual winding", "",
		"175", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1113050260.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/holzbox18stck.5.jpg",
		90, 76,
		"9065", "watch case for 18 wristwatches",
		"", "",
		"115", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-810675386.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/5071.jpg",
		90, 100,
		"5071", "Aviator Chronograph &quot;Automatic&quot;",
		"automatic-chronograph", "",
		"795", "0",
		"1", 1,
		"Stück", "2",
		"", "pd682577518.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/9067.jpg",
		90, 90,
		"9067", "Watchbox for the MIG 29 Bordwatch",
		"watchcase", "",
		"55", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1116604529.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/4112.jpg",
		90, 97,
		"4112", "Chronograph &quot;Kirowa&quot;",
		"Chronograph", "",
		"260", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2091641622.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/4113.jpg",
		90, 98,
		"4113", "Chronograph &quot;Kirowa&quot;",
		"Chronograph", "",
		"260", "0",
		"1", 1,
		"Stück", "2",
		"", "pd532533063.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/1402.jpg",
		90, 103,
		"1402", "&quot;Sturmanskie Gagarin&quot;",
		"manual winding", "",
		"135", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1929404737.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/1403.jpg",
		90, 100,
		"1403", "                                                                               &quot;Sturmanskie Gagarin&quot;",
		"manual winding", "",
		"135", "0",
		"1", 1,
		"Stück", "4",
		"", "pd826936663.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/3003II.jpg",
		90, 127,
		"3003", "Poljot Sea-Chronometer",
		"Sea-Chronometer", "",
		"1250", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1033749353.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/0310.jpg",
		90, 89,
		"0310", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"275", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1118386235.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/0311.jpg",
		90, 81,
		"0311", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"275", "0",
		"1", 1,
		"Stück", "12",
		"", "pd895333950.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/0312.jpg",
		90, 88,
		"0312", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"275", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1302998884.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/0313.jpg",
		90, 95,
		"0313", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"275", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1028778694.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/0314.jpg",
		90, 95,
		"0314", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"295", "0",
		"1", 1,
		"Stück", "12",
		"", "pd723994944.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/0315.jpg",
		90, 93,
		"0315", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"295", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1426482954.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/5442.jpg",
		90, 101,
		"5442", "Moscow-Classic",
		"Manual winding", "",
		"150", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-482698902.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/5443.jpg",
		90, 100,
		"5443", "Moscow-Classic",
		"Manual winding", "",
		"150", "0",
		"1", 1,
		"Stück", "4",
		"", "pd566185009.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/3405.jpg",
		90, 98,
		"3405", "Buran Chronograph &quot;Saphir-Moonphase&quot;",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1129986173.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/2901G.jpg",
		90, 95,
		"2901G", "Chronograph &quot;Sturmanskie-42mm&quot;",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "2",
		"", "pd730120994.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/5002.jpg",
		90, 102,
		".5002S", "Chronograph Aviator II Saphir",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "14",
		"", "pd80266062.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/2476.jpg",
		90, 93,
		".2476", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-602624101.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/5450.jpg",
		90, 97,
		"5450", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1134833881.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/5452.jpg",
		90, 97,
		"5452", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "12",
		"", "pd299459525.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/5450.jpg",
		90, 97,
		"5450.", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1142201373.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/5452.jpg",
		90, 97,
		"5452.", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-2097267491.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/9069.jpg",
		90, 88,
		"9069", "watch case for 9 wristwatches",
		"", "",
		"90", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1138087927.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/9909Schliesse.jpg",
		90, 98,
		"9909", "Stainless Steel band for Strela",
		"metal bracelet 19 mm", "",
		"45", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1138792243.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/5433.jpg",
		90, 93,
		"5433", "Aeronavigator",
		"Manual winding", "",
		"175", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1141919314.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/2771.jpg",
		90, 101,
		"2771", "Chronograph &quot;Night Hunter&quot;",
		"Chronograph", "",
		"275", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1141975963.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/5110.jpg",
		90, 96,
		"5110", "   Chronograph Pilot &quot;Berkut&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1142711617.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/5111.jpg",
		90, 98,
		"5111", "Chronograph Pilot &quot;Berkut&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1875002722.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/5112N.jpg",
		90, 99,
		"5112", "Chronograph Pilot &quot;Berkut New&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2117236285.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/5113neu.jpg",
		90, 98,
		"5113", "                                Chronograph Pilot &quot;Berkut-New&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1147017173.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/0410.jpg",
		90, 91,
		"0410", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-2112124223.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/0410.jpg",
		90, 91,
		"0410.", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1199950906.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/0410.jpg",
		90, 91,
		".0410", " Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1000098702.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/0412W.jpg",
		90, 98,
		".0412", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1033960018.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/0413.jpg",
		90, 86,
		".0413", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1520330324.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/9071.jpg",
		90, 77,
		"9071", "watch case for 54 wristwatches",
		"", "",
		"195", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1147168010.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/9072.jpg",
		90, 53,
		"9072", "watch case for 48 wristwatches",
		"", "",
		"195", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-30127690.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/5457.jpg",
		90, 95,
		"5457", "Moscow Classic &quot;Amphibia-Chronograph&quot; ",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd495280114.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/5459.jpg",
		90, 97,
		"5459", "Moscow Classic &quot;Amphibia-Chronograph&quot; ",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1749641190.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/5459.jpg",
		90, 97,
		"5459.", "Moscow Classic &quot;Amphibia-Chronograph&quot; ",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-238789898.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/5457.jpg",
		90, 95,
		"5457.", "Moscow Classic &quot;Amphibia-Chronograph&quot; ",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1429103970.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/2960.jpg",
		90, 96,
		"2960", "Chronograph &quot;Sturmovik&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1158330303.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/2961.jpg",
		90, 96,
		"2961", "Chronograph &quot;Sturmovik&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1566872726.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/2961.jpg",
		90, 96,
		"2962", "Chronograph &quot;Sturmovik&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1138634071.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/5453.jpg",
		90, 94,
		"5453", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-339628435.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/5451B.jpg",
		90, 95,
		"5454", "                                            Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1629934351.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/5460.jpg",
		90, 91,
		"5460", "Aeronavigator Chronograph",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1162917134.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/5461.jpg",
		90, 92,
		"5461", "Aeronavigator Chronograph",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1326588927.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/5462.jpg",
		90, 91,
		"5462", "Aeronavigator Chronograph",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1602214944.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/5463.jpg",
		90, 93,
		"5463", "Aeronavigator Chronograph",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd709467035.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/5464.jpg",
		90, 92,
		"5464", "Aeronavigator Chronograph",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-736145566.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/5453.jpg",
		90, 94,
		".5453", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd274951342.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/5450.jpg",
		90, 97,
		".5450", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1122949802.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/5452.jpg",
		90, 97,
		".5452", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-984950530.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/2970.jpg",
		90, 95,
		"2970", "Chronograph &quot;Korsair&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1159448736.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/2971.jpg",
		90, 94,
		"2971", "Chronograph &quot;Korsair&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1516325403.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/2972.jpg",
		90, 97,
		"2972", "Chronograph &quot;Korsair&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1420036066.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/2973.jpg",
		90, 96,
		"2973", "Chronograph &quot;Korsair&quot;",
		"Chronograph", "",
		"305", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1488869833.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/2974.jpg",
		90, 97,
		"2974", "Chronograph &quot;Korsair&quot;",
		"Chronograph", "",
		"305", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-783916050.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/2975.jpg",
		90, 97,
		"2975", "Chronograph &quot;Korsair&quot;",
		"Chronograph", "",
		"305", "0",
		"1", 1,
		"Stück", "2",
		"", "pd123634273.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/regulieren1.jpg",
		90, 94,
		"00000000", "Final check and adjustment of your watch !",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd766490303.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/9104.jpg",
		90, 74,
		"9104", "Leather case for 4 watches",
		"leather case", "",
		"45", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-1637675052.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/9108.jpg",
		90, 54,
		"9108", "Leather case for 8 watches",
		"leather case", "",
		"70", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-1931246304.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/9112.jpg",
		90, 75,
		"9112", "Leather case for 12 watches",
		"leather case", "",
		"80", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1742762062.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/9116.jpg",
		90, 89,
		"9116", "Leather case for 16 watches",
		"leather case", "",
		"90", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-680245460.htm",
		"", 1,
		"81", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/9104.jpg",
		90, 74,
		"9104.", "Leather case for 4 watches",
		"leather case", "",
		"45", "0",
		"1", 1,
		"Stück", "0",
		"", "pd857846074.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/2406Gelb1.jpg",
		90, 92,
		"2406G", "  Raketa 24-hour Watch",
		"Raketa", "",
		"65", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1168328005.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/9910.jpg",
		90, 125,
		"9910", "Stainless Steel band for Amphibia",
		"metal bracelet", "",
		"65", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-821170220.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/5105.jpg",
		90, 95,
		"5105", "Aviator Flightwatch “Classic”",
		"Manual-winding watch", "",
		"145", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1030748255.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/5529.jpg",
		90, 99,
		"5529", "Aviator Alarm 43 mm",
		"Manual winding", "",
		"235", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1439534803.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/2209.jpg",
		90, 91,
		"2209", "Sturmanskie Chronograph &quot;OCEAN&quot;",
		"Chronograph", "",
		"440", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1173591477.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/2209.jpg",
		90, 91,
		"2209.", "Sturmanskie Chronograph &quot;OCEAN&quot;",
		"Chronograph", "",
		"440", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1279764816.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/0410B.jpg",
		90, 97,
		"0410B", " Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1171727453.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/0410B.jpg",
		90, 97,
		".0410B", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1661105746.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/3948.jpg",
		90, 96,
		"3948", "Buran Chronograph &quot;Saphir-Automatik-Moon&quot;",
		"automatic-chronograph", "",
		"1395", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1177567485.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/5470.jpg",
		90, 94,
		"5470", "Aeronavigator Automatic",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1700432863.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/5471.jpg",
		90, 94,
		"5471", "Aeronavigator Automatic",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd2057702638.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/5472.jpg",
		90, 94,
		"5472", "Aeronavigator Automatic ",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1524615287.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/5481.jpg",
		90, 96,
		"5481", "Amphibia Automatic",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-188963526.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/5470.jpg",
		90, 94,
		"5470.", "Aeronavigator Automatic",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1177674695.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/5471.jpg",
		90, 94,
		"5471.", "Aeronavigator Automatic",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-797127140.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/5472.jpg",
		90, 94,
		"5472.", "Aeronavigator Automatic ",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1762527885.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/0510.jpg",
		90, 90,
		".0510", "Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd973215392.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/0511.jpg",
		90, 90,
		".0511", "Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1418686437.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/0513.jpg",
		90, 90,
		".0513", "Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1059467611.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/0514.jpg",
		90, 92,
		".0514", "Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1415695713.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/0510.jpg",
		90, 90,
		"0510", " Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-2078296330.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/0511.jpg",
		90, 90,
		"0511", "Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "12",
		"", "pd191736457.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/0513.jpg",
		90, 90,
		"0513", "              Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "12",
		"", "pd70230243.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/0514.jpg",
		90, 92,
		"0514", "Moscow Classic Divers Automatic ",
		"Diver Automatic", "",
		"335", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-344491318.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/3501II.jpg",
		90, 146,
		"3501", "Aviator Chronograph &quot;Wings&quot;",
		"Chronograph", "",
		"773", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1179067552.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/3502.jpg",
		90, 152,
		"3502", " Aviator Chronograph &quot;Wings&quot;",
		"Chronograph", "",
		"773", "0",
		"1", 1,
		"Stück", "2",
		"", "pd2041628866.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/3501II.jpg",
		90, 146,
		"3501.", "Aviator Chronograph &quot;Wings&quot;",
		"Chronograph", "",
		"773", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1151443860.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/3502.jpg",
		90, 152,
		"3502.", "Aviator Chronograph &quot;Wings&quot;",
		"Chronograph", "",
		"773", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-962672234.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/3947.jpg",
		90, 98,
		"3947", "Buran Chronograph &quot;Saphir-Moonphase&quot;",
		"chronograph", "",
		"518", "0",
		"1", 1,
		"Stück", "2",
		"", "pd228376617.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/5600.jpg",
		90, 94,
		"5600", "   Moscow Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1577498100.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/5601.jpg",
		90, 94,
		"5601", "Moscow Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1602180131.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/5500.jpg",
		90, 95,
		"5500", "Moscow Classic &quot;Navigator&quot; ",
		"manual winding watch", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-153559332.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/5320schwarzII.jpg",
		90, 97,
		"5320B", " Aviator 24-hour Watch Black",
		"24-hour Watch", "",
		"205", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1188921312.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/5501.jpg",
		90, 96,
		"5501", "Moscow Classic &quot;Navigator&quot; ",
		"manual winding watch", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1752374404.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/5410.jpg",
		90, 103,
		"5410", "Moscow-Classic &quot;Sturmovic&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1759665750.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/5411.jpg",
		90, 102,
		"5411", "Moscow-Classic &quot;Sturmovic&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1043401367.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/5410.jpg",
		90, 103,
		"5410.", "Moscow-Classic &quot;Sturmovic&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1644843700.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/5411.jpg",
		90, 102,
		"5411.", "Moscow-Classic &quot;Sturmovic&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "0",
		"", "pd844462331.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/1404.jpg",
		90, 101,
		"1404", "  Sturmanskie “Sputnik”",
		"Manual-winding watch", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd52549230.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/9911S.jpg",
		90, 118,
		"9911", "Stainless Steel band , 22 mm bandwidth",
		"metal bracelet, polished, 22 mm bandwidth", "",
		"38", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1189005651.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/5160.jpg",
		90, 108,
		"5160", "Aviator Alarm “Caoutchouc”",
		"Alarmwatch", "",
		"255", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1691012239.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/5161.jpg",
		90, 106,
		"5161", "Aviator Alarm “Caoutchouc”",
		"Alarmwatch", "",
		"255", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1098094549.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/4197.jpg",
		90, 105,
		"4197", "Buran &quot;Square&quot; ",
		"manual-winding watch", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd368324991.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/4198.jpg",
		90, 97,
		"4198", "Buran &quot;Square&quot; ",
		"manual-winding watch", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-822451738.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/9021hellbraun.jpg",
		90, 37,
		"9021", "Leather band &quot;Saddle-Leather&quot;",
		"wristband", "",
		"12", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1191168608.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/2930.jpg",
		90, 92,
		"2930", "Sturmanskie Chronograph 42mm",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "2",
		"", "pd2058131231.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/5700.jpg",
		90, 95,
		"5700", "Moscow Classic &quot;Submarine Navigator&quot; ",
		"manual winding", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1262638051.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/5701.jpg",
		90, 98,
		"5701", "Moscow Classic &quot;Submarine Navigator&quot; ",
		"manual winding", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1192367324.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/5702.jpg",
		90, 98,
		"5702", "Moscow Classic &quot;Submarine Navigator&quot; ",
		"manual winding", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd355915464.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/5703.jpg",
		90, 95,
		"5703", "Moscow Classic &quot;Submarine Navigator&quot; ",
		"manual winding", "",
		"260", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-705650316.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/0300plexithb.jpg",
		90, 107,
		"0300", "Bordwatch Modell AY C-1M",
		"Bordwatch", "",
		"215", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-490188628.htm",
		"", 1,
		"05D", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/0301.jpg",
		90, 91,
		"0301", "Flightwatch &quot;129 YC&quot;",
		"Flightwatch", "",
		"195", "0",
		"1", 1,
		"Stück", "9",
		"", "pd643845606.htm",
		"", 1,
		"05D", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/0300Halter1.jpg",
		90, 120,
		"0030", "Holder for Bordwatches",
		"", "",
		"20", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1817386855.htm",
		"", 1,
		"05D", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/0300C.jpg",
		90, 82,
		"0300C", "Bordwatch Modell AY 60",
		"Bordwatch", "",
		"155", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-1154516310.htm",
		"", 1,
		"05D", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/0300P.jpg",
		90, 92,
		"0300P", "Bordwatch Modell 127 YC",
		"Bordwatch", "",
		"75", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-2003478784.htm",
		"", 1,
		"05D", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/1405.jpg",
		90, 97,
		"1405", "Sturmanskie “Sputnik”",
		"Manual-winding watch", "",
		"215", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1194885320.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/5014.jpg",
		90, 98,
		"5014", "Aviator &quot;Small Second&quot;",
		"Manual-Winding-Watch", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1195545887.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/5013.jpg",
		90, 96,
		"5013", "Aviator &quot;Small Second&quot;",
		"Manual-Winding-Watch", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1932543391.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/5013.jpg",
		90, 96,
		"5013.", "Aviator &quot;Small Second&quot;",
		"Manual-Winding-Watch", "",
		"245", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1572987283.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/5012Neu.jpg",
		90, 98,
		"5012.", "Aviator &quot;Small Second&quot;",
		"Manual-Winding-Watch", "",
		"245", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1085826251.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/5014.jpg",
		90, 98,
		"5014.", "Aviator &quot;Small Second&quot;",
		"Manual-Winding-Watch", "",
		"245", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1004145721.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/5550.jpg",
		90, 93,
		"5550", "Moscow Classic Sturmovik Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1203315514.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/PutinStahl2.jpg",
		90, 101,
		"3811", "Chronograph &quot;Putin&quot;",
		"Chronograph", "",
		"485", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1205830907.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/5466.jpg",
		90, 94,
		"5466", "Pilot Chronograph &quot;Marina&quot; ",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1602710863.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/5467.jpg",
		90, 94,
		"5467", "Pilot Chronograph &quot;Marina&quot; ",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-472191152.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/5215A.jpg",
		90, 97,
		"5215 A.", "Poljot Automatic &quot;Traveller Watch - luxury&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1746666519.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/3958.jpg",
		90, 108,
		"3958", "Aviator Chronograph &quot;Hi Tech&quot;",
		"Chronograph", "",
		"670", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1670856262.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/3958.jpg",
		90, 108,
		"3958.", "Aviator Chronograph &quot;Hi Tech&quot;",
		"Chronograph", "",
		"670", "0",
		"1", 1,
		"Stück", "0",
		"", "pd104469009.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/5050.jpg",
		90, 122,
		"5050", " Aviator Small Second",
		"Manual-winding watch", "",
		"340", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-902655160.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/5051.jpg",
		90, 126,
		"5051", "            Aviator Small Second",
		"Manual-winding watch", "",
		"340", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-470905534.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/5060.jpg",
		90, 97,
		"5060G", "Chronograph Aviator III  42 mm",
		"Chronograph", "",
		"469", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1215093372.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/5350.jpg",
		90, 97,
		"5350", "          Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1042171290.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/5351.jpg",
		90, 98,
		"5351", " Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1560368850.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/5352.jpg",
		90, 93,
		"5352", " Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1927502602.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/5350.jpg",
		90, 97,
		"5350.", " Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1704604226.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/5351.jpg",
		90, 98,
		"5351.", " Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1150829446.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/5352.jpg",
		90, 93,
		"5352.", " Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "0",
		"", "pd377084338.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/5310A.jpg",
		90, 101,
		"5310A", "Aviator Flightwatch &quot;Automatic&quot;",
		"Automatic watch", "",
		"420", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-529896982.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/5311A.jpg",
		90, 97,
		"5311A", "Aviator Flightwatch &quot;Automatic&quot;",
		"Automatic watch", "",
		"420", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1432039237.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/3800.jpg",
		90, 106,
		"3800", "Buran &quot;Tonneau-Moonphase&quot;",
		"Chronograph", "",
		"590", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1831018786.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/3801.jpg",
		90, 103,
		"3801", "Buran &quot;Tonneau-Moonphase&quot;",
		"Chronograph", "",
		"590", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1453087089.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/5350Rot.jpg",
		90, 130,
		"9010R", "Leather strap - red stitches",
		"Leather strap", "",
		"10", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1221119170.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/2210.jpg",
		90, 98,
		"2210", "Sturmanskie Chronograph Stoppsecond",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "2",
		"", "pd921164191.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/2210.jpg",
		90, 98,
		"2210.", "Sturmanskie Chronograph Stoppsecond",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1257924059.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/9014B.jpg",
		90, 44,
		"9014B", "Leather Strap - Extra thick",
		"Leather Strap - Extra thick", "",
		"18.5", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1222086089.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/1250.jpg",
		90, 103,
		".1250", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1078033103.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/2801.jpg",
		90, 95,
		"2801.", " Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2086861715.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/2801.jpg",
		90, 95,
		".2801", " Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1890482833.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/2902.jpg",
		90, 101,
		"2902.", "Chronograph &quot;Sturmanskie - Civil&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-494169473.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/2902.jpg",
		90, 101,
		".2902", "Chronograph &quot;Sturmanskie - Civil&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "14",
		"", "pd2058625996.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/5427.jpg",
		90, 95,
		"5427.", "&quot;Aviator 43&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1087014699.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/5427.jpg",
		90, 95,
		".5427", "&quot;Aviator 43&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-631826711.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/5350.jpg",
		90, 97,
		".5350", " Aviator 24-hour Watch 45 mm",
		"24-hour Watch", "",
		"175", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1227120002.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/5800.jpg",
		90, 101,
		"5800", "   Moscow Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Diver Watch - manual winding", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1197360618.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/5805.jpg",
		90, 100,
		"5805", "Moscow Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Diver Watch - manual winding", "",
		"255", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-476305948.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/5900.jpg",
		90, 97,
		"5900", "    Moscow Classic Chronograph Sturmovik &quot;Square &amp; Round&quot;",
		"Chronograph", "",
		"435", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1903308959.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/5905.jpg",
		90, 99,
		"5905", "Moscow Classic Chronograph Sturmovik &quot;Square &amp; Round&quot;",
		"Chronograph", "",
		"455", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1323864718.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/5901.jpg",
		90, 98,
		"5901", "    Moscow Classic Chronograph Sturmovik &quot;Square &amp; Round&quot;",
		"Chronograph", "",
		"435", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1197913542.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/5801.jpg",
		90, 93,
		"5801", "Moscow Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Diver Watch - manual winding", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1880319707.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/5802.jpg",
		90, 93,
		"5802", "Moscow Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Diver Watch - manual winding", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd405164750.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/3947G.jpg",
		90, 99,
		"3947G", "Buran Chronograph &quot;Saphir-Moonphase&quot;",
		"chronograph", "",
		"528", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1203065880.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/5530.jpg",
		90, 95,
		"5530", "Moscow Classic &quot;Sturmovik&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1203269946.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/5531.jpg",
		90, 96,
		"5531", "Moscow Classic &quot;Sturmovik&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd460746709.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/5551.jpg",
		90, 95,
		"5551", "Moscow Classic Sturmovik Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd2013489621.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/5552.jpg",
		90, 95,
		"5552", "Moscow Classic Sturmovik Chronograph",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1687545116.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/5112N.jpg",
		90, 99,
		"5112.", "Chronograph Pilot &quot;Berkut New&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1205307611.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/5113neu.jpg",
		90, 98,
		"5113.", "Chronograph Pilot &quot;Berkut-New&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2094182586.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/0412W.jpg",
		90, 98,
		"0412", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1209313447.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/0412W.jpg",
		90, 98,
		"0412.", "Moscow Classic Divers Chronograph ",
		"Diver Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1326692803.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/5428A.jpg",
		90, 96,
		"5428A", "Aviator Automatik 43 mm",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd591789295.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/5429A.jpg",
		90, 98,
		"5429A", "Aviator Automatik 43 mm",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1970377698.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/5308A.jpg",
		90, 100,
		"5308A", "Aviator Automatik",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-150763191.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/5309A.jpg",
		90, 97,
		"5309A", "Aviator Automatik",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd2011119968.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/3802.jpg",
		90, 103,
		"3802", "Buran &quot;Tonneau-Moonphase&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1972069264.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/3803.jpg",
		90, 104,
		"3803", "Buran &quot;Tonneau-Moonphase&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "2",
		"", "pd266774285.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/3804.jpg",
		90, 104,
		"3804", "Buran &quot;Tonneau-Moonphase&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "2",
		"", "pd599502102.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/3800.jpg",
		90, 106,
		"3800.", " Buran &quot;Tonneau-Moonphase&quot;",
		"Chronograph", "",
		"590", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1693619845.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/9011.jpg",
		90, 40,
		"9011", "Leather strap,double stitched",
		"Leather strap", "",
		"10", "0",
		"1", 1,
		"Stück", "11",
		"", "pd554075036.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/9015.jpg",
		90, 38,
		"9019", "Leather Strap - Racing",
		"Leather Strap ", "",
		"11", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1222241030.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/9015B.jpg",
		90, 37,
		"9019B", "Leather Strap - Racing",
		"Leather Strap ", "",
		"11", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1783226204.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/4305.jpg",
		90, 103,
		"4305", "Buran Alarm &quot;Tonneau&quot;",
		"Alarmwatch", "",
		"310", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-197147920.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/4305.jpg",
		90, 103,
		"4305.", "Buran Alarm &quot;Tonneau&quot;",
		"Alarmwatch", "",
		"310", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-32973764.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/0316.jpg",
		90, 91,
		"0316", "Amphibia Divers Watch &quot;XXL&quot; ",
		"Diver Watch", "",
		"315", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1225045290.htm",
		"", 1,
		"5b", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/9104.jpg",
		90, 74,
		".9104", "Leather case for 4 watches",
		"leather case", "",
		"45", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1375475993.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/5112N.jpg",
		90, 99,
		".5112", "Chronograph Pilot &quot;Berkut New&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "14",
		"", "pd776530159.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/5411.jpg",
		90, 102,
		".5411", "Moscow-Classic &quot;Sturmovic&quot;",
		"Manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1543675720.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/5451B.jpg",
		90, 95,
		"5454.", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1234803043.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/2211.jpg",
		90, 92,
		"2211", "Sturmanskie Chronograph  ",
		"Chronograph", "",
		"480", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1767835294.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/5308ABNeu.jpg",
		90, 96,
		"5308AB", "Aviator Automatik",
		"Automatik", "",
		"245", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1818985986.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/5309AB.jpg",
		90, 94,
		"5309AB", "Aviator Automatik",
		"Automatik", "",
		"245", "0",
		"1", 1,
		"Stück", "3",
		"", "pd2141882068.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/2500.jpg",
		90, 94,
		"2500", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik", "",
		"215", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1236194437.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/2501.jpg",
		90, 99,
		"2501", "                                                     Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik", "",
		"205", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-284100232.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/2502.jpg",
		90, 97,
		"2502", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik", "",
		"205", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1595225988.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/2503.jpg",
		90, 100,
		"2503", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1749491136.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/2504.jpg",
		90, 97,
		"2504", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1667683644.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/2500.jpg",
		90, 94,
		"2500.", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik", "",
		"215", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1251064312.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/5438.jpg",
		90, 101,
		"5438", "Moscow Classic &quot;Sturmovik 43 mm&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1236341590.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/5437neu.jpg",
		90, 95,
		"5437", "Moscow Classic &quot;Sturmovik 43 mm&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1336764547.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/5436Neu.jpg",
		90, 93,
		"5436", "Moscow Classic &quot;Sturmovik 43 mm&quot;",
		"Manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-485988944.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/1003.jpg",
		90, 101,
		"1003", "Slava split-time hand stopwatch",
		"Stopwatch", "",
		"125", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1024655820.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/1406.jpg",
		90, 96,
		"1406", "Sturmanskie “Sputnik” 24-hours",
		"24-hour watch", "",
		"185", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-452490514.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/1407.jpg",
		90, 96,
		"1407", "Sturmanskie “Sputnik” 24-hours",
		"24-hour watch", "",
		"185", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-892950716.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/1003.jpg",
		90, 101,
		"1003.", "Slava split-time hand stopwatch",
		"Stopwatch", "",
		"125", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1241534912.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/9010SW.jpg",
		90, 40,
		"9010SW", "Leather strap &quot;RIOS&quot; black",
		"Leather strap", "",
		"19", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1249831416.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/9010HB.jpg",
		90, 38,
		"9010HB", "Leather strap &quot;RIOS&quot; brightbrown",
		"Leather strap", "",
		"19", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-23412506.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/9010DB.jpg",
		90, 37,
		"9010DB", "Leather strap &quot;RIOS&quot; darkbrown",
		"Leather strap", "",
		"19", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1990301308.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/9010RB.jpg",
		90, 43,
		"9010RB", "Leather strap &quot;RIOS&quot; redbrown ",
		"Leather strap", "",
		"19", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1435433810.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/9010HB.jpg",
		90, 38,
		"9010HB.", "Leather strap &quot;RIOS&quot; brightbrown",
		"Leather strap", "",
		"19", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2053462480.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/2905.jpg",
		90, 98,
		"2905", "Sturmanskie Chronograph &quot;44 mm&quot;",
		"Chronograph", "",
		"565", "0",
		"1", 1,
		"Stück", "2",
		"", "pd576918654.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/2905.jpg",
		90, 98,
		"2905.", "Sturmanskie Chronograph &quot;44 mm&quot;",
		"Chronograph", "",
		"565", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1288213598.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/5080.jpg",
		90, 90,
		"5080", "Sturmanskie Chronograph &quot;Special&quot;",
		"Chronograph", "",
		"525", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-959618170.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/5080.jpg",
		90, 90,
		"5080.", "Sturmanskie Chronograph &quot;Special&quot;",
		"Chronograph", "",
		"525", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1455554602.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/1350.jpg",
		90, 100,
		"1350", "Sturmanskie  Chronograph &quot; Strela 44 mm&quot;",
		"Chronograph", "",
		"575", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1835203186.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/6020.jpg",
		90, 92,
		"6020", "Poljot International Tonneau Chronograph ",
		"Chronograph", "",
		"235", "0",
		"1", 1,
		"Stück", "2",
		"", "pd634591894.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/6020.jpg",
		90, 92,
		"6020.", "Poljot International Tonneau Chronograph ",
		"Chronograph", "",
		"235", "0",
		"1", 1,
		"Stück", "0",
		"", "pd446848845.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/6010.jpg",
		90, 98,
		"6010", "                                                                   Poljot International Chronograph ",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1250022232.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/6011.jpg",
		90, 100,
		"6011", "Poljot International Chronograph ",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-2057979481.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/6010.jpg",
		90, 98,
		"6010.", "Poljot International Chronograph ",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1358041401.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/6011.jpg",
		90, 100,
		"6011.", "Poljot International Chronograph ",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd717512220.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/5451B.jpg",
		90, 95,
		".5454", " Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1253305609.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/1351neu.jpg",
		90, 96,
		"1351", "Sturmanskie  Chronograph &quot; Strela 44 mm&quot;",
		"Chronograph", "",
		"575", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1255446289.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/1252B.jpg",
		90, 103,
		"1252B", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1760027633.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/1252B.jpg",
		90, 103,
		"1252B.", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd379008938.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/5460.jpg",
		90, 91,
		"5460.", "Aeronavigator Chronograph",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1258705361.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/5503.jpg",
		90, 113,
		"5503.", "Poljot Automatic ETA",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-809957526.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/5504.jpg",
		90, 110,
		"5504.", "Poljot Automatic ETA",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1744303712.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/5506.jpg",
		90, 109,
		"5506.", "Poljot Automatic",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd964928134.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/0302.jpg",
		90, 92,
		"0302.", "Wostok Ship´s clock &quot;5-CHM&quot;",
		"", "",
		"235", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1259411164.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/0302.jpg",
		90, 92,
		".0302", "Wostok Ship´s clock &quot;5-CHM&quot;",
		"", "",
		"235", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1260545771.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/6010.jpg",
		90, 98,
		".6010", "Poljot International Chronograph ",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1562297132.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/1252B.jpg",
		90, 103,
		".1252B", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1611582398.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/5503.jpg",
		90, 113,
		".5503", "Poljot Automatic ETA",
		"Automatic watch", "",
		"295", "0",
		"1", 1,
		"Stück", "14",
		"", "pd493527045.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/5452.jpg",
		90, 97,
		".5452.", "Moscow Classic &quot;Amphibia&quot; ",
		"Diver Watch - manual winding", "",
		"185", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1789073005.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/2301taucher.jpg",
		90, 106,
		"2301A", "                                                                 Wostok Amphibia Automatic &quot;Diver&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1263547086.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/2301Fallschirm.jpg",
		90, 106,
		"2301B", "Wostok Amphibia Automatic &quot;Parachute&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd2129926031.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/2301uboot.jpg",
		90, 111,
		"2301C", "Wostok Amphibia Automatic &quot;submarine&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd630221212.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/2301panzer.jpg",
		90, 96,
		"2301D", "Wostok Amphibia Automatic &quot;Tank&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-656618619.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/2301KGBgruen.jpg",
		90, 104,
		"2301E", "Wostok Amphibia Automatic &quot;KGB green&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1463247514.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/2301KGBsilber.jpg",
		90, 99,
		"2301F", "Wostok Amphibia Automatic &quot;KGB silver&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-264329237.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/2301kgbschwarz.jpg",
		90, 99,
		"2301G", "Wostok Amphibia Automatic &quot;KGB black&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-1411824312.htm",
		"", 1,
		"05C", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/2301taucher.jpg",
		90, 106,
		"2301A.", "Wostok Amphibia Automatic &quot;Diver&quot;",
		"Automatic watch", "",
		"88", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1635283391.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/5104W.jpg",
		90, 106,
		".5104", " Aviator Flightwatch “Classic”",
		"Manual-winding watch", "",
		"145", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1264855229.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/8501.jpg",
		90, 129,
		"8501", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"159", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1232515063.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/8502.jpg",
		90, 133,
		"8502", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"159", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1157316174.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/8502B.jpg",
		90, 133,
		"8502B", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"189", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-572948215.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/8600.jpg",
		90, 102,
		"8600", "                                      CCCP-Watch &quot;1966&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1025549780.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/8601.jpg",
		90, 98,
		"8601", "CCCP-Watch &quot;1966&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "7",
		"", "pd2035178763.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/8602.jpg",
		90, 101,
		"8602", "CCCP-Watch &quot;1966&quot;",
		"automatic watch", "",
		"235", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1699428266.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/8605.jpg",
		90, 98,
		"8605", "CCCP-Watch &quot;1924&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1791324285.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/8500.jpg",
		90, 125,
		"8500", "                                                                    CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"159", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1569826622.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/8500.jpg",
		90, 125,
		"8500.", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"159", "0",
		"1", 1,
		"Stück", "0",
		"", "pd676050112.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/8501.jpg",
		90, 129,
		"8501.", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"159", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1336287023.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/8502.jpg",
		90, 133,
		"8502.", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"159", "0",
		"1", 1,
		"Stück", "0",
		"", "pd260479306.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/8502B.jpg",
		90, 133,
		"8502B.", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"189", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1470646401.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/8600.jpg",
		90, 102,
		"8600.", "CCCP-Watch &quot;1966&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2075635460.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/8601.jpg",
		90, 98,
		"8601.", "CCCP-Watch &quot;1966&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1408324925.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/8602.jpg",
		90, 101,
		"8602.", "CCCP-Watch &quot;1966&quot;",
		"automatic watch", "",
		"235", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1198481518.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/8605.jpg",
		90, 98,
		"8605.", "CCCP-Watch &quot;1924&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-422280587.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/5528.jpg",
		90, 98,
		"5528", "Aviator Alarm 43 mm",
		"Manual winding", "",
		"235", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1267272699.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/5526.jpg",
		90, 97,
		"5526", "Aviator Alarm 43 mm",
		"Manual winding", "",
		"235", "0",
		"1", 1,
		"Stück", "5",
		"", "pd280651733.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/5528.jpg",
		90, 98,
		"5528.", "Aviator Alarm 43 mm",
		"Manual winding", "",
		"235", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1665373215.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/5468.jpg",
		90, 95,
		"5468", "Aeronavigator Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1268841964.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/5469.jpg",
		90, 95,
		"5469", "Aeronavigator Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "2",
		"", "pd957327966.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/5468.jpg",
		90, 95,
		"5468.", "Aeronavigator Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-868686464.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/5469.jpg",
		90, 95,
		"5469.", "Aeronavigator Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1227132974.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/9052uhren2.jpg",
		90, 79,
		"9052", "Watchwinder &quot;Cool Carbon Expert&quot; for 2 watches",
		"Watchwinder", "",
		"239", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1268900014.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/8700.jpg",
		90, 101,
		"8700", "CCCP-Watch &quot;1990&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1271254769.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/8701.jpg",
		90, 105,
		"8701", "CCCP-Watch &quot;1990&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "7",
		"", "pd562505268.htm",
		"", 1,
		"05A", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/8700.jpg",
		90, 101,
		"8700.", "CCCP-Watch &quot;1990&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1985240653.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/8701.jpg",
		90, 105,
		"8701.", "CCCP-Watch &quot;1990&quot;",
		"automatic watch", "",
		"210", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1778094622.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/1254B.jpg",
		90, 102,
		"1254B", "Chronograph &quot;Strela 24-hour&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1272897669.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/1254B.jpg",
		90, 102,
		"1254B.", "Chronograph &quot;Strela 24-hour&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-860479162.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/1570.jpg",
		90, 99,
		"1570", "Pilot Chronograph MIG-15",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1272954224.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/1571.jpg",
		90, 100,
		"1571", "Pilot Chronograph MIG-15",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1567254082.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/1570.jpg",
		90, 99,
		"1570.", "Pilot Chronograph MIG-15",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1993344708.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/1571.jpg",
		90, 100,
		"1571.", "Pilot Chronograph MIG-15",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-2106902666.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/5075.jpg",
		90, 102,
		"5075", "Aviator Chronograph AXIOM",
		"Chronograph", "",
		"750", "0",
		"1", 1,
		"Stück", "2",
		"", "pd497409240.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/5075.jpg",
		90, 102,
		"5075.", "Aviator Chronograph AXIOM",
		"Chronograph", "",
		"750", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1040169110.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/5360.jpg",
		90, 102,
		"5360", "Moscow Classic Svesda P-2 Automatic",
		"Automatic", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1273594511.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/5361.jpg",
		90, 98,
		"5361", "Moscow Classic Svesda P-2 Automatic",
		"Automatic", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-927837964.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/5362.jpg",
		90, 96,
		"5362", "Moscow Classic Svesda P-2 Automatic",
		"Automatic", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-775570827.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/5363.jpg",
		90, 99,
		"5363", "Moscow Classic Svesda P-2 Automatic",
		"Automatic", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1310849822.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/5364.jpg",
		90, 101,
		"5364", "Moscow Classic Svesda P-2 Automatic",
		"Automatic", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd170144203.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/5481.jpg",
		90, 96,
		"5481.", "Amphibia Automatic",
		"Automatic", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1884974208.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/5364.jpg",
		90, 101,
		"5364.", "Moscow Classic Svesda P-2 Automatic",
		"Automatic", "",
		"200", "0",
		"1", 1,
		"Stück", "0",
		"", "pd263952672.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/1350.jpg",
		90, 100,
		"1350.", "Sturmanskie  Chronograph &quot; Strela 44 mm&quot;",
		"Chronograph", "",
		"575", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-314115807.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/1351neu.jpg",
		90, 96,
		"1351.", "Sturmanskie  Chronograph &quot; Strela 44 mm&quot;",
		"Chronograph", "",
		"575", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1821810255.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/6010.jpg",
		90, 98,
		"S6010", "Poljot International Chronograph ",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "1",
		"", "pd126015328.htm",
		"", 1,
		"00001B", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/6020.jpg",
		90, 92,
		"S6020", "Poljot International Tonneau Chronograph ",
		"Chronograph", "",
		"185", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1392099605.htm",
		"", 1,
		"00001B", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/5309AB.jpg",
		90, 94,
		"S5309AB", "Aviator Automatik",
		"Automatik", "",
		"215", "0",
		"1", 1,
		"Stück", "1",
		"", "pd436987715.htm",
		"", 1,
		"00001B", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/8502B.jpg",
		90, 133,
		"S8502B", "CCCP-Watch &quot;1985&quot;",
		"manual-winding watch", "",
		"145", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1183000732.htm",
		"", 1,
		"00001B", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/5105AN.jpg",
		90, 97,
		"5105A", "Poljot Flightwatch &quot;Aviator Automatic 40 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1803113827.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/4195ABN.jpg",
		90, 98,
		"4195A", "Poljot Flightwatch &quot;Aviator Automatic 40 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-2055099993.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/5104AN.jpg",
		90, 101,
		"5104A.", "Poljot Flightwatch &quot;Aviator Automatic 40 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1350163039.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/5105AN.jpg",
		90, 97,
		"5105A.", "Poljot Flightwatch &quot;Aviator Automatic 40 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd969258251.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/4195ABN.jpg",
		90, 98,
		"4195A.", "Poljot Flightwatch &quot;Aviator Automatic 40 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1826289051.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/5104AGN.jpg",
		90, 100,
		"5104AG", "Poljot Flightwatch &quot;Aviator Automatic 43 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1276886921.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/5104AGN.jpg",
		90, 100,
		"5104AG.", "Poljot Flightwatch &quot;Aviator Automatic 43 mm&quot;",
		"Automatic watch", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd108235955.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/5483.jpg",
		90, 94,
		"5483", "Moscow Classic &quot;Automatik 45mm&quot;",
		"Automatic", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1552127539.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/5484.jpg",
		90, 96,
		"5484", "Moscow Classic &quot;Automatik 45mm&quot;",
		"Automatic", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1680668084.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/5485.jpg",
		90, 97,
		"5485", "Moscow Classic &quot;Automatik 45mm&quot;",
		"Automatic", "",
		"265", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-168310681.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/5483.jpg",
		90, 94,
		"5483.", "Moscow Classic &quot;Automatik 45mm&quot;",
		"Automatic", "",
		"255", "0",
		"1", 1,
		"Stück", "0",
		"", "pd92562702.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/5484.jpg",
		90, 96,
		"5484.", "Moscow Classic &quot;Automatik 45mm&quot;",
		"Automatic", "",
		"255", "0",
		"1", 1,
		"Stück", "0",
		"", "pd512540401.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/5485.jpg",
		90, 97,
		"5485.", "Moscow Classic &quot;Automatik 45mm&quot;",
		"Automatic", "",
		"265", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-2046463616.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/5320neu2.jpg",
		90, 96,
		"5320.", " Aviator 24-hour Watch",
		"24-hour Watch", "",
		"195", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1101460179.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/1402.jpg",
		90, 103,
		"1402.", "&quot;Sturmanskie Gagarin&quot;",
		"manual winding", "",
		"135", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1282203376.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/1403.jpg",
		90, 100,
		"1403.", "&quot;Sturmanskie Gagarin&quot;",
		"manual winding", "",
		"135", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1773782303.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/1254neu.jpg",
		90, 102,
		".1254", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1282296367.htm",
		"", 1,
		"82", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/1254neu.jpg",
		90, 102,
		"1254.", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd134014856.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/1250.jpg",
		90, 103,
		"1250.", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1628786077.htm",
		"", 1,
		"00001", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/1251.jpg",
		90, 102,
		"1251.", "Chronograph &quot;Strela&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1185580286.htm",
		"", 1,
		"00001", "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();
			};
		};