	// 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/warenkorb.jpg" width="152" height="29" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Preis vorher:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Jetzt nur noch:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/1001N.jpg",
		90, 108,
		"1001", "MOLNIJA Eisenbahneruhr mit Kette",
		"Taschenuhr", "",
		"95", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1022690463.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/2277besser.jpg",
		90, 102,
		"2277", "Poljot Chronograph &quot;Albatros&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-306708160.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/2278.jpg",
		90, 99,
		"2278", "Poljot Chronograph &quot;Ruslan&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd712489025.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/2378.jpg",
		90, 92,
		"2378", "Poljot Chronograph &quot;RUSLAN Day &amp; Night&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1796029527.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/2379.jpg",
		90, 98,
		"2379", "Poljot Chronograph &quot;RUSLAN Day &amp; Night&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1481229644.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/2478.jpg",
		90, 92,
		"2478", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1556482467.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/2901.jpg",
		90, 94,
		"2901", "Chronograph &quot;Sturmanskie&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1254612058.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/2902.jpg",
		90, 101,
		"2902", "                                           Poljot Chronograph &quot;Sturmanskie - Zivil&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1986357293.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/5008.jpg",
		90, 100,
		"5008", "Poljot Chronograph &quot;Lunar&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1708819364.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/5104W.jpg",
		90, 106,
		"5104", "Aviator Fliegeruhr Klassik",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-290554923.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/5106besser.jpg",
		90, 101,
		"5106", "Poljot Wecker “Amphibia”",
		"Wecker", "",
		"165", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-7842320.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/5108MG.jpg",
		90, 106,
		"5108MG", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd875346737.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/5176.jpg",
		90, 93,
		"5176", "Chronograph &quot;Jetfighter&quot;",
		"Chronograph", "",
		"245", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-213193314.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/5177S.jpg",
		90, 82,
		"5177", " Chronograph &quot;Jetfighter - 24Std.&quot;",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-416827193.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/5215.jpg",
		90, 103,
		"5215", "    Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-524401412.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/5503.jpg",
		90, 113,
		"5503", "Poljot Automatik",
		"Automatik Uhr", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-965965747.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/5504.jpg",
		90, 110,
		"5504", "Poljot Automatik",
		"Automatik Uhr", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1523137347.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/5506.jpg",
		90, 109,
		"5506", "Poljot Automatik",
		"Automatik Uhr", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1330659113.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/FSmatt.jpg",
		90, 78,
		"9020", "Lederarmband mit Faltschliesse",
		"Armband", "",
		"18", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1383594949.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/9900.jpg",
		90, 116,
		"9900", "Metallband matt/gebürstet",
		"Edelstahlband", "",
		"45", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1634581966.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/2476.jpg",
		90, 93,
		"2476", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1397576679.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/2479besser.jpg",
		90, 103,
		"2479", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd726054502.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/2677.jpg",
		90, 91,
		"2677", "Chronograph &quot; 2677 &quot;",
		"Chronograph", "",
		"210", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1053668335.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/3261N.jpg",
		90, 94,
		"3261N", "Poljot Chronograph &quot;Luftwaffe&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1729186002.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/5103neu.jpg",
		90, 98,
		"5103", "Poljot Wecker “Aviator”",
		"Wecker", "",
		"245", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1665249883.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/5215A.jpg",
		90, 97,
		"5215 A", "Poljot Automatik &quot;Traveller Watch - edel&quot;",
		"Automatik Uhr", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1498822970.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/3907.jpg",
		90, 105,
		"3907", "Buran Chronograph &quot;Saphir-Mondphase&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1027008063.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/3909.jpg",
		90, 99,
		"3909", "Chronograph &quot;Mondphase&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1029316059.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/3208B.jpg",
		90, 97,
		"3208B", "Chronograph &quot;SS-20&quot;",
		"Chronograph", "",
		"510", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1137119832.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/1003.jpg",
		90, 101,
		"1003", "                           Slawa Schleppzeiger-Stoppuhr",
		"Stoppuhr", "",
		"125", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1024655820.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/3002Etui.jpg",
		90, 102,
		"3002", "                                                     Poljot Beobachtungsuhr",
		"Beobachtungsuhr", "",
		"895", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1024657878.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/9903.jpg",
		90, 99,
		"9903", "Metallband poliert",
		"Metallband", "",
		"45", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-671953269.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/5012Neu.jpg",
		90, 98,
		"5012", "Aviator &quot;Kleine Sekunde&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1039603539.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/2904B.jpg",
		90, 100,
		"2904B", "Traveller Chronograph 24-Stunden",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd475256385.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/2201II.jpg",
		90, 98,
		"2201", "Chronograph &quot;Klassik&quot;",
		"Chronograph", "",
		"225", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-216918009.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/2930.jpg",
		90, 92,
		"2930", "Sturmanskie Chronograph 42 mm  ",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd891411618.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/4380.jpg",
		90, 111,
		"4380", "Poljot &quot;Aero-Club&quot; ",
		"Handaufzugsuhr ", "",
		"115", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1624963766.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/4381.jpg",
		90, 116,
		"4381", "Poljot &quot;Aero-Club&quot;",
		"Handaufzugsuhr", "",
		"115", "0",
		"1", 1,
		"Stück", "4",
		"", "pd983948794.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/4382.jpg",
		90, 114,
		"4382", "Poljot &quot;Aero-Club&quot;",
		"Handaufzugsuhr", "",
		"115", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-732772866.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/4383.jpg",
		90, 111,
		"4383", "Poljot &quot;Aero Club&quot;",
		"Handaufzugsuhr", "",
		"115", "0",
		"1", 1,
		"Stück", "4",
		"", "pd842405570.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/5002.jpg",
		90, 102,
		"5002-3D", "Chronograph Aviator II 3-D",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "17",
		"", "pd765266782.htm",
		"", 1,
		"9F", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/5302.jpg",
		90, 98,
		"5302-3D", "&quot;Classic&quot; 3-D",
		"Handaufzugsuhr", "",
		"150", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1076394930.htm",
		"", 1,
		"9F", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/5505.jpg",
		90, 109,
		"5505-3D", "Poljot Automatik 3-D",
		"Automatik Uhr", "",
		"285", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1247686800.htm",
		"", 1,
		"9F", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/2476.jpg",
		90, 93,
		"2476-3D", "Poljot Chronograph &quot;Blue Angels&quot; 3-D",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "17",
		"", "pd234760101.htm",
		"", 1,
		"9F", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/4190G.jpg",
		90, 92,
		"4191", "Fliegeruhr &quot;Buran&quot;",
		"Handaufzugsuhr", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1618373011.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Bandschwarz.jpg",
		90, 43,
		"9010", "Lederband",
		"Lederband", "",
		"10", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1048602609.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/9014.jpg",
		90, 42,
		"9014", "Lederband extra dick",
		"Lederband", "",
		"18.5", "0",
		"1", 1,
		"Stück", "13",
		"", "pd108934023.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/Bandschwarzlang.jpg",
		90, 38,
		"9016", "Lederband überlang",
		"Lederband überlang", "",
		"10", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-637894387.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/3904.jpg",
		90, 108,
		"3904", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph &quot;Tonneau-Mondphase&quot;", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd535688098.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/5251.jpg",
		90, 97,
		"5251", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1419211519.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/5252.jpg",
		90, 98,
		"5252", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd979925807.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/5253.jpg",
		90, 94,
		"5253", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd529588063.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/3908B.jpg",
		90, 103,
		"3908B", "Buran Chronograph &quot;Saphir-Mondphase&quot; ",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1571276329.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/5261.jpg",
		90, 104,
		"5261", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1009688010.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/5262.jpg",
		90, 105,
		"5262", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1972262826.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/5263.jpg",
		90, 107,
		"5263", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-674274910.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/5264.jpg",
		90, 104,
		"5264", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1477200156.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/3505.jpg",
		90, 129,
		"3505", "Kirowa Chronograph &quot;Retro&quot;",
		"Chronograph", "",
		"380", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1174493151.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/3506.jpg",
		90, 129,
		"3506", "Kirowa Chronograph &quot;Retro&quot;",
		"Chronograph", "",
		"380", "0",
		"1", 1,
		"Stück", "1",
		"", "pd85012279.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/3500.jpg",
		90, 138,
		"3500", "Chronograph &quot;Wright Brothers&quot;",
		"Chronograph", "",
		"595", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1257816866.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/3401.jpg",
		90, 98,
		"3401", "Chronograph Buran &quot;Saphir&quot;",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-333348904.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/3400.jpg",
		90, 101,
		"3400", "Chronograph Buran &quot;Saphir-Mond&quot;",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-805647930.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/2903B.jpg",
		90, 102,
		"2903B", "Traveller Chronograph blau, 24-Stunden ",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1810515967.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/5060.jpg",
		90, 97,
		"5060", "Chronograph Aviator III  ",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1551865732.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/5062aviator4.jpg",
		90, 101,
		"5062", "  Chronograph Aviator IV Saphir",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1106047382.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/5063Saphir.jpg",
		90, 98,
		"5063", "Chronograph Aviator IV Saphir",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1986364261.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/5420.jpg",
		90, 102,
		"5420", "Buran &quot;Sibirien&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1696611738.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/5422.jpg",
		90, 99,
		"5422", "Buran &quot;Sibirien&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-206816651.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/5423.jpg",
		90, 103,
		"5423", "Buran &quot;Sibirien&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd303317211.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/5424.jpg",
		90, 100,
		"5424", "Buran &quot;Sibirien&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-21424847.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/5425.jpg",
		90, 103,
		"5425", "Buran &quot;Sibirien&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-2113334025.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/4300.jpg",
		90, 109,
		"4300", "Poljot Wecker “Tonneau”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1805462121.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/5427.jpg",
		90, 95,
		"5427", "Aviator 43mm",
		"Handaufzugsuhr", "",
		"220", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1902881242.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/5429.jpg",
		90, 95,
		"5429", "Aviator 43mm",
		"Handaufzugsuhr", "",
		"220", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1138688196.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/5428.jpg",
		90, 96,
		"5428", "Aviator 43mm",
		"Handaufzugsuhr", "",
		"220", "0",
		"1", 1,
		"Stück", "4",
		"", "pd802496129.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/5320neu.jpg",
		90, 96,
		"5320", "                                                             Aviator 24-Stundenuhr",
		"24-Stundenuhr", "",
		"225", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1081171909.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/2800II.jpg",
		90, 97,
		"2800", "Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1082016552.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/2801.jpg",
		90, 95,
		"2801", "                                               Poljot Chronograph &quot;Journey&quot; ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1036352532.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/2802.jpg",
		90, 100,
		"2802", "Poljot Chronograph &quot;Journey&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1914139353.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/1250Strela.jpg",
		90, 105,
		"1250", "                                  Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1241554981.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/1252.jpg",
		90, 105,
		"1252", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd938489632.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/1251.jpg",
		90, 102,
		"1251", "           Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-51102109.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/5450.jpg",
		90, 97,
		"5450", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"185", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1134830286.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/5452.jpg",
		90, 97,
		"5452", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"185", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-1105045642.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/2771.jpg",
		90, 101,
		"2771", "Chronograph &quot;Night Hunter&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2074931537.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/2773.jpg",
		90, 101,
		"2773", "Chronograph &quot;Night Hunter&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1296589721.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/2774.jpg",
		90, 97,
		"2774", "Chronograph &quot;Night Hunter&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd781161821.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/1550.jpg",
		90, 98,
		"1550", "Chronograph Spitfire",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1142022967.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/5110.jpg",
		90, 96,
		"5110", " Chronograph Pilot &quot;Berkut&quot; ",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1142709527.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/5111.jpg",
		90, 98,
		"5111", "Chronograph Pilot &quot;Berkut&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-771739487.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/5112N.jpg",
		90, 99,
		"5112", "Chronograph Pilot &quot;Berkut&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2136927113.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/5113neu.jpg",
		90, 98,
		"5113", "                                           Chronograph Pilot &quot;Berkut-Neu&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1147012933.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/0410.jpg",
		90, 91,
		"0410", "Moscow Classic Taucher-Chronograph",
		"Taucheruhr ", "",
		"325", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-2130903352.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/0412W.jpg",
		90, 98,
		"0412", "Moscow Classic Taucher-Chronograph",
		"Taucheruhr ", "",
		"325", "0",
		"1", 1,
		"Stück", "8",
		"", "pd858068249.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/0410.jpg",
		90, 91,
		".0410", "Moscow Classic Taucher-Chronograph",
		"Taucheruhr ", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1147017896.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/0412W.jpg",
		90, 98,
		".0412", "Moscow Classic Taucher-Chronograph",
		"Taucheruhr ", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd340197266.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/5450.jpg",
		90, 97,
		".5450", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1039627692.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/5452.jpg",
		90, 97,
		".5452", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-611362156.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/9071.jpg",
		90, 77,
		"9071", " Uhren-Truhe für 54 Armbanduhren",
		"Uhren-Truhe", "",
		"195", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1147163418.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/9072.jpg",
		90, 53,
		"9072", " Uhren-Truhe für 48 Armbanduhren",
		"Uhren-Truhe", "",
		"195", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1295291385.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/3945.jpg",
		90, 107,
		"3945", "Chronograph Buran &quot;Saphir-Automatik-Mond&quot;",
		"Automatik-Chronograph", "",
		"1395", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1152804756.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/5455.jpg",
		90, 95,
		"5455", "Moskau Classic &quot;Amphibia-Chronograph&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1155531624.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/5457.jpg",
		90, 95,
		"5457", "Moskau Classic &quot;Amphibia-Chronograph&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1635004178.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/5459.jpg",
		90, 97,
		"5459", "Moskau Classic &quot;Amphibia-Chronograph&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "1",
		"", "pd520267522.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/2960.jpg",
		90, 96,
		"2960", "Chronograph &quot;Sturmovik&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1158323680.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/2961.jpg",
		90, 96,
		"2961", "Chronograph &quot;Sturmovik&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2024669696.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/2962.jpg",
		90, 103,
		"2962", "Chronograph &quot;Sturmovik&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2056916512.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/5453.jpg",
		90, 94,
		"5453", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"195", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-271485786.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/5453.jpg",
		90, 94,
		".5453", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd946407566.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/2970.jpg",
		90, 95,
		"2970", "Chronograph &quot;Korsair&quot; ",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1159370995.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/2971.jpg",
		90, 94,
		"2971", "Chronograph &quot;Korsair&quot; ",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1514758547.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/2972.jpg",
		90, 97,
		"2972", "Chronograph &quot;Korsair&quot; ",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1727502899.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/2974.jpg",
		90, 97,
		"2974", "Chronograph &quot;Korsair&quot; ",
		"Chronograph", "",
		"305", "0",
		"1", 1,
		"Stück", "1",
		"", "pd3273749.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/2975.jpg",
		90, 97,
		"2975", "Chronograph &quot;Korsair&quot; ",
		"Chronograph", "",
		"305", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2108885067.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/5460.jpg",
		90, 91,
		"5460", "Chronograph Aeronavigator",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1162913281.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/5461.jpg",
		90, 92,
		"5461", "Chronograph Aeronavigator",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd133708705.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/5462.jpg",
		90, 91,
		"5462", "Chronograph Aeronavigator",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1745273153.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/5463.jpg",
		90, 93,
		"5463", "Chronograph Aeronavigator",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1671706337.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/5464.jpg",
		90, 92,
		"5464", "Chronograph Aeronavigator",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-721904511.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/1250K.jpg",
		90, 107,
		"1250K", "Chronograph Strela &quot;Kirowa&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1164306565.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/regulieren1.jpg",
		90, 94,
		"0000000", "Endkontrolle &amp; Regulage der Uhren",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1568821631.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/9104.jpg",
		90, 74,
		"9104", "Lederetui für 4 Armbanduhren",
		"Lederetui", "",
		"45", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-249328650.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/9108.jpg",
		90, 54,
		"9108", "Lederetui für 8 Armbanduhren",
		"Lederetui", "",
		"70", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1854084962.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/9112.jpg",
		90, 75,
		"9112", "Lederetui für 12 Armbanduhren",
		"Lederetui", "",
		"80", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-1934289824.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/9116.jpg",
		90, 89,
		"9116", "Lederetui für 16 Armbanduhren",
		"Lederetui", "",
		"90", "0",
		"1", 1,
		"Stück", "15",
		"", "pd-1197370994.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/9910.jpg",
		90, 125,
		"9910", "Metallband für Amphibia ",
		"Edelstahl", "",
		"65", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1299488297.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/5105.jpg",
		90, 95,
		"5105", "Aviator Fliegeruhr Klassik",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-325514700.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/5529.jpg",
		90, 99,
		"5529", "Aviator Wecker 43 mm",
		"Wecker", "",
		"235", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-557438141.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/9021hellbraun.jpg",
		90, 37,
		"9021", "Lederarmband aus Sattelleder",
		"Armband", "",
		"12", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1191166525.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/5700.jpg",
		90, 95,
		"5700", "Moskau Classic &quot;U-Boot Navigator&quot; ",
		"Handaufzugsuhr", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-636327464.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/5701.jpg",
		90, 98,
		"5701", "Moskau Classic &quot;U-Boot Navigator&quot; ",
		"Handaufzugsuhr", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd800329554.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/5551.jpg",
		90, 95,
		"5551", "Moskau Classic &quot;Sturmovik&quot; Chronograph",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd961788115.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/5466.jpg",
		90, 94,
		"5466", "Pilot Chronograph &quot;Marina&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd673487517.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/5467.jpg",
		90, 94,
		"5467", "      Pilot Chronograph &quot;Marina&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-242226251.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/5050.jpg",
		90, 122,
		"5050", "Aviator Kleine Sekunde",
		"Handaufzugsuhr", "",
		"340", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1211522283.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/5051.jpg",
		90, 126,
		"5051", "  Aviator Kleine Sekunde",
		"Handaufzugsuhr", "",
		"340", "0",
		"1", 1,
		"Stück", "4",
		"", "pd720120515.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/1253.jpg",
		90, 111,
		"1253", "Chronograph &quot;Buran&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1088574801.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/3263.jpg",
		90, 97,
		"3263", "Chronograph &quot;Luftwaffe-24Std.&quot;",
		"Chronograph", "",
		"355", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1091644437.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/1254NN.jpg",
		90, 103,
		"1254", "                                                                                  Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd145147931.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/3816GUT.jpg",
		90, 98,
		"3810", "Chronograph &quot;Putin&quot;",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1764069895.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Canada 2004 (95).jpg",
		90, 134,
		"0000", "&quot;Lisa&quot; ( unverkäuflich )",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd903313899.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/3908C.jpg",
		90, 103,
		"3908C", "Buran Chronograph &quot;Saphir-Mondphase&quot; ",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2015706033.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/5002N.jpg",
		90, 95,
		"5002N", "    Chronograph Aviator II Saphir",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1097408563.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/0302.jpg",
		90, 92,
		"0302", "                                                                           Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-1671619308.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/1401.jpg",
		90, 99,
		"1401", "Raketa &quot;Blindenuhr&quot;",
		"Handaufzugsuhr", "",
		"55", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1176941603.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/1002WS.jpg",
		90, 111,
		"1002", "Agat Stoppuhr",
		"Stoppuhr", "",
		"55", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1100006253.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/9908.jpg",
		90, 186,
		"9908", "Metallband rotgold",
		"Edelstahlband", "",
		"45", "0",
		"1", 1,
		"Stück", "13",
		"", "pd237014939.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/9011.jpg",
		90, 40,
		"9011", "Lederband, doppelt genäht",
		"Lederband", "",
		"12", "0",
		"1", 1,
		"Stück", "13",
		"", "pd964037441.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/0100ANeu.jpg",
		90, 98,
		"0100A", "Glasboden - polierte Edelstahlfassung",
		"Glasboden", "",
		"30", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1023119531.htm",
		"", 1,
		"9C", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/0100B.jpg",
		90, 96,
		"0100B", "Glasboden - mattierte Edelstahlfassung",
		"Glasboden", "",
		"30", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1023119924.htm",
		"", 1,
		"9C", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/4290.jpg",
		90, 104,
		"4290", "Buran Mondphase",
		"Handaufzugsuhr", "",
		"305", "0",
		"1", 1,
		"Stück", "4",
		"", "pd516124889.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/9018.jpg",
		90, 169,
		"9018", "Nato Textilband",
		"Lederband", "",
		"12", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-487388143.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/polarbavaria.jpg",
		90, 87,
		"2570", "Chronograph &quot;Polar&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-161182053.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/2572.jpg",
		90, 104,
		"2572", "Chronograph &quot;Polar&quot;",
		"Chronograph", "",
		"175", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-806340289.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/9066.jpg",
		90, 68,
		"9066", " Uhren-Truhe für 18 Armbanduhren",
		"Uhren-Truhe", "",
		"115", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1107248463.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/5430.jpg",
		90, 94,
		"5430", "&quot;Aeronavigator&quot;",
		"Handaufzugsuhr", "",
		"175", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1112983404.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/Logo PI_2011.jpg",
		90, 52,
		"0Info", "Poljot-International Geschichte &amp; Hintergrund",
		"Poljot-International", "",
		"0", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-725889046.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/4112.jpg",
		90, 97,
		"4112", "Chronograph &quot;Kirowa&quot;",
		"Chronograph", "",
		"260", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1314113174.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/4113.jpg",
		90, 98,
		"4113", "Chronograph &quot;Kirowa&quot;",
		"Chronograph", "",
		"260", "0",
		"1", 1,
		"Stück", "1",
		"", "pd61385212.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/3003II.jpg",
		90, 127,
		"3003", "Poljot Marinechronometer",
		"Marinechronometer", "",
		"2400", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1033747017.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/0310.jpg",
		90, 89,
		"0310", "Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"275", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1117813088.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/0311.jpg",
		90, 81,
		"0311", "Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"275", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-1868789298.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/0312.jpg",
		90, 88,
		"0312", "Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"275", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-154074267.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/0313.jpg",
		90, 95,
		"0313", "Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"275", "0",
		"1", 1,
		"Stück", "8",
		"", "pd745697544.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/0314.jpg",
		90, 95,
		"0314", "Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"295", "0",
		"1", 1,
		"Stück", "8",
		"", "pd53569703.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/0315.jpg",
		90, 93,
		"0315", "Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"295", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-1463461134.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/5442.jpg",
		90, 101,
		"5442", "Moscow-Classic",
		"Handaufzugsuhr", "",
		"150", "0",
		"1", 1,
		"Stück", "4",
		"", "pd49369788.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/9909neu1.jpg",
		90, 119,
		"9909", "Metallband für Strela Chronographen",
		"Edelstahl", "",
		"45", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1126436794.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/3405G.jpg",
		90, 100,
		"3405G", "Chronograph Buran &quot;Saphir-Mond&quot;",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1129815690.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/2901G.jpg",
		90, 95,
		"2901G", "Chronograph &quot;Sturmanskie 42mm&quot;",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2031501967.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/8801.jpg",
		90, 102,
		"8801", "CCCP-Watch Handaufzug &quot;1968&quot;",
		"Handaufzug", "",
		"180", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-709583788.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/1250B24.jpg",
		90, 101,
		"1250B", "Chronograph STRELA 24-Std.",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "1",
		"", "pd204542728.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/5107N.jpg",
		90, 99,
		"5107", "Poljot Wecker “Aviator”",
		"Wecker", "",
		"245", "0",
		"1", 1,
		"Stück", "2",
		"", "pd405900090.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/3955.jpg",
		90, 99,
		"3955", "Buran Chronograph Vollkalender",
		"Chronograph", "",
		"1499", "0",
		"1", 1,
		"Stück", "1",
		"", "pd231757446.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/3956.jpg",
		90, 97,
		"3956", "Buran Chronograph Vollkalender",
		"Chronograph", "",
		"1499", "0",
		"1", 1,
		"Stück", "1",
		"", "pd342878448.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/5420.jpg",
		90, 102,
		".5420", "Buran &quot;Sibirien&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1196921380.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/5528.jpg",
		90, 98,
		".5528", "Aviator Wecker 43 mm",
		"Wecker", "",
		"235", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1148808234.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/2301taucher.jpg",
		90, 106,
		".2301A", "Wostok Amphibia Automatik &quot;Taucher&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "18",
		"", "pd413148612.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/8602.jpg",
		90, 101,
		".8602", "CCCP-Watch Automatik &quot;1966&quot;",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1053016458.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/8700.jpg",
		90, 101,
		".8700", "CCCP-Watch Automatik &quot;1990&quot;",
		"Automatik", "",
		"155", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-782398504.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/1550.jpg",
		90, 98,
		"1550.", "Chronograph Spitfire",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1295010141.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/4042.jpg",
		90, 99,
		"4042", "Uhrenbeweger MTE für 2 Automatik-Uhren",
		"Uhrenbeweger", "",
		"99", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1295292648.htm",
		"", 1,
		"9E", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/4044.jpg",
		90, 78,
		"4044", "Uhrenbeweger MTE für 4 Automatik-Uhren",
		"Uhrenbeweger ( bei der Funktion gefilmt, siehe Beschreibung ) ", "",
		"285", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-1529493162.htm",
		"", 1,
		"9E", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/4044.jpg",
		90, 78,
		"4044.", "Uhrenbeweger MTE für 4 Automatik-Uhren",
		"Uhrenbeweger ( bei der Funktion gefilmt, siehe Beschreibung ) ", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1818159810.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/3002Etui.jpg",
		90, 102,
		"3002.", "Poljot Beobachtungsuhr",
		"Beobachtungsuhr", "",
		"895", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1296330930.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/9900S.jpg",
		90, 11,
		"9900S", "Metallband schwarz",
		"Edelstahlband", "",
		"40", "0",
		"1", 1,
		"Stück", "13",
		"", "pd622939696.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/5750.jpg",
		90, 102,
		"5750", "Aviator Wecker 41 mm",
		"Wecker", "",
		"255", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1296337834.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/5751.jpg",
		90, 101,
		"5751", "Aviator Wecker 41 mm",
		"Wecker", "",
		"275", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1186339751.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/4591.jpg",
		90, 101,
		"4591", "Buran Automatik &quot;Weekday&quot;",
		"Automatik Uhr", "",
		"485", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1296388142.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/4592.jpg",
		90, 97,
		"4592", "Buran Automatik &quot;Weekday&quot;",
		"Automatik Uhr", "",
		"485", "0",
		"1", 1,
		"Stück", "3",
		"", "pd314130354.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/4590.jpg",
		90, 100,
		"4590", "Buran Automatik &quot;Weekday&quot;",
		"Automatik Uhr", "",
		"485", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1840809472.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/4592.jpg",
		90, 97,
		"4592.", "Buran Automatik &quot;Weekday&quot;",
		"Automatik Uhr", "",
		"485", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1124530698.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/1002S.jpg",
		90, 107,
		"1002S", "Agat Stoppuhr  ",
		"Stoppuhr", "",
		"55", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1299337664.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/1002WS.jpg",
		90, 111,
		"1002.", "Agat Stoppuhr",
		"Stoppuhr", "",
		"55", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1303503412.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/1001N.jpg",
		90, 108,
		"1001.", "MOLNIJA Eisenbahneruhr mit Kette",
		"Taschenuhr", "",
		"95", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1388975910.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/5220.jpg",
		90, 99,
		"5220", "Pilot &quot;Sports&quot; Chronograph  ",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd555724397.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/5221.jpg",
		90, 97,
		"5221", "Pilot &quot;Sports&quot; Chronograph  ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1056899802.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/5222.jpg",
		90, 101,
		"5222", "Pilot &quot;Sports&quot; Chronograph  ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2140826848.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/5220.jpg",
		90, 99,
		"5220.", "Pilot &quot;Sports&quot; Chronograph  ",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1477514755.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/5221.jpg",
		90, 97,
		"5221.", "Pilot &quot;Sports&quot; Chronograph  ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-573259548.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/5222.jpg",
		90, 101,
		"5222.", "Pilot &quot;Sports&quot; Chronograph  ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1551621678.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/5108MW.jpg",
		90, 101,
		"5108MW", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd596908169.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/5108PG.jpg",
		90, 104,
		"5108PG", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1276091723.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/5108PW.jpg",
		90, 103,
		"5108PW", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1841118369.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/5108SG.jpg",
		90, 104,
		"5108SG", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1549349453.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/5108SW.jpg",
		90, 102,
		"5108SW", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-476481146.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/5108MG.jpg",
		90, 106,
		"5108MG.", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1021874497.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/5108PW.jpg",
		90, 103,
		"5108PW.", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1129113837.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/5108SW.jpg",
		90, 102,
		"5108SW.", "Chronograph &quot;Flugkapitän&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1733120602.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/5484.jpg",
		90, 96,
		"5484.", "Moskau Classic &quot;Automatik 45 mm&quot;",
		"Automatik", "",
		"255", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1225425211.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/1251B.jpg",
		90, 107,
		"1251B", "Chronograph STRELA",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1208083735.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/1257.jpg",
		90, 107,
		"1257", "                                                          Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1294803907.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/4114.jpg",
		90, 106,
		"4114", "Pilot  Chronograph &quot;Schnecke&quot;",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-960068397.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/1002S.jpg",
		90, 107,
		"1002S.", "Agat Stoppuhr  ",
		"Stoppuhr", "",
		"55", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-504193279.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/5486vorne.jpg",
		90, 93,
		"5486", "Moskau Classic &quot;Automatik 45 mm&quot;",
		"Automatik", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1299404816.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/5487.jpg",
		90, 95,
		"5487", "Moskau Classic &quot;Automatik 45 mm&quot;",
		"Automatik", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1577171638.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/5481S.jpg",
		90, 103,
		"5481S", "Moskau Classic &quot;Amphibia Automatik&quot;",
		"Automatik", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd11139252.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/5481S.jpg",
		90, 103,
		"5481S.", "Moskau Classic &quot;Amphibia Automatik&quot;",
		"Automatik", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd320373278.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/1250Strela.jpg",
		90, 105,
		"1250.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1303074844.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/1250Strela.jpg",
		90, 105,
		".1250", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1695287933.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/1258.jpg",
		90, 104,
		"1258", "           Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1735068746.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/4115.jpg",
		90, 101,
		"4115", "Buran Chronograph ",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1155602947.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/4116.jpg",
		90, 99,
		"4116", "Buran Chronograph ",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1374450281.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/4116.jpg",
		90, 99,
		"4116.", "Buran Chronograph ",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1798790507.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/4115.jpg",
		90, 101,
		"4115.", "Buran Chronograph ",
		"Chronograph", "",
		"255", "0",
		"1", 1,
		"Stück", "0",
		"", "pd158745217.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/1252S.jpg",
		90, 103,
		"1252S", "                                                            Chronograph STRELA Stoppsekunde",
		"Chronograph", "",
		"495", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-783967622.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/4407.jpg",
		90, 107,
		"4407", "Buran Wecker Tonneau ",
		"Wecker", "",
		"215", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1304592651.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/4408.jpg",
		90, 102,
		"4408", "Buran Wecker Tonneau ",
		"Wecker", "",
		"215", "0",
		"1", 1,
		"Stück", "2",
		"", "pd827567598.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/4405.jpg",
		90, 103,
		"4405", "Buran Wecker Basilika",
		"Wecker", "",
		"195", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-493662611.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/4406.jpg",
		90, 108,
		"4406", "Buran Wecker Basilika",
		"Wecker", "",
		"195", "0",
		"1", 1,
		"Stück", "2",
		"", "pd516095032.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/4409.jpg",
		90, 118,
		"4409", "Buran Wecker Tonneau ",
		"Wecker", "",
		"185", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1304605347.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/4410.jpg",
		90, 109,
		"4410", "Buran Wecker Tonneau ",
		"Wecker", "",
		"185", "0",
		"1", 1,
		"Stück", "2",
		"", "pd78372454.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/4407.jpg",
		90, 107,
		"4407.", "Buran Wecker Tonneau ",
		"Wecker", "",
		"215", "0",
		"1", 1,
		"Stück", "0",
		"", "pd972895045.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/4405.jpg",
		90, 103,
		"4405.", "Buran Wecker Basilika",
		"Wecker", "",
		"195", "0",
		"1", 1,
		"Stück", "0",
		"", "pd489548016.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/5951.jpg",
		90, 102,
		"5951", "    Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1304664378.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/5952.jpg",
		90, 95,
		"5952", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1280645503.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/5953.jpg",
		90, 100,
		"5953", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd466392944.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/5950.jpg",
		90, 100,
		"5950", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1428262563.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/5950.jpg",
		90, 100,
		"5950.", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1781987414.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/5951.jpg",
		90, 102,
		"5951.", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1993995563.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/5952.jpg",
		90, 95,
		"5952.", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1932712300.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/5953.jpg",
		90, 100,
		"5953.", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-475534231.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/4220.jpg",
		90, 102,
		"4220", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1304694264.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/4221.jpg",
		90, 102,
		"4221", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1750132396.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/4223.jpg",
		90, 103,
		"4223", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "1",
		"", "pd749712049.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/4220.jpg",
		90, 102,
		"4220.", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1546182822.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/4221.jpg",
		90, 102,
		"4221.", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1227629482.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/4223.jpg",
		90, 103,
		"4223.", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1930053931.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/2901P.jpg",
		90, 96,
		"2901P", "Chronograph Sturmanskie Gagarin 44 mm",
		"Chronograph", "",
		"649", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1304793555.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/2901P.jpg",
		90, 96,
		"2901P.", "Chronograph Sturmanskie Gagarin 44 mm",
		"Chronograph", "",
		"649", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-977165793.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/3945B.jpg",
		90, 97,
		"3945B", "Chronograph Buran &quot;Saphir 24-Stunden&quot;",
		"Chronograph", "",
		"529", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-647472085.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/3945B.jpg",
		90, 97,
		"3945B.", "Chronograph Buran &quot;Saphir 24-Stunden&quot;",
		"Chronograph", "",
		"529", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1267393650.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/Holzetui10.jpg",
		90, 66,
		"1106", " Uhren-Truhe für 10 Armbanduhren",
		"Uhren-Truhe", "",
		"95", "0",
		"1", 1,
		"Stück", "15",
		"", "pd1306334095.htm",
		"", 1,
		"9D", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/Holzetui10.jpg",
		90, 66,
		"1106.", " Uhren-Truhe für 10 Armbanduhren",
		"Uhren-Truhe", "",
		"95", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-199748981.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/4225.jpg",
		90, 101,
		"4225", "                                                      Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd630654897.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/4225.jpg",
		90, 101,
		"4225.", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1090816605.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/4226.jpg",
		90, 101,
		"4226", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-626719543.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/4226.jpg",
		90, 101,
		"4226.", "Chronograph &quot;P-7 cemepka&quot;",
		"Chronograph", "",
		"335", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1437999890.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/4190G.jpg",
		90, 92,
		"4191.", "Fliegeruhr &quot;Buran&quot;",
		"Handaufzugsuhr", "",
		"185", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1306391796.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/4293.jpg",
		90, 98,
		"4293", "Buran Mondphase",
		"Handaufzugsuhr", "",
		"320", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-404084590.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/4290.jpg",
		90, 104,
		"4290.", "Buran Mondphase",
		"Handaufzugsuhr", "",
		"305", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1757928379.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/4293.jpg",
		90, 98,
		"4293.", "Buran Mondphase",
		"Handaufzugsuhr", "",
		"320", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-739506512.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/9025.jpg",
		90, 76,
		"9025", "RIOS1931 Schmetterlingsfaltschließe",
		"Schmetterlingsfaltschließe", "",
		"29", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1307005810.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/9025gold.jpg",
		90, 73,
		"9025G", "RIOS1931 Schmetterlingsfaltschließe",
		"Schmetterlingsfaltschließe", "",
		"33", "0",
		"1", 1,
		"Stück", "13",
		"", "pd661778160.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/9010BFBraun.jpg",
		90, 70,
		"9010BF", "Lederband, Büffelleder RIOS&quot;",
		"Lederband", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-1114493282.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/9010BFBraun.jpg",
		90, 70,
		"9010BF.", "Lederband, Büffelleder RIOS&quot;",
		"Lederband", "",
		"19", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1640272388.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/9025.jpg",
		90, 76,
		"9025.", "RIOS1931 Schmetterlingsfaltschließe",
		"Schmetterlingsfaltschließe", "",
		"29", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1139903350.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/2378.jpg",
		90, 92,
		"2378.", "Poljot Chronograph &quot;RUSLAN Day &amp; Night&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1541507028.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/2379.jpg",
		90, 98,
		"2379.", "Poljot Chronograph &quot;RUSLAN Day &amp; Night&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1912168489.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/Regulatoroffen1.jpg",
		90, 96,
		"9033.9940551", "Regulator mit offenem Federhaus",
		"Handaufzugsuhr", "",
		"679", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-362792718.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/Regulator1.jpg",
		90, 92,
		"9031.8940441", "Regulator",
		"Handaufzugsuhr", "",
		"599", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1123766384.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/Regulatorsilber.jpg",
		90, 95,
		"9031.8940444", "                                                              Regulator",
		"Handaufzugsuhr", "",
		"599", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1292921886.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/9033.9940553.jpg",
		90, 124,
		"9033.9940553", "Regulator mit offenem Federhaus",
		"Handaufzugsuhr", "",
		"725", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-2035685508.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/Doubletime1.jpg",
		90, 103,
		"9120.2940331", "Double Time",
		"Handaufzugsuhr", "",
		"530", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-866678262.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/9120.2940332.jpg",
		90, 130,
		"9120.2940332", "Double Time",
		"Handaufzugsuhr", "",
		"530", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1088186184.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/9120.2940431.jpg",
		90, 133,
		"9120.2940431", "Double Time",
		"Handaufzugsuhr", "",
		"599", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1540826156.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/9120.2940434.jpg",
		90, 124,
		"9120.2940434", "Double Time",
		"Handaufzugsuhr", "",
		"599", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1661071072.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/gorbachov_uhr.jpg",
		90, 107,
		"3133.7776500", "Gorbatchov",
		"", "",
		"930", "0",
		"1", 1,
		"Stück", "5",
		"", "pd170777678.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/Baikalsilber1.jpg",
		90, 98,
		"3133.1940911", "                                                        Baikal",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "5",
		"", "pd649040684.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/Baikalchronorot.jpg",
		90, 98,
		"3133.1940912", "Baikal",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1417534778.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/Baikalschwarz.jpg",
		90, 97,
		"3133.1940913B", "Baikal",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1765912056.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/Baikalgold.jpg",
		90, 98,
		"3133.1940611", "Baikal",
		"Chronograph", "",
		"799", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-2119490330.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/BaikalMondgrau.jpg",
		90, 99,
		"31679.1940917", "Baikal",
		"Chronograph", "",
		"699", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1409979004.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/BaikalMond.jpg",
		90, 98,
		"31679.1940915", "                                                             Baikal",
		"Chronograph", "",
		"699", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1987207342.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/NewClassicsilb1.jpg",
		90, 97,
		"2416.1981167", "New Classic",
		"Automatik", "",
		"210", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-392913456.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/NewClassicRG1.jpg",
		90, 100,
		"2416.1981668", "New Classic",
		"Automatik", "",
		"230", "0",
		"1", 1,
		"Stück", "5",
		"", "pd615774334.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/3133.1946612.jpg",
		90, 121,
		"3133.19401612", "Nicolai II",
		"Chronograph", "",
		"799", "0",
		"1", 1,
		"Stück", "5",
		"", "pd995073130.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/3133.1946613.jpg",
		90, 116,
		"3133.19401613", "Nicolai II",
		"Chronograph", "",
		"799", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1401929560.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/31679.1940918B.jpg",
		90, 126,
		"31679.1940918B", "Baikal",
		"Chronograph", "",
		"869", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-22924158.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/5006.jpg",
		90, 97,
		"5006", "Poljot Chronograph &quot;Avant&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1308207763.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/5008.jpg",
		90, 100,
		"5008.", "Poljot Chronograph &quot;Lunar&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1982447063.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/5006.jpg",
		90, 97,
		".5006", "Poljot Chronograph &quot;Avant&quot;",
		"Chronograph", "",
		"265", "0",
		"1", 1,
		"Stück", "12",
		"", "pd738926628.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/5008.jpg",
		90, 100,
		".5008", "Poljot Chronograph &quot;Lunar&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-27684505.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/3261M.jpg",
		90, 95,
		".3261M", "Chronograph &quot;Luftwaffe&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "12",
		"", "pd86216442.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/4408.jpg",
		90, 102,
		".4408", "Buran Wecker Tonneau ",
		"Wecker", "",
		"215", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1580923881.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/4407.jpg",
		90, 107,
		".4407", "Buran Wecker Tonneau ",
		"Wecker", "",
		"215", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1120367844.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/4406.jpg",
		90, 108,
		".4406", "Buran Wecker Basilika",
		"Wecker", "",
		"195", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-633780931.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/4405.jpg",
		90, 103,
		".4405", "Buran Wecker Basilika",
		"Wecker", "",
		"195", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1268236984.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/5428.jpg",
		90, 96,
		"5428.", "Aviator 43mm",
		"Handaufzugsuhr", "",
		"220", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1310544502.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/1001D.jpg",
		90, 69,
		"1001D", "MOLNIJA Taschenuhr mit Deckel und Kette",
		"Taschenuhr", "",
		"99", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1311087169.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/1001D.jpg",
		90, 69,
		"1001D.", "MOLNIJA Taschenuhr mit Deckel und Kette",
		"Taschenuhr", "",
		"99", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1087357287.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/5217.jpg",
		90, 102,
		"5217", "                                                               Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1281136771.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/5218.jpg",
		90, 102,
		"5218", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1752692799.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/5219.jpg",
		90, 98,
		"5219", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-752724111.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/5217.jpg",
		90, 102,
		"5217.", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1556581779.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/5217.jpg",
		90, 102,
		".5217", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd694124325.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/5218.jpg",
		90, 102,
		".5218", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd273484967.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/5219.jpg",
		90, 98,
		".5219", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd813511321.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/0302.jpg",
		90, 92,
		"0302.", "Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1963341351.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/2301taucher.jpg",
		90, 106,
		"2301A.", "Wostok Amphibia Automatik &quot;Taucher&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "0",
		"", "pd513328301.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/4106.jpg",
		90, 100,
		"4106", "Buran Wecker",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-643957069.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/4106.jpg",
		90, 100,
		".4106", "Buran Wecker",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd551219013.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/5320neu.jpg",
		90, 96,
		"5320.", "Aviator 24-Stundenuhr",
		"24-Stundenuhr", "",
		"225", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1311319349.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/0302.jpg",
		90, 92,
		"0302_", "Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-534501833.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/0302R.jpg",
		90, 90,
		"0302R", "                                                                   Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1311713840.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/BaikalMond.jpg",
		90, 98,
		"31679.1940915.", "Baikal",
		"Chronograph", "",
		"699", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1683413982.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/Regulator1.jpg",
		90, 92,
		"9031.8940441.", "Regulator",
		"Handaufzugsuhr", "",
		"599", "0",
		"1", 1,
		"Stück", "0",
		"", "pd232578364.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/2201B.jpg",
		90, 94,
		"2201B", "Chronograph &quot;Klassik&quot;",
		"Chronograph", "",
		"199", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1313676836.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/2201II.jpg",
		90, 98,
		"2201.", "Chronograph &quot;Klassik&quot;",
		"Chronograph", "",
		"225", "0",
		"1", 1,
		"Stück", "0",
		"", "pd763021634.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/2201B.jpg",
		90, 94,
		"2201B.", "Chronograph &quot;Klassik&quot;",
		"Chronograph", "",
		"199", "0",
		"1", 1,
		"Stück", "0",
		"", "pd538813968.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/5459O.jpg",
		90, 98,
		"5459O", "Moskau Classic &quot;Amphibia-Chronograph&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1268989966.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/5459O.jpg",
		90, 98,
		"5459O.", "Moskau Classic &quot;Amphibia-Chronograph&quot;",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1390814026.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/5463O.jpg",
		90, 96,
		"5463O", "Chronograph Aeronavigator",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-504331450.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/5463O.jpg",
		90, 96,
		"5463O.", "Chronograph Aeronavigator",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1251636736.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/2201II.jpg",
		90, 98,
		".2201", "Chronograph &quot;Klassik&quot;",
		"Chronograph", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd800300394.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/2201B.jpg",
		90, 94,
		".2201B", "Chronograph &quot;Klassik&quot;",
		"Chronograph", "",
		"199", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1300743048.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/5950GW.jpg",
		90, 97,
		"5950GW", "                                              Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1313692322.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/5950GG1.jpg",
		90, 98,
		"5950GG", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1675325747.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/5950GW.jpg",
		90, 97,
		"5950GW.", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1582309796.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/5950GG1.jpg",
		90, 98,
		"5950GG.", "Chronograph &quot;Sturmovik 44 mm&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-599013929.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/7000.jpg",
		90, 103,
		"7000", "Seagull &quot;1963&quot; Chinesische Luftwaffenuhr",
		"Schaltradchronograph", "",
		"280", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-715466538.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/0302.jpg",
		90, 92,
		".0302.", "Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1316724127.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/1251B.jpg",
		90, 107,
		"1251B.", "Chronograph STRELA",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1915664318.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/1252.jpg",
		90, 105,
		"1252.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1883367870.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/7000.jpg",
		90, 103,
		"7000.", "Seagull &quot;1963&quot; Chinesische Luftwaffenuhr",
		"Schaltradchronograph", "",
		"280", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1917579216.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/1257.jpg",
		90, 107,
		"1257.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1144926686.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/2301uboot.jpg",
		90, 111,
		".2301C", "Wostok Amphibia Automatik &quot;U-Boot&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1319897042.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/2700.jpg",
		90, 98,
		"2700", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"580", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1321173775.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/2701.jpg",
		90, 95,
		"2701", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"580", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1700785460.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/2702ZB.jpg",
		90, 96,
		"2702", "                                                                         Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "1",
		"", "pd80574181.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/PB001.jpg",
		90, 93,
		"PB001.", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-46354916.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/PB002.jpg",
		90, 99,
		"PB002.", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1097977430.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/PB003.jpg",
		90, 102,
		"PB003.", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-4335640.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/5490.jpg",
		90, 101,
		"5490", " Pilot Skeleton ",
		"Handaufzugsuhr", "",
		"298", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1325929559.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/5490.jpg",
		90, 101,
		"5490.", "Pilot Skeleton ",
		"Handaufzugsuhr", "",
		"298", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1171598474.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/5002N.jpg",
		90, 95,
		"5002N.", "    Chronograph Aviator II Saphir",
		"Chronograph", "",
		"445", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1255983534.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/2209.jpg",
		90, 91,
		"2209", "Sturmanskie Chronograph &quot;Ozean&quot;",
		"Chronograph", "",
		"440", "0",
		"1", 1,
		"Stück", "1",
		"", "pd55981824.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/0410B.jpg",
		90, 97,
		"0410B", " Moscow Classic Taucher-Chronograph",
		"Taucheruhr ", "",
		"325", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1171527945.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/0410B.jpg",
		90, 97,
		".0410B", "Moscow Classic Taucher-Chronograph",
		"Taucheruhr ", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2111619370.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/5470.jpg",
		90, 94,
		"5470", "&quot;Aeronavigator Automatik&quot;",
		"Automatik", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1177419482.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/5471.jpg",
		90, 94,
		"5471", "&quot;Aeronavigator Automatik&quot;",
		"Automatik", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1129803354.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/5472.jpg",
		90, 94,
		"5472", "&quot;Aeronavigator Automatik&quot;",
		"Automatik", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1101542606.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/5481.jpg",
		90, 96,
		"5481", "Moskau Classic &quot;Amphibia Automatik&quot;",
		"Automatik", "",
		"295", "0",
		"1", 1,
		"Stück", "3",
		"", "pd43248636.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/0510.jpg",
		90, 90,
		".0510", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1195346132.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/0511.jpg",
		90, 90,
		".0511", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1346299187.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/0513.jpg",
		90, 90,
		".0513", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-117701885.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/0510.jpg",
		90, 90,
		"0510", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "8",
		"", "pd449536041.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/0511.jpg",
		90, 90,
		"0511", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-410683818.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/0513.jpg",
		90, 90,
		"0513", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "8",
		"", "pd-689395532.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/0514.jpg",
		90, 92,
		"0514", "Moscow Classic Taucher-Automatik",
		"Automatik", "",
		"335", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1228546107.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/3501II.jpg",
		90, 146,
		"3501", "Aviator Chronograph &quot;Wings&quot;",
		"Chronograph", "",
		"773", "0",
		"1", 1,
		"Stück", "1",
		"", "pd388404417.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/3502.jpg",
		90, 152,
		"3502", "Aviator Chronograph &quot;Wings&quot;",
		"Chronograph", "",
		"773", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1175407201.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/5600.jpg",
		90, 94,
		"5600", "   Moskau Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1183887339.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/5601.jpg",
		90, 94,
		"5601", "Moskau Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd760563225.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/5500.jpg",
		90, 95,
		"5500", "  Moskau Classic &quot;Navigator&quot; ",
		"Handaufzugsuhr", "",
		"255", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1379295501.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/5320schwarzII.jpg",
		90, 97,
		"5320B", "Aviator 24-Stundenuhr",
		"24-Stundenuhr", "",
		"235", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1188744703.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/5501.jpg",
		90, 96,
		"5501", "Moskau Classic &quot;Navigator&quot; ",
		"Handaufzugsuhr", "",
		"255", "0",
		"1", 1,
		"Stück", "4",
		"", "pd413615219.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/5410.jpg",
		90, 103,
		"5410", "Moscow-Classic &quot;Sturmovic&quot;",
		"Handaufzugsuhr", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1323132911.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/5411.jpg",
		90, 102,
		"5411", "Moscow-Classic &quot;Sturmovic&quot;",
		"Handaufzugsuhr", "",
		"185", "0",
		"1", 1,
		"Stück", "4",
		"", "pd453882184.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/1404.jpg",
		90, 101,
		"1404", "  Sturmanskie &quot;Sputnik&quot;",
		"Handaufzugsuhr", "",
		"220", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1427815772.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/9911S.jpg",
		90, 118,
		"9911", "Metallband dreireihig, poliert, massiv",
		"poliertes Edelstahl, 20, 22 oder 24 mm Bandanstoßbreite", "",
		"38", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1445208386.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/4197.jpg",
		90, 105,
		"4197", "Buran Handaufzugsuhr &quot;Square&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-2113571508.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/4198.jpg",
		90, 97,
		"4198", "Buran Handaufzugsuhr &quot;Square&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd559053872.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/5702.jpg",
		90, 98,
		"5702", "Moskau Classic &quot;U-Boot Navigator&quot; ",
		"Handaufzugsuhr", "",
		"240", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-2008972036.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/5703.jpg",
		90, 95,
		"5703", "Moskau Classic &quot;U-Boot Navigator&quot; ",
		"Handaufzugsuhr", "",
		"260", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-583243434.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/0300plexithb.jpg",
		90, 107,
		"0300", "Borduhr Modell AY C-1M",
		"Borduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-490188628.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/0301.jpg",
		90, 91,
		"0301", "Einbauborduhr &quot;129YC&quot;",
		"Einbauborduhr", "",
		"245", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-800902225.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/0300Halter1.jpg",
		90, 120,
		"0030", "Plexiglashalterung für MIG Borduhren",
		"Plexiglashalterung", "",
		"22", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1199060743.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/0300E.jpg",
		90, 80,
		"0300E", "Borduhr Modell AY C-1M",
		"Borduhr", "",
		"215", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1192280799.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/0300C.jpg",
		90, 82,
		"0300C", "Borduhr Modell AY 60",
		"Borduhr", "",
		"245", "0",
		"1", 1,
		"Stück", "10",
		"", "pd724016590.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/0300D.jpg",
		90, 81,
		"0300D", "Borduhr Modell AY 122",
		"Borduhr", "",
		"215", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-1671280744.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/1405.jpg",
		90, 97,
		"1405", "Sturmanskie &quot;Sputnik&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1959620996.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/5014.jpg",
		90, 98,
		"5014", "Aviator &quot;Kleine Sekunde&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1195490711.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/5013.jpg",
		90, 96,
		"5013", "Aviator &quot;Kleine Sekunde&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1524333926.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/5800.jpg",
		90, 101,
		"5800", "Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1197222517.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/5805.jpg",
		90, 100,
		"5805", "Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Handaufzugsuhr", "",
		"255", "0",
		"1", 1,
		"Stück", "4",
		"", "pd129493604.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/5900.jpg",
		90, 97,
		"5900", "Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Chronograph", "",
		"435", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1008958842.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/5905.jpg",
		90, 99,
		"5905", "Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Chronograph", "",
		"455", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-300224025.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/5901.jpg",
		90, 98,
		"5901", "Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Chronograph", "",
		"435", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1197739095.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/5801.jpg",
		90, 93,
		"5801", "    Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1389744275.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/5802.jpg",
		90, 93,
		"5802", "Moskau Classic Sturmovik &quot;Square &amp; Round&quot;",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-933838789.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/5530.jpg",
		90, 95,
		"5530", "Moskau Classic &quot;Sturmovik&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1203154212.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/5531.jpg",
		90, 96,
		"5531", "Moskau Classic &quot;Sturmovik&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1469276202.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/5552.jpg",
		90, 95,
		"5552", "Moskau Classic &quot;Sturmovik&quot; Chronograph",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "1",
		"", "pd841939728.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/5112N.jpg",
		90, 99,
		"5112.", "Chronograph Pilot &quot;Berkut-Neu&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1205302575.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/5113neu.jpg",
		90, 98,
		"5113.", "Chronograph Pilot &quot;Berkut-Neu&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2035946172.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/PutinStahl2.jpg",
		90, 101,
		"3811", "Chronograph &quot;Putin&quot;",
		"Chronograph", "",
		"485", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1205826119.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/5215A.jpg",
		90, 97,
		".5215 A", "Poljot Automatik &quot;Traveller Watch - edel&quot;",
		"Automatik Uhr", "",
		"295", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-823149059.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/3958.jpg",
		90, 108,
		"3958", "Aviator Chronograph &quot;Hi-Tech&quot;",
		"Chronograph", "",
		"670", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2135735763.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/5060G.jpg",
		90, 100,
		"5060G", "Chronograph Aviator III 42 mm ",
		"Chronograph", "",
		"469", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-366345219.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/5350.jpg",
		90, 97,
		"5350", "              Aviator 24-Stundenuhr 45 mm",
		"24-Stundenuhr", "",
		"225", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1945309535.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/5351.jpg",
		90, 98,
		"5351", "Aviator 24-Stundenuhr 45 mm",
		"24-Stundenuhr", "",
		"225", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1896324602.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/5352.jpg",
		90, 93,
		"5352", "Aviator 24-Stundenuhr 45 mm",
		"24-Stundenuhr", "",
		"225", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1983589223.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/3800.jpg",
		90, 106,
		"3800", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph", "",
		"590", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2059916405.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/3801.jpg",
		90, 103,
		"3801", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph", "",
		"590", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-169225613.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/3802.jpg",
		90, 103,
		"3802", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1392247474.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/3803.jpg",
		90, 104,
		"3803", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1612590803.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/3804.jpg",
		90, 104,
		"3804", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-268854316.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/5350Rot.jpg",
		90, 130,
		"9010R", "Lederband ( rote Naht ) ",
		"Lederband", "",
		"10", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1215696717.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/Band14mm.jpg",
		90, 36,
		"9010S", "Lederband Schmale Breite",
		"Lederband", "",
		"10", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1412045379.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/2476.jpg",
		90, 93,
		".2476", "Poljot Chronograph &quot;Blue Angels&quot;",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1220538411.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/0316.jpg",
		90, 91,
		"0316", "      Amphibia Taucheruhr XXL",
		"Taucheruhr ", "",
		"315", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1225042066.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/2801.jpg",
		90, 95,
		"2801.", "Poljot Chronograph &quot;Journey&quot; ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-244778036.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/9010HB.jpg",
		90, 38,
		"9010HB", "Lederband, hellbraun &quot;RIOS&quot;",
		"Lederband", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1247310941.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/2905.jpg",
		90, 98,
		"2905", "Sturmanskie Chronograph &quot;44 mm&quot;",
		"Chronograph", "",
		"565", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-489612036.htm",
		"", 0,
		"6A", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/5080.jpg",
		90, 90,
		"5080", "Sturmanskie Chronograph &quot;Spezial&quot;",
		"Chronograph", "",
		"525", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1177530688.htm",
		"", 0,
		"6A", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/1350.jpg",
		90, 100,
		"1350", "Sturmanskie Chronograph &quot;Strela 44 mm&quot;",
		"Chronograph", "",
		"575", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1357996680.htm",
		"", 0,
		"6A", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/9010SW.jpg",
		90, 40,
		"9010SW", "Lederband, schwarz &quot;RIOS&quot;",
		"Lederband", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"", "pd136450384.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/6020.jpg",
		90, 92,
		"6020", "Poljot International Tonneau Chronograph",
		"Chronograph", "",
		"235", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-286951844.htm",
		"", 0,
		"6A", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/2704.jpg",
		90, 100,
		"2704", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-744564437.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/2700.jpg",
		90, 98,
		"2700.", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"580", "0",
		"1", 1,
		"Stück", "0",
		"", "pd956132408.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/2701.jpg",
		90, 95,
		"2701.", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"580", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1724363617.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/2702ZB.jpg",
		90, 96,
		"2702.", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1338317302.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/2703.jpg",
		90, 96,
		"2703.", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "0",
		"", "pd474532615.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/2704.jpg",
		90, 100,
		"2704.", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "0",
		"", "pd315838052.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/0302R.jpg",
		90, 90,
		"0302R_", "Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "10",
		"", "pd464454045.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/0300sammler.jpg",
		90, 81,
		"0300SPEZIAL", "Borduhr Modell AY C-1M - SPEZIAL",
		"Borduhr", "",
		"395", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-837053165.htm",
		"", 1,
		"8B", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/3904.jpg",
		90, 108,
		"3904.", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph &quot;Tonneau-Mondphase&quot;", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1321351986.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/1001KGB.jpg",
		90, 111,
		"1001KGB", "MOLNIJA &quot;KGB&quot; Taschenuhr mit Deckel und Kette",
		"Taschenuhr", "",
		"99", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1322234360.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/1001LV.jpg",
		90, 111,
		"1001LV", "MOLNIJA &quot;Leonardo da Vinci&quot; Taschenuhr mit  Kette",
		"Taschenuhr", "",
		"99", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1336173622.htm",
		"", 1,
		"8A", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/1001KGB.jpg",
		90, 111,
		"1001KGB.", "MOLNIJA &quot;KGB&quot; Taschenuhr mit Deckel und Kette",
		"Taschenuhr", "",
		"99", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1401842396.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/1001LV.jpg",
		90, 111,
		"1001LV.", "MOLNIJA &quot;Leonardo da Vinci&quot; Taschenuhr mit  Kette",
		"Taschenuhr", "",
		"99", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1615353922.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/0302R.jpg",
		90, 90,
		".0302R", "Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-335152706.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/PB001.jpg",
		90, 93,
		".PB001", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1654464598.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/PB002.jpg",
		90, 99,
		".PB002", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "11",
		"", "pd954701428.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/PB003.jpg",
		90, 102,
		".PB003", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-385764926.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/5320neu.jpg",
		90, 96,
		".5320", "Aviator 24-Stundenuhr",
		"24-Stundenuhr", "",
		"225", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1616033216.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/B61001.jpg",
		90, 99,
		"B61001.", "B-61 Gagarin ",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "0",
		"", "pd126212906.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/B61002ZB.jpg",
		90, 69,
		"B61002.", "B-61 Gagarin ",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1383308648.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/1550.jpg",
		90, 98,
		".1550", "Chronograph Spitfire",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1322817218.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/5217.jpg",
		90, 102,
		".5217.", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-235585817.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/Holzetui10.jpg",
		90, 66,
		".1106", " Uhren-Truhe für 10 Armbanduhren",
		"Uhren-Truhe", "",
		"95", "0",
		"1", 1,
		"Stück", "18",
		"", "pd101245657.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/3904.jpg",
		90, 108,
		".3904", "Buran Chronograph &quot;Tonneau-Mondphase&quot;",
		"Chronograph &quot;Tonneau-Mondphase&quot;", "",
		"385", "0",
		"1", 1,
		"Stück", "18",
		"", "pd265406639.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/5490P.jpg",
		90, 96,
		"5490P", "                                                                               Pilot Skeleton ",
		"Handaufzugsuhr", "",
		"298", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1326624714.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/5490P.jpg",
		90, 96,
		"5490P.", " Pilot Skeleton ",
		"Handaufzugsuhr", "",
		"298", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1972123499.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/1254G.jpg",
		90, 104,
		"1254G", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd297996940.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/1254G.jpg",
		90, 104,
		"1254G.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-556599031.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/6800.jpg",
		90, 103,
		"6800", "Maktime Mondphase Chronograph",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd618217388.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/6800.jpg",
		90, 103,
		"6800.", "Maktime Mondphase Chronograph",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1912088758.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/3261N.jpg",
		90, 94,
		"3261N.", "Poljot Chronograph &quot;Luftwaffe&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1445894654.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/3261N.jpg",
		90, 94,
		".3261N", "Poljot Chronograph &quot;Luftwaffe&quot;",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1335855352.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/5210N.jpg",
		90, 99,
		"5210", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-831991134.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/5210N.jpg",
		90, 99,
		"5210.", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1507776932.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/5210N.jpg",
		90, 99,
		".5210", "Poljot Wecker “Alarm Traveller Watch”",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-2075828777.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/6801.jpg",
		90, 97,
		"6801", "Maktime Chronograph 43 mm",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1272262442.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/6801.jpg",
		90, 97,
		"6801.", "Maktime Chronograph 43 mm",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1485465041.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/5251.jpg",
		90, 97,
		".5251", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1576664248.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/5252.jpg",
		90, 98,
		".5252", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1785163653.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/5253.jpg",
		90, 94,
		".5253", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1115485150.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/5252.jpg",
		90, 98,
		"5252.", "Wecker &quot;Navigator&quot; ",
		"Wecker", "",
		"225", "0",
		"1", 1,
		"Stück", "0",
		"", "pd285712531.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/5263.jpg",
		90, 107,
		".5263", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-611284864.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/5264.jpg",
		90, 104,
		".5264", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd2060142570.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/5261.jpg",
		90, 104,
		".5261", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1501046140.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/5261.jpg",
		90, 104,
		"5261.", "Navigator Automatik",
		"Automatik", "",
		"225", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1142018766.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/2210.jpg",
		90, 98,
		"2210", "Sturmanskie Chronograph Sekundenstopp",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1220021449.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/5016.jpg",
		90, 99,
		"5016", "Aviator &quot;Kleine Sekunde Day&amp;Night&quot;",
		"Handaufzugsuhr", "",
		"282", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1524562422.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/5017.jpg",
		90, 98,
		"5017", "Aviator &quot;Kleine Sekunde Day&amp;Night&quot;",
		"Handaufzugsuhr", "",
		"282", "0",
		"1", 1,
		"Stück", "4",
		"", "pd228428428.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/9014B.jpg",
		90, 44,
		"9014B", "Lederband extra dick",
		"Lederband", "",
		"18.5", "0",
		"1", 1,
		"Stück", "13",
		"", "pd412689158.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/9015.jpg",
		90, 38,
		"9019", "Lederband &quot;Racing&quot;",
		"Lederband", "",
		"11", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1222091033.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/9015B.jpg",
		90, 37,
		"9019B", "Lederband &quot;Racing&quot;",
		"Lederband", "",
		"11", "0",
		"1", 1,
		"Stück", "13",
		"", "pd632271087.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/4305.jpg",
		90, 103,
		"4305", "Buran Wecker Tonneau",
		"Wecker", "",
		"310", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1222180061.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/2801.jpg",
		90, 95,
		".2801", "Poljot Chronograph &quot;Journey&quot; ",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-299647856.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/5110.jpg",
		90, 96,
		"5110.", " Chronograph Pilot &quot;Berkut&quot; ",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1176358099.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/5427.jpg",
		90, 95,
		".5427", "Aviator 43mm",
		"Handaufzugsuhr", "",
		"220", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1227085195.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/5112N.jpg",
		90, 99,
		".5112", "Chronograph Pilot &quot;Berkut&quot;",
		"Chronograph", "",
		"365", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1415338764.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/5451B.jpg",
		90, 95,
		"5454", " Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"195", "0",
		"1", 1,
		"Stück", "8",
		"", "pd1234647323.htm",
		"", 1,
		"7F", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/5451B.jpg",
		90, 95,
		".5454", "Moskau Classic &quot;Amphibia&quot;",
		"Taucheruhr - Handaufzug ", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd238641241.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/2211.jpg",
		90, 92,
		"2211", "Sturmanskie Chronograph",
		"Chronograph", "",
		"480", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1341865765.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/5308ABNeu.jpg",
		90, 96,
		"5308AB", "&quot;Aviator Automatik&quot;",
		"Automatik", "",
		"245", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1234801301.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/5309AB.jpg",
		90, 94,
		"5309AB", "&quot;Aviator Automatik&quot;",
		"Automatik", "",
		"245", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-297861866.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/2500.jpg",
		90, 94,
		"2500", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik Dualtime", "",
		"240", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1236109216.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/2502.jpg",
		90, 97,
		"2502", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik Dualtime", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd992696414.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/2501.jpg",
		90, 99,
		"2501", "                                  Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik Dualtime", "",
		"235", "0",
		"1", 1,
		"Stück", "3",
		"", "pd248046464.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/2503.jpg",
		90, 100,
		"2503", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik Dualtime", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1231502802.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/2504.jpg",
		90, 97,
		"2504", "Vostok Europe &quot;GAZ 14&quot; Dualtime",
		"Automatik Dualtime", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-79940652.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/5436Neu.jpg",
		90, 93,
		"5436", "Moskau Classic &quot;Sturmovik 43mm&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1199235408.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/5437neu.jpg",
		90, 95,
		"5437", "Moskau Classic &quot;Sturmovik 43mm&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-1207916766.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/5438.jpg",
		90, 101,
		"5438", "Moskau Classic &quot;Sturmovik 43mm&quot;",
		"Handaufzugsuhr", "",
		"195", "0",
		"1", 1,
		"Stück", "4",
		"", "pd300293284.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/1406.jpg",
		90, 96,
		"1406", "Sturmanskie &quot;Sputnik&quot; 24-Stundenuhr",
		"24-Stundenuhr", "",
		"210", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-2107848901.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/1407.jpg",
		90, 96,
		"1407", "Sturmanskie &quot;Sputnik&quot; 24-Stundenuhr",
		"24-Stundenuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "11",
		"", "pd995591759.htm",
		"", 1,
		"8D", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/9010DB.jpg",
		90, 37,
		"9010DB", "Lederband, dunkelbraun &quot;RIOS&quot;",
		"Lederband", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-971684397.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/9010RB.jpg",
		90, 43,
		"9010RB", "Lederband, rotbraun &quot;RIOS&quot;",
		"Lederband", "",
		"19", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1022879755.htm",
		"", 1,
		"9B", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/6010.jpg",
		90, 98,
		"6010", "                                                                  Poljot International Chronograph",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1250019314.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/6011.jpg",
		90, 100,
		"6011", "Poljot International Chronograph",
		"Chronograph", "",
		"285", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-158021729.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/1351neu.jpg",
		90, 96,
		"1351", "Sturmanskie Chronograph &quot;Strela 44 mm&quot;",
		"Chronograph", "",
		"575", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1255444583.htm",
		"", 0,
		"6A", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/1252B.jpg",
		90, 103,
		"1252B", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2099088277.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/2601.jpg",
		90, 92,
		"2601", "Vostok Europe Ekranoplan",
		"Automatik  ", "",
		"365", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-104056450.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/2602.jpg",
		90, 96,
		"2602", "Vostok Europe Ekranoplan",
		"Automatik  ", "",
		"345", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-107720927.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/2603.jpg",
		90, 92,
		"2603", "Vostok Europe Ekranoplan",
		"Automatik  ", "",
		"365", "0",
		"1", 1,
		"Stück", "3",
		"", "pd113054832.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/2600.jpg",
		90, 92,
		"2600", "Vostok Europe Ekranoplan",
		"Automatik  ", "",
		"375", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1259409254.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/0302.jpg",
		90, 92,
		".0302", "Wostok Schiffsuhr &quot;5-CHM&quot;",
		"Wanduhr", "",
		"285", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1260537367.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/5503.jpg",
		90, 113,
		".5503", "Poljot Automatik ETA",
		"Automatik Uhr", "",
		"295", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1399284347.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/2301taucher.jpg",
		90, 106,
		"2301A", "Wostok Amphibia Automatik &quot;Taucher&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1263484596.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/2301Fallschirm.jpg",
		90, 106,
		"2301B", "Wostok Amphibia Automatik &quot;Fallschirmspringer&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1333386189.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/2301uboot.jpg",
		90, 111,
		"2301C", "Wostok Amphibia Automatik &quot;U-Boot&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd413320862.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/2301panzer.jpg",
		90, 96,
		"2301D", "Wostok Amphibia Automatik &quot;Panzer&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1263543575.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/2301KGBgruen.jpg",
		90, 104,
		"2301E", "Wostok Amphibia Automatik &quot;KGB-grün&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1928756562.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/2301KGBsilber.jpg",
		90, 99,
		"2301F", "Wostok Amphibia Automatik &quot;KGB-silber&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1123580631.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/2301kgbschwarz.jpg",
		90, 99,
		"2301G", "Wostok Amphibia Automatik &quot;KGB-schwarz&quot;",
		"Automatik Uhr", "",
		"98", "0",
		"1", 1,
		"Stück", "7",
		"", "pd413126860.htm",
		"", 1,
		"7E", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/8500.jpg",
		90, 125,
		"8500", "CCCP-Watch Handaufzugsuhr &quot;1985&quot;",
		"Handaufzugsuhr", "",
		"159", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-510137666.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/8501.jpg",
		90, 129,
		"8501", "CCCP-Watch Handaufzugsuhr &quot;1985&quot;",
		"Handaufzugsuhr", "",
		"159", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-585224880.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/8502.jpg",
		90, 133,
		"8502", "                                                                   CCCP-Watch Handaufzugsuhr &quot;1985&quot;",
		"Handaufzugsuhr", "",
		"159", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1921502533.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/8502B.jpg",
		90, 133,
		"8502B", "CCCP-Watch Handaufzugsuhr &quot;1985&quot;",
		"Handaufzugsuhr", "",
		"189", "0",
		"1", 1,
		"Stück", "6",
		"", "pd2144678662.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/8600.jpg",
		90, 102,
		"8600", "CCCP-Watch Automatik &quot;1966&quot;",
		"Automatik", "",
		"210", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-894647069.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/8601.jpg",
		90, 98,
		"8601", "CCCP-Watch Automatik &quot;1966&quot;",
		"Automatik", "",
		"210", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1493595668.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/8602.jpg",
		90, 101,
		"8602", "CCCP-Watch Automatik &quot;1966&quot;",
		"Automatik", "",
		"235", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-333119759.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/8605.jpg",
		90, 98,
		"8605", "CCCP-Watch Automatik &quot;1924&quot;",
		"Automatik", "",
		"210", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1215613054.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/5528.jpg",
		90, 98,
		"5528", "Aviator Wecker 43 mm",
		"Wecker", "",
		"235", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1267269019.htm",
		"", 1,
		"6B", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/5468.jpg",
		90, 95,
		"5468", "Chronograph Aeronavigator",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1268837488.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/5469.jpg",
		90, 95,
		"5469", "Chronograph Aeronavigator",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "1",
		"", "pd168684864.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/5468.jpg",
		90, 95,
		"5468.", "Chronograph Aeronavigator",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd466024976.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/5469.jpg",
		90, 95,
		"5469.", "Chronograph Aeronavigator",
		"Chronograph", "",
		"345", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1346825504.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/8700.jpg",
		90, 101,
		"8700", "CCCP-Watch Automatik &quot;1990&quot;",
		"Automatik", "",
		"155", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1270929192.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/8701.jpg",
		90, 105,
		"8701", "CCCP-Watch Automatik &quot;1990&quot;",
		"Automatik", "",
		"155", "0",
		"1", 1,
		"Stück", "6",
		"", "pd808145597.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/5075.jpg",
		90, 102,
		"5075", "Aviator Chronograph &quot;AXIOM&quot;",
		"Chronograph", "",
		"750", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1247564234.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/1570.jpg",
		90, 99,
		"1570", "Pilot Chronograph MIG-15 ",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1758593664.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/1571.jpg",
		90, 100,
		"1571", "Pilot Chronograph MIG-15 ",
		"Chronograph", "",
		"325", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2077061543.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/1254B.jpg",
		90, 102,
		"1254B", "Chronograph STRELA",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-205348679.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/5360.jpg",
		90, 102,
		"5360", "Moskau Classic Svesda Automatik",
		"Automatik", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd5602330.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/5361.jpg",
		90, 98,
		"5361", "Moskau Classic Svesda Automatik",
		"Automatik", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1056244088.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/5362.jpg",
		90, 96,
		"5362", "Moskau Classic Svesda Automatik",
		"Automatik", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd58498217.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/5363.jpg",
		90, 99,
		"5363", "Moskau Classic Svesda Automatik",
		"Automatik", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd405899014.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/5364.jpg",
		90, 101,
		"5364", "Moskau Classic Svesda Automatik",
		"Automatik", "",
		"200", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1611523359.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/0100M.jpg",
		90, 89,
		"0100M", "Glasboden - mattiert -alt",
		"Glasboden", "",
		"9", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-1387443833.htm",
		"", 1,
		"9C", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/0100P.jpg",
		90, 89,
		"0100P", "Glasboden - verchromt -alt",
		"Glasboden", "",
		"9", "0",
		"1", 1,
		"Stück", "14",
		"", "pd999755249.htm",
		"", 1,
		"9C", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/S136.jpg",
		90, 101,
		"S136", "Moskau Classic Chronograph &quot;Race&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1221634284.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/S137.jpg",
		90, 97,
		"S137", "Moskau Classic Chronograph &quot;Race&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd340614494.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/S138.jpg",
		90, 102,
		"S138", "Moskau Classic Chronograph &quot;Race&quot;",
		"Chronograph", "",
		"315", "0",
		"1", 1,
		"Stück", "1",
		"", "pd686121088.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/4195ABN.jpg",
		90, 98,
		"4195A", "Poljot Automatik 40 mm",
		"Automatik Uhr", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1517809858.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/5483.jpg",
		90, 94,
		"5483", "Moskau Classic &quot;Automatik 45 mm&quot;",
		"Automatik", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1093741459.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/5484.jpg",
		90, 96,
		"5484", "Moskau Classic &quot;Automatik 45 mm&quot;",
		"Automatik", "",
		"255", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1276884927.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/5485.jpg",
		90, 97,
		"5485", "Moskau Classic &quot;Automatik 45 mm&quot;",
		"Automatik", "",
		"265", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1568493775.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/4195AG.jpg",
		90, 98,
		"4195AG", "Poljot Automatik 43 mm",
		"Automatik Uhr", "",
		"285", "0",
		"1", 1,
		"Stück", "3",
		"", "pd399183042.htm",
		"", 1,
		"7A", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/5608.jpg",
		90, 95,
		"5608", "                                                              Moskau Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1288102979.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/5609.jpg",
		90, 93,
		"5609", "Moskau Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-942828838.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/5608.jpg",
		90, 95,
		"5608.", "Moskau Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1052917651.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/5609.jpg",
		90, 93,
		"5609.", "Moskau Classic &quot;Navigator&quot; Chronograph",
		"Chronograph", "",
		"375", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1315878764.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/5508.jpg",
		90, 94,
		"5508", "Moskau Classic &quot;Navigator&quot; ",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd297375239.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/5509.jpg",
		90, 95,
		"5509", "Moskau Classic &quot;Navigator&quot; ",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "4",
		"", "pd-786758354.htm",
		"", 1,
		"7B", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/5508.jpg",
		90, 94,
		"5508.", "Moskau Classic &quot;Navigator&quot; ",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "0",
		"", "pd542065547.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/5509.jpg",
		90, 95,
		"5509.", "Moskau Classic &quot;Navigator&quot; ",
		"Handaufzugsuhr", "",
		"245", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1690356290.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/8800.jpg",
		90, 100,
		"8800", "CCCP-Watch Handaufzug &quot;1968&quot;",
		"Handaufzug", "",
		"180", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1289596011.htm",
		"", 1,
		"7D", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/PB001.jpg",
		90, 93,
		"PB001", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "5",
		"", "pd116645275.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/PB002.jpg",
		90, 99,
		"PB002", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1743915329.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/PB003.jpg",
		90, 102,
		"PB003", "Polar Bear 24-Stunden Uhr",
		"24-Stundenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1993083561.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/B61001.jpg",
		90, 99,
		"B61001", "B-61 Gagarin ",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1048794973.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/B61002ZB.jpg",
		90, 69,
		"B61002", "B-61 Gagarin ",
		"Chronograph", "",
		"689", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-463019821.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/Pocket watch Basilika front.jpg",
		90, 87,
		"BT01", "Taschenuhr &quot;Basilika&quot;",
		"Taschenuhr", "",
		"499", "0",
		"1", 1,
		"Stück", "5",
		"", "pd249208633.htm",
		"", 1,
		"7C", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/Regulatoroffen1.jpg",
		90, 96,
		"9033.9940551.", "Regulator mit offenem Federhaus",
		"Handaufzugsuhr", "",
		"679", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1942004721.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/6015.jpg",
		90, 97,
		"6015", "                                                                   Poljot International Chronograph ",
		"Chronograph", "",
		"295", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1319873905.htm",
		"", 1,
		"6A", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/1250B24.jpg",
		90, 101,
		"1250B.", "Chronograph STRELA 24-Std.",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-710901990.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/1254B.jpg",
		90, 102,
		"1254B.", "Chronograph STRELA",
		"Chronograph", "",
		"425", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1349830678.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/1254NN.jpg",
		90, 103,
		"1254.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1224931794.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/1254NN.jpg",
		90, 103,
		".1254", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-193793970.htm",
		"", 1,
		"9M", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/1251.jpg",
		90, 102,
		"1251.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd717965194.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/1258.jpg",
		90, 104,
		"1258.", "           Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-592618618.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/1252B.jpg",
		90, 103,
		"1252B.", "Chronograph STRELA",
		"Chronograph", "",
		"385", "0",
		"1", 1,
		"Stück", "0",
		"", "pd2086198266.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/thumb/2703.jpg",
		90, 96,
		"2703", "Pilot Chronograph &quot;Borduhr&quot;",
		"Chronograph", "",
		"550", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1168638550.htm",
		"", 1,
		"6A", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};
