	// 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="../../images_navi/ph.gif" width="1" height="1" alt="" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + 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, "../plastik/arnold_gedanken_m.jpg",
140, 170,
"Walter Arnold", "Bewegte Gedanken, 1976, Ebenholz, H: 90 cm",
"", "",
"9800", "0",
"1", 1,
"Stück", "2",
"", "../arnold/arnold_gedanken.htm",
"", 1,
"1", "0",
1)
Entry[1] = new Element(
1, "../plastik/arnold_julia_m.jpg",
140, 170,
"Walter Arnold", "Bildnis Julia, 1977, Ebenholz, H: 37,5 cm",
"", "",
"5500", "0",
"1", 1,
"Stück", "2",
"", "../arnold/arnold_julia.htm",
"", 1,
"1", "0",
1)
Entry[2] = new Element(
2, "../plastik/arnold_daphne_m.jpg",
140, 170,
"Walter Arnold", "Daphne, 1977, Robinienholz, H: 141 cm",
"", "",
"12500", "0",
"1", 1,
"Stück", "2",
"", "../arnold/arnold_daphne.htm",
"", 1,
"1", "0",
1)
Entry[3] = new Element(
3, "../plastik/arnold_nereide_m.jpg",
140, 170,
"Walter Arnold", "Nereide (im Wasser Schreitende), 1978, Birnbaumholz, H: 42 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "2",
"", "../arnold/arnold_nereide.htm",
"", 1,
"1", "0",
1)
Entry[4] = new Element(
4, "../plastik/arnold_torso_laech_m.jpg",
140, 170,
"Walter Arnold", "Torso Lächelnde, 1977, Ebenholz, H: 53 cm",
"", "",
"7000", "0",
"1", 1,
"Stück", "2",
"", "../arnold/arnold_torso_laech.htm",
"", 1,
"1", "0",
1)
Entry[5] = new Element(
5, "../plastik/arnold_torso_path_m.jpg",
140, 170,
"Walter Arnold", "Torso Pathétique, 1977, Ebenholz, H: 51 cm",
"", "",
"6500", "0",
"1", 1,
"Stück", "2",
"", "../arnold/arnold_torso_path.htm",
"", 1,
"1", "0",
1)
Entry[6] = new Element(
6, "../grafik/balden_pieta_m.jpg",
140, 130,
"Theo Balden", "Pieta, 1979, Lithographie, 23,5 x 40 cm/35 x 49 cm",
"", "",
"380", "0",
"1", 1,
"Stück", "0",
"", "../balden/balden_pieta.htm",
"", 1,
"3", "0",
1)
Entry[7] = new Element(
7, "../plastik/balden_wind_m.jpg",
140, 170,
"Theo Balden", "Frau im Wind, 1967, Bronze, 50,5 x 41 x 23,5 cm",
"", "",
"9000", "0",
"1", 1,
"Stück", "2",
"", "../balden/balden_wind.htm",
"", 1,
"1", "0",
1)
Entry[8] = new Element(
8, "../plastik/balden_frau_spiegel_m.jpg",
140, 170,
"Theo Balden", "Frau vor dem Spiegel, 1980, Bronze, 20,5 x 12,5 x 11,5 cm",
"", "",
"3500", "0",
"1", 1,
"Stück", "2",
"", "../balden/balden_frau_spiegel.htm",
"", 1,
"1", "0",
1)
Entry[9] = new Element(
9, "../plastik/balden_meta_m.jpg",
140, 170,
"Theo Balden", "Metamorphose, 1980, Bronze, 39 x 40,5 x 27 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "2",
"", "../balden/balden_meta.htm",
"", 1,
"1", "0",
1)
Entry[10] = new Element(
10, "../plastik/balden_mutter_kind_m.jpg",
140, 170,
"Theo Balden", "Mutter und Kind, 1992, Bronze, 34,5 x 17 x 27,5 cm",
"", "",
"5500", "0",
"1", 1,
"Stück", "2",
"", "../balden/balden_mutter_kind.htm",
"", 1,
"1", "0",
1)
Entry[11] = new Element(
11, "../plastik/balden_ot_m.jpg",
140, 170,
"Theo Balden", "Sitzende, 1992, Bronze, 15 x 9,5 x 8,5 cm",
"", "",
"2500", "0",
"1", 1,
"Stück", "2",
"", "../balden/balden_ot.htm",
"", 1,
"1", "0",
1)
Entry[12] = new Element(
12, "../plastik/balden_sitz_48_m.jpg",
140, 170,
"Theo Balden", "Sitzende, 1948, Bronze, 50,5 x 25,5 x 25 cm",
"", "",
"7000", "0",
"1", 1,
"Stück", "2",
"", "../balden/balden_sitz_48.htm",
"", 1,
"1", "0",
1)
Entry[13] = new Element(
13, "../plastik/beber_abschied_m.jpg",
140, 170,
"Heinz Beberniß", "Abschied, 1980, Sandstein, H: 100 cm",
"", "",
"9500", "0",
"1", 1,
"Stück", "2",
"", "../beber/beber_abschied.htm",
"", 1,
"1", "0",
1)
Entry[14] = new Element(
14, "../plastik/beber_01_m.jpg",
140, 170,
"Heinz Beberniß", "Thalia, 1984, Bronze 2/2, H.: 70 cm",
"", "",
"3000", "0",
"1", 1,
"Stück", "2",
"", "../beber/beber_01.htm",
"", 1,
"1", "0",
1)
Entry[15] = new Element(
15, "../plastik/beber_torso_m.jpg",
140, 170,
"Heinz Beberniß", "Weiblicher Torso, 1987, Marmor, H.: 81 cm",
"", "",
"8800", "0",
"1", 1,
"Stück", "2",
"", "../beber/beber_torso.htm",
"", 1,
"1", "0",
1)
Entry[16] = new Element(
16, "../plastik/braun_she_m.jpg",
140, 170,
"Hanne Braun", "SCHEH., 1996, Steinguss, pateniert, H: 55 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../braun/braun_she.htm",
"", 1,
"1", "0",
1)
Entry[17] = new Element(
17, "../grafik/butz_mietshaus_m.jpg",
140, 170,
"Manfred Butzmann", "Berliner Mietshaus, 1991, Offsetlithographie 82/100, 58 x 41 cm",
"", "",
"340", "0",
"1", 1,
"Stück", "0",
"", "../butzmann/butz_mietshaus.htm",
"", 1,
"3", "0",
1)
Entry[18] = new Element(
18, "../grafik/butz_tuerme_m.jpg",
140, 170,
"Manfred Butzmann", "Berliner Türme, 1983, Offsetlithographie, PD, 79 x 56,7 cm",
"", "",
"340", "0",
"1", 1,
"Stück", "0",
"", "../butzmann/butz_tuerme.htm",
"", 1,
"3", "0",
1)
Entry[19] = new Element(
19, "../grafik/butz_fleck_m.jpg",
140, 170,
"Manfred Butzmann", "Dunkler Fleck, 1995, Offsetlithographie, 61 x 46,5 cm",
"", "",
"340", "0",
"1", 1,
"Stück", "0",
"", "../butzmann/butz_fleck.htm",
"", 1,
"3", "0",
1)
Entry[20] = new Element(
20, "../grafik/butz_gw_schatten_m.jpg",
140, 170,
"Manfred Butzmann", "Giebelwand mit Schatten, 1988, Offsetlithographie, PD, 63 x 41,5 cm",
"", "",
"340", "0",
"1", 1,
"Stück", "0",
"", "../butzmann/butz_gw_schatten.htm",
"", 1,
"3", "0",
1)
Entry[21] = new Element(
21, "../grafik/butz_giebelwand_m.jpg",
140, 170,
"Manfred Butzmann", "Schwarzer Giebel (Wollankstraße), 1999, Offsetlithographie, 64 x 47 cm",
"", "",
"340", "0",
"1", 1,
"Stück", "0",
"", "../butzmann/butz_giebelwand.htm",
"", 1,
"3", "0",
1)
Entry[22] = new Element(
22, "../grafik/butz_stadtbw_m.jpg",
140, 170,
"Manfred Butzmann", "Stadtbahnwinter, 1986, Offsetlithographie 76/80, 65 x 46,5 cm",
"", "",
"340", "0",
"1", 1,
"Stück", "0",
"", "../butzmann/butz_stadtbw.htm",
"", 1,
"3", "0",
1)
Entry[23] = new Element(
23, "../zeichnung/butz_oder_m.jpg",
140, 130,
"Manfred Butzmann", "An der Oder, 2001, Aquarell, 30 x 41 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "3",
"", "../butzmann/butz_oder.htm",
"", 1,
"4", "0",
1)
Entry[24] = new Element(
24, "../zeichnung/butz_vernchen_m.jpg",
140, 120,
"Manfred Butzmann", "Bei Vernchen (Mecklenburg), 1984, Aquarell, 23 x 36,5 cm",
"", "",
"800", "0",
"1", 1,
"Stück", "3",
"", "../butzmann/butz_vernchen.htm",
"", 1,
"4", "0",
1)
Entry[25] = new Element(
25, "../zeichnung/butz_teiche_m.jpg",
140, 130,
"Manfred Butzmann", "Schönerlinder Teiche, 2002, Aquarell, 26,5 x 41 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "3",
"", "../butzmann/butz_teiche.htm",
"", 1,
"4", "0",
1)
Entry[26] = new Element(
26, "../zeichnung/butz_uckerm_m.jpg",
140, 130,
"Manfred Butzmann", "Uckermärkische Landschaft, 1985, Aquarell, 27,7 x 37,2 cm",
"", "",
"950", "0",
"1", 1,
"Stück", "3",
"", "../butzmann/butz_uckerm.htm",
"", 1,
"4", "0",
1)
Entry[27] = new Element(
27, "../grafik/crem_christus_kreuz_m.jpg",
140, 170,
"Fritz Cremer", "Christus zerbricht das Kreuz, 1979, Lithographie, PD VII, 27 x 19,5 cm",
"", "",
"380", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_christus_kreuz.htm",
"", 1,
"3", "0",
1)
Entry[28] = new Element(
28, "../grafik/crem_frau_maed_m.jpg",
140, 130,
"Fritz Cremer", "Frauen und Mädchen, Blatt 1, 1959, Litographie, Feder, ohne Nummer, 21,2 x 32,3 cm",
"", "",
"400", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_frau_maed.htm",
"", 1,
"3", "0",
1)
Entry[29] = new Element(
29, "../grafik/crem_ikarus_m.jpg",
140, 170,
"Fritz Cremer", "Ikarus, 1985, Radierung ohne Auflage, 9,7 x 7 cm",
"", "",
"80", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_ikarus.htm",
"", 1,
"3", "0",
1)
Entry[30] = new Element(
30, "../grafik/crem_liebespaar_1972_m.jpg",
140, 130,
"Fritz Cremer", "Liebespaar, 1972, Radierung ohne Auflage, 15,3 x 25,6 cm",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_liebespaar_1972.htm",
"", 1,
"3", "0",
1)
Entry[31] = new Element(
31, "../grafik/crem_paar_sitz_m.jpg",
140, 170,
"Fritz Cremer", "Paar, o. J., Lithographie, PD, 20 x 14 cm",
"", "",
"220", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_paar_sitz.htm",
"", 1,
"3", "0",
1)
Entry[32] = new Element(
32, "../grafik/crem_liebespaar_1978_m.jpg",
140, 130,
"Fritz Cremer", "Paar, 1978, Lithographie, 23 x 25 cm",
"", "",
"400", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_liebespaar_1978.htm",
"", 1,
"3", "0",
1)
Entry[33] = new Element(
33, "../grafik/crem_sitzende_1987_m.jpg",
140, 170,
"Fritz Cremer", "Sitzende, 1987, Litographie, Feder/Kreide, ohne Nummer, 18,4 x 14,4 cm",
"", "",
"350", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_sitzende_1987.htm",
"", 1,
"3", "0",
1)
Entry[34] = new Element(
34, "../grafik/crem_sitzender_akt_m.jpg",
140, 170,
"Fritz Cremer", "Sitzender weiblicher Akt, 1988, Lithographie, Feder, ohne Nummer, 17 x 16 cm",
"", "",
"350", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_sitzender_akt.htm",
"", 1,
"3", "0",
1)
Entry[35] = new Element(
35, "../grafik/crem_umarmung_1986_m.jpg",
140, 170,
"Fritz Cremer", "Umarmung, 1986, Radierung ohne Auflage, 16,5 x 14,3 cm",
"", "",
"280", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_umarmung_1986.htm",
"", 1,
"3", "0",
1)
Entry[36] = new Element(
36, "../grafik/crem_gr_variation_m.jpg",
140, 170,
"Fritz Cremer", "Variation zum Gekreuzigten X, 1980, Lithographie, PD 1, 40,4 x 26,5 cm",
"", "",
"380", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_gr_variation.htm",
"", 1,
"3", "0",
1)
Entry[37] = new Element(
37, "../grafik/crem_walpurgisnacht_m.jpg",
140, 170,
"Fritz Cremer", "Walpurgisnacht, 1958/1992, Linolschnitt, 17,5 x 14 cm",
"", "",
"240", "0",
"1", 1,
"Stück", "0",
"", "../cremer/crem_walpurgisnacht.htm",
"", 1,
"3", "0",
1)
Entry[38] = new Element(
38, "../plastik/crem_rodin_m.jpg",
140, 170,
"Fritz Cremer", "Torso in Erinnerung an Rodin, 1948, Bronze 1/10, H: 76 cm",
"", "",
"15000", "0",
"1", 1,
"Stück", "2",
"", "../cremer/crem_rodin.htm",
"", 1,
"1", "0",
1)
Entry[39] = new Element(
39, "../malerei/crodel_figstil_m.jpg",
140, 170,
"Charles Crodel", "Figur und Stilleben, 1968, Öl auf Leinwand, 91 x 75 cm",
"", "",
"4000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_figstil.htm",
"", 1,
"2", "0",
1)
Entry[40] = new Element(
40, "../malerei/crodel_grls_m.jpg",
140, 130,
"Charles Crodel", "Griechische Landschaft, 1925, Öl auf Leinwand, 76 x 100 cm",
"", "",
"5000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_grls.htm",
"", 1,
"2", "0",
1)
Entry[41] = new Element(
41, "../malerei/crodel_schreber_m.jpg",
140, 130,
"Charles Crodel", "Hallescher Schrebergarten, 1970, Öl auf Leinwand, 52 x 149,8 cm",
"", "",
"3800", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_schreber.htm",
"", 1,
"2", "0",
1)
Entry[42] = new Element(
42, "../malerei/crodel_huehnerstall_m.jpg",
140, 130,
"Charles Crodel", "Hühnerstall, ca. 1928, Öl auf Leinwand, 49,2 x 65 cm",
"", "",
"5000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_huehnerstall.htm",
"", 1,
"2", "0",
1)
Entry[43] = new Element(
43, "../malerei/crodel_lesende_m.jpg",
140, 130,
"Charles Crodel", "Lesende, o. J., Öl auf Leinwand, 50 x 65 cm",
"", "",
"5000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_lesende.htm",
"", 1,
"2", "0",
1)
Entry[44] = new Element(
44, "../malerei/crodel_liegakt_m.jpg",
140, 130,
"Charles Crodel", "Liegender Akt, ca. 1970, Öl auf Leinwand, 86,2 x 126 cm",
"", "",
"5000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_liegakt.htm",
"", 1,
"2", "0",
1)
Entry[45] = new Element(
45, "../malerei/crodel_hund_m.jpg",
140, 130,
"Charles Crodel", "Mädchen mit Hund, o. J., Öl auf Pappe, 33,5 x 46 cm",
"", "",
"2500", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_hund.htm",
"", 1,
"2", "0",
1)
Entry[46] = new Element(
46, "../malerei/crodel_prozession_m.jpg",
140, 130,
"Charles Crodel", "Märchenhafte Prozession, o. J., Öl auf Pappe, 33,5 x 46 cm",
"", "",
"2500", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_prozession.htm",
"", 1,
"2", "0",
1)
Entry[47] = new Element(
47, "../malerei/crodel_markt_m.jpg",
140, 130,
"Charles Crodel", "Markt, ca. 1968, Öl auf Leinwand, 72 x 110,2 cm",
"", "",
"4000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_markt.htm",
"", 1,
"2", "0",
1)
Entry[48] = new Element(
48, "../malerei/crodel_mistress_m.jpg",
140, 130,
"Charles Crodel", "Painting Mistress World, 1965, Öl auf Leinwand, 73,2 x 129 cm",
"", "",
"5500", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_mistress.htm",
"", 1,
"2", "0",
1)
Entry[49] = new Element(
49, "../malerei/crodel_arbeiterinnen_m.jpg",
140, 130,
"Charles Crodel", "Ruhende Arbeiterin, o. J., Öl auf Pappe, 33,2 x 46,3 cm",
"", "",
"2500", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_arbeiterinnen.htm",
"", 1,
"2", "0",
1)
Entry[50] = new Element(
50, "../malerei/crodel_ruhende_papagei_m.jpg",
140, 130,
"Charles Crodel", "Ruhende mit Papagei, o. J., Öl auf Pappe, 33,2 x 46,2 cm",
"", "",
"2500", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_ruhende_papagei.htm",
"", 1,
"2", "0",
1)
Entry[51] = new Element(
51, "../malerei/crodel_schwedls_m.jpg",
140, 130,
"Charles Crodel", "Schwedische Landschaft, 1923, Öl auf Leinwand, 55,2 x 70,4 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_schwedls.htm",
"", 1,
"2", "0",
1)
Entry[52] = new Element(
52, "../malerei/crodel_schweine_m.jpg",
140, 170,
"Charles Crodel", "Schweinehof / verso: Tessalische Landschaft, 1921/26, Öl auf Leinwand, 70 x 55,5 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_schweine.htm",
"", 1,
"2", "0",
1)
Entry[53] = new Element(
53, "../malerei/crodel_suedl_lsch_m.jpg",
140, 130,
"Charles Crodel", "Südliche Landschaft, o. J., Öl auf Leinwand, 50,2 x 62,2 cm",
"", "",
"4000", "0",
"1", 1,
"Stück", "1",
"", "../crodel/crodel_suedl_lsch.htm",
"", 1,
"2", "0",
1)
Entry[54] = new Element(
54, "../malerei/daehn_sofia_m.jpg",
140, 130,
"Fritz Dähn", "Sofia I, 1971, Öl auf Hartfaser, 31 x 38 cm",
"", "",
"5200", "0",
"1", 1,
"Stück", "1",
"", "../daehn/daehn_sofia.htm",
"", 1,
"2", "0",
1)
Entry[55] = new Element(
55, "../malerei/daehn_uckerm_m.jpg",
140, 170,
"Fritz Dähn", "Uckermünde I, 1975, Öl auf Hartfaser, 40 x 40 cm",
"", "",
"6500", "0",
"1", 1,
"Stück", "1",
"", "../daehn/daehn_uckerm.htm",
"", 1,
"2", "0",
1)
Entry[56] = new Element(
56, "../plastik/dunkel_reiter_m.jpg",
140, 170,
"Joachim Dunkel", "Apokalyptische Reiter, 1960, Bronze montiert, 24 x 26 x 7,5 cm",
"", "",
"5000", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_reiter.htm",
"", 1,
"1", "0",
1)
Entry[57] = new Element(
57, "../plastik/dunkel_mino_eisen_m.jpg",
140, 170,
"Joachim Dunkel", "Eiserner Minotaurus, 1995 (Bronze: 1960), Eisen gerostet auf Eisenbahnschiene, 36 x 17 x 12 cm",
"", "",
"5100", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_mino_eisen.htm",
"", 1,
"1", "0",
1)
Entry[58] = new Element(
58, "../plastik/dunkel_axial_thonet_m.jpg",
140, 170,
"Joachim Dunkel", "Große axial Sitzende auf angegossenem Thonet-Stuhl, 1982, Bronze, 130 x 80 x 100 cm",
"", "",
"48000", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_axial_thonet.htm",
"", 1,
"1", "0",
1)
Entry[59] = new Element(
59, "../plastik/dunkel_leuchter_m.jpg",
140, 170,
"Joachim Dunkel", "Leuchter, 1971, Bronze, 19,5 x 14,5 cm",
"", "",
"3250", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_leuchter.htm",
"", 1,
"1", "0",
1)
Entry[60] = new Element(
60, "../plastik/dunkel_lieg_treibholz_m.jpg",
140, 130,
"Joachim Dunkel", "Liegende, 1979, Bronze auf Treibholz, 18,5 x 31 x 16,5 cm",
"", "",
"unverkäufliches Unikat", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_lieg_treibholz.htm",
"", 1,
"1", "0",
1)
Entry[61] = new Element(
61, "../plastik/dunkel_liegende_plinthe_m.jpg",
140, 130,
"Joachim Dunkel", "Liegende auf schmaler Plinthe, 1996, Bronze, 27 x 80 x 25 cm",
"", "",
"16000", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_liegende_plinthe.htm",
"", 1,
"1", "0",
1)
Entry[62] = new Element(
62, "../plastik/dunkel_lieg_resock_m.jpg",
140, 130,
"Joachim Dunkel", "Liegende weibliche Figur auf angegossenem Rechtecksockel, 1997, Bronze, 14,5 x 32 x 14 cm",
"", "",
"3000", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_lieg_resock.htm",
"", 1,
"1", "0",
1)
Entry[63] = new Element(
63, "../plastik/dunkel_tabakd_m.jpg",
140, 170,
"Joachim Dunkel", "Mittelgroße stehende weibliche Figur auf Standring (Tabakdose angegossen), 1985, Bronze (ohne Plinthe), H: 56 cm",
"", "",
"unverkäufliches Unikat", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_tabakd.htm",
"", 1,
"1", "0",
1)
Entry[64] = new Element(
64, "../plastik/dunkel_reitertorso_m.jpg",
140, 130,
"Joachim Dunkel", "Reitertorso, 1993, Bronze auf Baumscheibenkeil, 33 x 14 x 40 cm",
"", "",
"12000", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_reitertorso.htm",
"", 1,
"1", "0",
1)
Entry[65] = new Element(
65, "../plastik/dunkel_stier_m.jpg",
140, 130,
"Joachim Dunkel", "Stier, 1948, Bronze 2/8 (2010), 25 x 40 x 12 cm",
"", "",
"4900", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_stier.htm",
"", 1,
"1", "0",
1)
Entry[66] = new Element(
66, "../plastik/dunkel_wf_granit_m.jpg",
140, 170,
"Joachim Dunkel", "Weibliche Figur, sitzend, 1969, Bronze auf Granizylinder, 5/12, H: 13 cm",
"", "",
"2550", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_wf_granit.htm",
"", 1,
"1", "0",
1)
Entry[67] = new Element(
67, "../plastik/dunkel_torso_weibl_m.jpg",
140, 170,
"Joachim Dunkel", "Weiblicher Torso, 1955, Eisen auf Klinker , H: 23 cm",
"", "",
"3000", "0",
"1", 1,
"Stück", "2",
"", "../dunkel/dunkel_torso_weibl.htm",
"", 1,
"1", "0",
1)
Entry[68] = new Element(
68, "../plastik/esser_isola_m.jpg",
140, 170,
"Sarah Esser", "Isola, 2006, Bronze 2/5, H: 31 cm",
"", "",
"2000", "0",
"1", 1,
"Stück", "2",
"", "../esser/esser_isola.htm",
"", 1,
"1", "0",
1)
Entry[69] = new Element(
69, "../plastik/esser_01_m.jpg",
140, 170,
"Sarah Esser", "Mann mit Tasche, 2005, Bronze E.A., unverk., H: 40 cm",
"", "",
"2800", "0",
"1", 1,
"Stück", "2",
"", "../esser/esser_01.htm",
"", 1,
"1", "0",
1)
Entry[70] = new Element(
70, "../grafik/felixm_m.jpg",
140, 130,
"Conrad Felixmüller", "Pferdetransport, 1959, Holzschnitt, eines von 200 Exemplaren der Vorzugsausgaben der Gemäldemappe von E.A.Seemann, Leipzig 1959 , 19 x 27 cm",
"", "",
"400", "0",
"1", 1,
"Stück", "0",
"", "../felixm/felixm.htm",
"", 1,
"3", "0",
1)
Entry[71] = new Element(
71, "../grafik/foerst_sitz_m.jpg",
140, 170,
"Wieland Förster", "Einblick in Sitzende, 1972, Lithographie 11/15, 49 x 40 cm",
"", "",
"350", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_sitz.htm",
"", 1,
"3", "0",
1)
Entry[72] = new Element(
72, "../grafik/foerst_bein_m.jpg",
140, 170,
"Wieland Förster", "Einblick mit angezogenen Beinen, 1972, Lithographie 8/15, 49 x 40 cm",
"", "",
"350", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_bein.htm",
"", 1,
"3", "0",
1)
Entry[73] = new Element(
73, "../grafik/foerst_inseln_m.jpg",
140, 130,
"Wieland Förster", "Flugbild Schwimmende Inseln, 1993, Radierung 17/20 , 12 x 16,5 cm",
"", "",
"180", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_inseln.htm",
"", 1,
"3", "0",
1)
Entry[74] = new Element(
74, "../grafik/foerst_land_m.jpg",
140, 170,
"Wieland Förster", "Flugbild Von Land zu Land, 1993, Radierung 11/20, 19 x 14,5 cm",
"", "",
"200", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_land.htm",
"", 1,
"3", "0",
1)
Entry[75] = new Element(
75, "../grafik/foerst_vulk_m.jpg",
140, 170,
"Wieland Förster", "Flugbild Vulkanische Inseln, 1993, Radierung 14/20, 17 x 11,8 cm",
"", "",
"200", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_vulk.htm",
"", 1,
"3", "0",
1)
Entry[76] = new Element(
76, "../grafik/foerst_halblieg_m.jpg",
140, 130,
"Wieland Förster", "Halbliegende, 1979, Radierung 14/15, 14,5 x 19,5 cm",
"", "",
"220", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_halblieg.htm",
"", 1,
"3", "0",
1)
Entry[77] = new Element(
77, "../grafik/foerst_rueg_m.jpg",
140, 130,
"Wieland Förster", "Rügenmappe (fünf Radierungen), 1991, Radierung 19/20, je 20 x 26,5 cm (Blattgröße)",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_rueg.htm",
"", 1,
"3", "0",
1)
Entry[78] = new Element(
78, "../grafik/foerst_notre_m.jpg",
140, 130,
"Wieland Förster", "Versuch über Notre Dame, Paris, 1985, Radierung 11/24, 24 x 31,5 cm",
"", "",
"350", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_notre.htm",
"", 1,
"3", "0",
1)
Entry[79] = new Element(
79, "../grafik/foerst_wasser_m.jpg",
140, 170,
"Wieland Förster", "Wasserspeier von St. Severin, Paris, 1987, Radierung 9/20 , 14,5 x 9,5 cm",
"", "",
"190", "0",
"1", 1,
"Stück", "0",
"", "../foerster/foerst_wasser.htm",
"", 1,
"3", "0",
1)
Entry[80] = new Element(
80, "../plastik/foerst_daphne_1_m.jpg",
140, 170,
"Wieland Förster", "Daphne I, 1995, Bronze E.A., H: 25,3 cm",
"", "",
"3200", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_daphne_1.htm",
"", 1,
"1", "0",
1)
Entry[81] = new Element(
81, "../plastik/foerst_frau_sonne_m.jpg",
140, 170,
"Wieland Förster", "Frau in der Sonne, 1962, Bronze 1/6, 110 x 80 cm",
"", "",
"38000", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_frau_sonne.htm",
"", 1,
"1", "0",
1)
Entry[82] = new Element(
82, "../plastik/foerst_gr_daphne_m.jpg",
140, 170,
"Wieland Förster", "Große Daphne I, 1996, Bronze 2/5, H: 180 cm",
"", "",
"75000", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_gr_daphne.htm",
"", 1,
"1", "0",
1)
Entry[83] = new Element(
83, "../plastik/foerst_idol_1_m.jpg",
140, 170,
"Wieland Förster", "Idol I, 2000, Bronze 2/6, H: 28,8 cm",
"", "",
"4400", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_idol_1.htm",
"", 1,
"1", "0",
1)
Entry[84] = new Element(
84, "../plastik/foerst_idol_2_m.jpg",
140, 170,
"Wieland Förster", "Idol II, 2000, Bronze 6/6, H: 29,5 cm",
"", "",
"4200", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_idol_2.htm",
"", 1,
"1", "0",
1)
Entry[85] = new Element(
85, "../plastik/foerst_nike_2_m.jpg",
140, 170,
"Wieland Förster", "Kleine Nike II, 1995, Bronze 3/8, H: 51 cm",
"", "",
"9800", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_nike_2.htm",
"", 1,
"1", "0",
1)
Entry[86] = new Element(
86, "../plastik/foerst_nikefrag_m.jpg",
140, 170,
"Wieland Förster", "Kleines Nikefragment, 1998, Bronze 12/14, H: 21,8 cm",
"", "",
"3600", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_nikefrag.htm",
"", 1,
"1", "0",
1)
Entry[87] = new Element(
87, "../plastik/foerst_liegen_m.jpg",
140, 130,
"Wieland Förster", "Liegen, um 1980, Bronze 4/10, L: 36,5 cm",
"", "",
"6300", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_liegen.htm",
"", 1,
"1", "0",
1)
Entry[88] = new Element(
88, "../plastik/foerst_maen_2_m.jpg",
140, 170,
"Wieland Förster", "Mänade II, 2001, Bronze 5/6, H: 39,5 cm",
"", "",
"6900", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_maen_2.htm",
"", 1,
"1", "0",
1)
Entry[89] = new Element(
89, "../plastik/foerst_neeberger_m.jpg",
140, 170,
"Wieland Förster", "Torso der Großen Neeberger Figur, 1974/1995, Bronze 3/3, H: 106 cm",
"", "",
"42000", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_neeberger.htm",
"", 1,
"1", "0",
1)
Entry[90] = new Element(
90, "../plastik/foerst_torso_halbl_m.jpg",
140, 130,
"Wieland Förster", "Weiblicher Torso, halbliegend, 1978, Bronze 4/5, H: 32 cm",
"", "",
"12500", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_torso_halbl.htm",
"", 1,
"1", "0",
1)
Entry[91] = new Element(
91, "../plastik/foerst_weyla_m.jpg",
140, 170,
"Wieland Förster", "Weyla, 1970, Bronze 2/8, H: 71 cm",
"", "",
"18000", "0",
"1", 1,
"Stück", "2",
"", "../foerster/foerst_weyla.htm",
"", 1,
"1", "0",
1)
Entry[92] = new Element(
92, "../grafik/fussm_07_m.jpg",
140, 130,
"Klaus Fußmann", "Frühjahr bei Bobeck, 1999, Farblinolschnitt 77/95, 35,2 x 46,5 cm",
"", "",
"700", "0",
"1", 1,
"Stück", "0",
"", "../fussm/fussm_07.htm",
"", 1,
"3", "0",
1)
Entry[93] = new Element(
93, "../grafik/fussm_08_m.jpg",
140, 130,
"Klaus Fußmann", "Raps auf Beveroe, 2005, Farblinolschnitt 83/95, 30 x 42 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "0",
"", "../fussm/fussm_08.htm",
"", 1,
"3", "0",
1)
Entry[94] = new Element(
94, "../grafik/fussm_05_m.jpg",
140, 130,
"Klaus Fußmann", "Rudbeckia Magariten, 1998, Farbradierung 81/95, 38,5 x 47,5 cm",
"", "",
"850", "0",
"1", 1,
"Stück", "0",
"", "../fussm/fussm_05.htm",
"", 1,
"3", "0",
1)
Entry[95] = new Element(
95, "../grafik/griesh_affe_m.jpg",
140, 170,
"HAP Grieshaber", "Affenurgroßvater, 1962, Holzschnitt, ohne Auflage, 34,5 x 26 cm",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../griesh/griesh_affe.htm",
"", 1,
"3", "0",
1)
Entry[96] = new Element(
96, "../grafik/grz_w_hund_m.jpg",
140, 130,
"Waldemar Grzimek", "Angreifender Hund, 1958, Lithographie in zwei Farben, ohne Auflagennummer, 28,5 x 31,3 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "0",
"", "../grzimek_w/grz_w_hund.htm",
"", 1,
"3", "0",
1)
Entry[97] = new Element(
97, "../grafik/grz_w_loewe_stier_m.jpg",
140, 130,
"Waldemar Grzimek", "Löwe - Stier, 1975, Lithographie 90/120, 32 x 44 cm",
"", "",
"490", "0",
"1", 1,
"Stück", "0",
"", "../grzimek_w/grz_w_loewe_stier.htm",
"", 1,
"3", "0",
1)
Entry[98] = new Element(
98, "../grafik/grz_w_paar_li_m.jpg",
140, 170,
"Waldemar Grzimek", "Paar, o. J., Lithographie, PD, 51,5 x 38,5 cm",
"", "",
"420", "0",
"1", 1,
"Stück", "0",
"", "../grzimek_w/grz_w_paar_li.htm",
"", 1,
"3", "0",
1)
Entry[99] = new Element(
99, "../plastik/grz_w_brecht_m.jpg",
140, 170,
"Waldemar Grzimek", "Bert Brecht, 1958, Bronze, WG(E) 1/12, 57 x 30 x 23 cm",
"", "",
"12500", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_brecht.htm",
"", 1,
"1", "0",
1)
Entry[100] = new Element(
100, "../plastik/grz_w_boxer_m.jpg",
140, 130,
"Waldemar Grzimek", "Boxer, 1960, Bronze, WG(E) 1/12, 27,2 x 30 x 17 cm ",
"", "",
"5900", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_boxer.htm",
"", 1,
"1", "0",
1)
Entry[101] = new Element(
101, "../plastik/grz_sa_anna_m.jpg",
140, 170,
"Sabina Grzimek", "Büste Anna (Erste Fassung), 1994, Bronze 2/6, H: 48 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_s/grz_sa_anna.htm",
"", 1,
"1", "0",
1)
Entry[102] = new Element(
102, "../plastik/grz_w_elch_m.jpg",
140, 130,
"Waldemar Grzimek", "Elch, 1933, Bronze, WG(E) 1/12, 27,4 x 41 x 10 cm",
"", "",
"5200", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_elch.htm",
"", 1,
"1", "0",
1)
Entry[103] = new Element(
103, "../plastik/grz_w_wisent_m.jpg",
140, 130,
"Waldemar Grzimek", "Junger Wisent, 1932, Bronze, 13,6, x 18 x 7 cm",
"", "",
"2500", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_wisent.htm",
"", 1,
"1", "0",
1)
Entry[104] = new Element(
104, "../plastik/grz_w_kauernde_m.jpg",
140, 170,
"Waldemar Grzimek", "Kauernde, Zustand I, 1959, Bronze, WG(E) 1/8, 24 x 19 x 12 cm",
"", "",
"4800", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_kauernde.htm",
"", 1,
"1", "0",
1)
Entry[105] = new Element(
105, "../plastik/grz_w_kokette_m.jpg",
140, 170,
"Waldemar Grzimek", "Kokette, 1950, Bronze 2. Guss, H: 32 cm",
"", "",
"5800", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_kokette.htm",
"", 1,
"1", "0",
1)
Entry[106] = new Element(
106, "../plastik/grz_w_ital_m.jpg",
140, 170,
"Waldemar Grzimek", "Porträtkopf einer Italienerin, 1942, Bronze ohne Signatur, ohne Gießerstempel, H: 30 cm",
"", "",
"4200", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_ital.htm",
"", 1,
"1", "0",
1)
Entry[107] = new Element(
107, "../plastik/grz_sa_hwkopf_m.jpg",
140, 170,
"Sabina Grzimek", "Sich hochwendender Kopf, 1979-81, Bronze 3/6, H: 48 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_s/grz_sa_hwkopf.htm",
"", 1,
"1", "0",
1)
Entry[108] = new Element(
108, "../plastik/grz_w_taenz_2_m.jpg",
140, 170,
"Waldemar Grzimek", "Tänzerin II, 1967, Bronze, WG(E) 1/12, 43 x 23 x 27 cm",
"", "",
"9200", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_taenz_2.htm",
"", 1,
"1", "0",
1)
Entry[109] = new Element(
109, "../plastik/grz_w_wildschw_m.jpg",
140, 130,
"Waldemar Grzimek", "Wildschwein, 1959, Bronze, WG(E) 1/12, 22 x 28 x 12 cm ",
"", "",
"5200", "0",
"1", 1,
"Stück", "2",
"", "../grzimek_w/grz_w_wildschw.htm",
"", 1,
"1", "0",
1)
Entry[110] = new Element(
110, "../grafik/hampel_kalb_m.jpg",
140, 130,
"Angela Hampel", "Kalbantreiben, 1987, Lithographie 39/50, 40 x 53 cm",
"", "",
"290", "0",
"1", 1,
"Stück", "0",
"", "../hampel/hampel_kalb.htm",
"", 1,
"3", "0",
1)
Entry[111] = new Element(
111, "../grafik/heisig_lenin_m.jpg",
140, 170,
"Bernhard Heisig", "Lenin, o. J., Lithographie, ohne Auflage, 40 x 28 cm",
"", "",
"400", "0",
"1", 1,
"Stück", "0",
"", "../heisig/heisig_lenin.htm",
"", 1,
"3", "0",
1)
Entry[112] = new Element(
112, "../grafik/heisig_timofej_m.jpg",
140, 170,
"Bernhard Heisig", "Lenin und der ungläubige Timofej, o. J., Lithographie, ohne Auflage, 39 x 30 cm",
"", "",
"400", "0",
"1", 1,
"Stück", "0",
"", "../heisig/heisig_timofej.htm",
"", 1,
"3", "0",
1)
Entry[113] = new Element(
113, "../plastik/heller_wasser_m.jpg",
140, 130,
"Sabine Heller", "Im Wasser, 2005, Ziegel, engobiert, 34 x 25 x 13 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "2",
"", "../heller/heller_wasser.htm",
"", 1,
"1", "0",
1)
Entry[114] = new Element(
114, "../plastik/heller_braune_m.jpg",
140, 170,
"Sabine Heller", "Kleine Braune, 2001, Ziegel, engobiert, H.: 76 cm",
"", "",
"1900", "0",
"1", 1,
"Stück", "2",
"", "../heller/heller_braune.htm",
"", 1,
"1", "0",
1)
Entry[115] = new Element(
115, "../plastik/heller_rosa_tuch_m.jpg",
140, 170,
"Sabine Heller", "Rosa mit Tuch, 2007, Ziegel, engobiert, 125 x 35 x 30 cm",
"", "",
"4200", "0",
"1", 1,
"Stück", "2",
"", "../heller/heller_rosa_tuch.htm",
"", 1,
"1", "0",
1)
Entry[116] = new Element(
116, "../plastik/heller_sonntagskleid_m.jpg",
140, 170,
"Sabine Heller", "Sonntagskleid, 2001, Ziegel, engobiert, 85 x 30 x 30 cm",
"", "",
"3900", "0",
"1", 1,
"Stück", "2",
"", "../heller/heller_sonntagskleid.htm",
"", 1,
"1", "0",
1)
Entry[117] = new Element(
117, "../plastik/heller_weiszer_m_torso_m.jpg",
140, 170,
"Sabine Heller", "Weißer männlicher Torso, 2008, Ziegel, engobiert, 38 x 14 x 13 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "2",
"", "../heller/heller_weiszer_m_torso.htm",
"", 1,
"1", "0",
1)
Entry[118] = new Element(
118, "../plastik/henkel_chora_1_m.jpg",
140, 130,
"Friedrich B. Henkel", "Chora I, 1996, Marmor, 27,5 x 26 x 23 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_chora_1.htm",
"", 1,
"1", "0",
1)
Entry[119] = new Element(
119, "../plastik/henkel_doppelz_m.jpg",
140, 130,
"Friedrich B. Henkel", "Doppel-Zeichen, 2010, Rogenstein, 35 x 44 x 5 cm",
"", "",
"3500", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_doppelz.htm",
"", 1,
"1", "0",
1)
Entry[120] = new Element(
120, "../plastik/henkel_llauf_2_m.jpg",
140, 170,
"Friedrich B. Henkel", "Ein Lebenslauf II, 2006, roter Sandstein, H: 54 cm",
"", "",
"5000", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_llauf_2.htm",
"", 1,
"1", "0",
1)
Entry[121] = new Element(
121, "../plastik/henkel_exot_m.jpg",
140, 130,
"Friedrich B. Henkel", "Exotisches Gewächs, 2002, farbiger Speckstein, 21 x 21 x 5,5 cm",
"", "",
"4000", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_exot.htm",
"", 1,
"1", "0",
1)
Entry[122] = new Element(
122, "../plastik/henkel_bergstadt_m.jpg",
140, 130,
"Friedrich B. Henkel", "Italienische Bergstadt, 1992, Marmor, 26 x 35 x 10 cm",
"", "",
"7000", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_bergstadt.htm",
"", 1,
"1", "0",
1)
Entry[123] = new Element(
123, "../plastik/henkel_meteora_m.jpg",
140, 170,
"Friedrich B. Henkel", "Kleiner Meteorafelsen, 1992, Marmor, H: 29,5 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_meteora.htm",
"", 1,
"1", "0",
1)
Entry[124] = new Element(
124, "../plastik/henkel_taubenhaus_m.jpg",
140, 130,
"Friedrich B. Henkel", "Kyladisches Taubenhaus, 2010, Kalksandstein, 15 x 15 x 9 cm",
"", "",
"2000", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_taubenhaus.htm",
"", 1,
"1", "0",
1)
Entry[125] = new Element(
125, "../plastik/henkel_lanave_m.jpg",
140, 130,
"Friedrich B. Henkel", "La Nave va (nach Fellini Schrift der Träume), 2006, hellgrüner Speckstein, 21 x 34 cm",
"", "",
"4600", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_lanave.htm",
"", 1,
"1", "0",
1)
Entry[126] = new Element(
126, "../plastik/henkel_maedkopf_m.jpg",
140, 170,
"Friedrich B. Henkel", "Mädchenkopf, 2006, rosa Speckstein, 24 x 23 x 17 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_maedkopf.htm",
"", 1,
"1", "0",
1)
Entry[127] = new Element(
127, "../plastik/henkel_ot_durchbr_m.jpg",
140, 130,
"Friedrich B. Henkel", "o. T. (durchbrochene Skulptur), 2002, Alabaster, 21 x 37,5 cm",
"", "",
"4000", "0",
"1", 1,
"Stück", "2",
"", "../henkel/henkel_ot_durchbr.htm",
"", 1,
"1", "0",
1)
Entry[128] = new Element(
128, "../plastik/hess_apfeless_1_m.jpg",
140, 170,
"Richard Heß", "Apfelesserin I, 2009, Bronze 1/5, 27 x 10 13 cm",
"", "",
"2900", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_apfeless_1.htm",
"", 1,
"1", "0",
1)
Entry[129] = new Element(
129, "../plastik/hess_sitzende_m.jpg",
140, 170,
"Richard Heß", "Ausruhende II, 1997, Bronze 2/5, 24 x 11,5 x 9 cm",
"", "",
"2800", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_sitzende.htm",
"", 1,
"1", "0",
1)
Entry[130] = new Element(
130, "../plastik/hess_badende_4_m.jpg",
140, 170,
"Richard Heß", "Badende IV, 1988, Bronze 3/3, 140 x 43 x 40 cm",
"", "",
"35000", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_badende_4.htm",
"", 1,
"1", "0",
1)
Entry[131] = new Element(
131, "../plastik/hess_eule_m.jpg",
140, 170,
"Richard Heß", "Eule, 2002, Bronze 2/5, 45 x 31 x 26 cm",
"", "",
"11500", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_eule.htm",
"", 1,
"1", "0",
1)
Entry[132] = new Element(
132, "../plastik/hess_frau_kind_4_m.jpg",
140, 170,
"Richard Heß", "Frau mit Kind IV, 2000, Bronze 2/6, 55 x 15,5 x 13,5 cm",
"", "",
"8800", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_frau_kind_4.htm",
"", 1,
"1", "0",
1)
Entry[133] = new Element(
133, "../plastik/hess_satyr_m.jpg",
140, 170,
"Richard Heß", "Kleiner Satyr, 2007, Bronze 1/5, 23,5 11 x 7,5 cm",
"", "",
"2800", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_satyr.htm",
"", 1,
"1", "0",
1)
Entry[134] = new Element(
134, "../plastik/hess_labella_m.jpg",
140, 170,
"Richard Heß", "La bella Cesenata, 2000, Bronze 2/5, 55 x 36,5 x 29 cm",
"", "",
"14000", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_labella.htm",
"", 1,
"1", "0",
1)
Entry[135] = new Element(
135, "../plastik/hess_mann_kind_3_m.jpg",
140, 170,
"Richard Heß", "Mann mit Kind III, 2008, Bronze 3/5, 24 x 16 x 16 cm",
"", "",
"3500", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_mann_kind_3.htm",
"", 1,
"1", "0",
1)
Entry[136] = new Element(
136, "../plastik/hess_melanch_1_m.jpg",
140, 170,
"Richard Heß", "Melancholie I, 2008, Bronze 1/5, 36 x 11,5 x 17,5 cm",
"", "",
"7200", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_melanch_1.htm",
"", 1,
"1", "0",
1)
Entry[137] = new Element(
137, "../plastik/hess_pan_3_m.jpg",
140, 170,
"Richard Heß", "Pan III, 2004, Bronze 1/3, 111 x 42 x 42 cm",
"", "",
"21000", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_pan_3.htm",
"", 1,
"1", "0",
1)
Entry[138] = new Element(
138, "../plastik/hess_sibylle_m.jpg",
140, 170,
"Richard Heß", "Sibylle, 1985, Bronze 3/3, 129 x 35 x 30 cm",
"", "",
"29000", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_sibylle.htm",
"", 1,
"1", "0",
1)
Entry[139] = new Element(
139, "../plastik/hess_sitzende_kissen_2_m.jpg",
140, 170,
"Richard Heß", "Sitzende auf Kissen II, 2003, Bronze 1/2, 65 x 38 x 57 cm",
"", "",
"22000", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_sitzende_kissen_2.htm",
"", 1,
"1", "0",
1)
Entry[140] = new Element(
140, "../plastik/hess_toilette_2_m.jpg",
140, 170,
"Richard Heß", "Toilette II, 1995, Bronze 3 /5, 68,5 x 22 x 34 cm",
"", "",
"14500", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_toilette_2.htm",
"", 1,
"1", "0",
1)
Entry[141] = new Element(
141, "../plastik/hess_traeumende_1_m.jpg",
140, 170,
"Richard Heß", "Träumende I, 1967, Bronze 3/3, 67 x 24 x 35 cm",
"", "",
"19500", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_traeumende_1.htm",
"", 1,
"1", "0",
1)
Entry[142] = new Element(
142, "../plastik/hess_zeitleser_2_m.jpg",
140, 170,
"Richard Heß", "Zeitungsleser II, 2004, Bronze 2/5, 25,5 x 11 x 12 cm",
"", "",
"2900", "0",
"1", 1,
"Stück", "2",
"", "../hess/hess_zeitleser_2.htm",
"", 1,
"1", "0",
1)
Entry[143] = new Element(
143, "../malerei/hoppe_apfel_1_m.jpg",
140, 130,
"Peter Hoppe", "Äpfel I, 2000, Öl/Tempera auf Leinwand, 60 x 70 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "1",
"", "../hoppe/hoppe_apfel_1.htm",
"", 1,
"2", "0",
1)
Entry[144] = new Element(
144, "../malerei/hoppe_apfel_4_m.jpg",
140, 130,
"Peter Hoppe", "Äpfel IV, 2000, Öl/Tempera auf Leinwand, 60 x 70 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "1",
"", "../hoppe/hoppe_apfel_4.htm",
"", 1,
"2", "0",
1)
Entry[145] = new Element(
145, "../malerei/hoppe_flowers_6_m.jpg",
140, 130,
"Peter Hoppe", "Flowers 6 Lilium, 2005, Öl/Tempera auf Leinwand, 80 x 80 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "1",
"", "../hoppe/hoppe_flowers_6.htm",
"", 1,
"2", "0",
1)
Entry[146] = new Element(
146, "../malerei/hoppe_flowers_8_m.jpg",
140, 170,
"Peter Hoppe", "Flowers 8, 2005, Öl/Tempera auf Leinwand, 80 x 80 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "1",
"", "../hoppe/hoppe_flowers_8.htm",
"", 1,
"2", "0",
1)
Entry[147] = new Element(
147, "../malerei/hoppe_stilleben_1_m.jpg",
140, 130,
"Peter Hoppe", "Stillleben I, 1998, Öl/Tempera auf Leinwand, 70 x 80 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "1",
"", "../hoppe/hoppe_stilleben_1.htm",
"", 1,
"2", "0",
1)
Entry[148] = new Element(
148, "../plastik/hunz_erde_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Die Erde, 1999, Bronze 3/6, 34 x 25 x 15 cm",
"", "",
"4900", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_erde.htm",
"", 1,
"1", "0",
1)
Entry[149] = new Element(
149, "../plastik/hunz_lut_neruda_1_m.jpg",
140, 130,
"Ingeborg Hunzinger", "Die Lebenden und die Toten (nach Pablo Neruda) I, 1981, Bronze 4/10, 6 x 13 x 3 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_lut_neruda_1.htm",
"", 1,
"1", "0",
1)
Entry[150] = new Element(
150, "../plastik/hunz_lut_neruda_2_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Die Lebenden und die Toten (nach Pablo Neruda) II, 1981, Bronze 4/10, 19,5 x 9 x 4 cm",
"", "",
"1600", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_lut_neruda_2.htm",
"", 1,
"1", "0",
1)
Entry[151] = new Element(
151, "../plastik/hunz_lut_neruda_3_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Die Lebenden und die Toten (nach Pablo Neruda) III, 1981, Bronze 4/10, 17 x 5,5 x 3 cm",
"", "",
"1400", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_lut_neruda_3.htm",
"", 1,
"1", "0",
1)
Entry[152] = new Element(
152, "../plastik/hunz_junge_hund_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Kleiner Junge mit Hund, 1957, Bronze 1/6, 61,6 x 21 x 11 cm",
"", "",
"5900", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_junge_hund.htm",
"", 1,
"1", "0",
1)
Entry[153] = new Element(
153, "../plastik/hunz_maedchen_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Mädchen mit gefalteten Händen, ca. 1940, Bronze,1/6, 63 x 22 x 18 cm",
"", "",
"5600", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_maedchen.htm",
"", 1,
"1", "0",
1)
Entry[154] = new Element(
154, "../plastik/hunz_lux_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Rosa Luxemburg, 2003, Bronze 3/10, H: 28 cm",
"", "",
"3800", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_lux.htm",
"", 1,
"1", "0",
1)
Entry[155] = new Element(
155, "../plastik/hunz_maedchen_schr_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Schreitendes Mädchen, 50er Jahre, Bronze 1/6, 63 x 27 x 17 cm",
"", "",
"5800", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_maedchen_schr.htm",
"", 1,
"1", "0",
1)
Entry[156] = new Element(
156, "../plastik/hunz_maedchen_st_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Stehendes Mädchen, 1961, Bronze 2/2, 99 x 20 x 20 cm",
"", "",
"12000", "0",
"1", 1,
"Stück", "2",
"", "../hunzinger/hunz_maedchen_st.htm",
"", 1,
"1", "0",
1)
Entry[157] = new Element(
157, "../zeichnung/hunz_oliven_m.jpg",
140, 130,
"Ingeborg Hunzinger", "Olivenhain Sizilien, o. J., Aquarell, 43,5 x 59 cm",
"", "",
"2000", "0",
"1", 1,
"Stück", "3",
"", "../hunzinger/hunz_oliven.htm",
"", 1,
"4", "0",
1)
Entry[158] = new Element(
158, "../zeichnung/hunz_siz_2_m.jpg",
140, 170,
"Ingeborg Hunzinger", "Sizilien II, o. J., Aquarell/Bleistift, 49,5 x 40 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "3",
"", "../hunzinger/hunz_siz_2.htm",
"", 1,
"4", "0",
1)
Entry[159] = new Element(
159, "../grafik/janssen_fontane_m.jpg",
140, 170,
"Horst Janssen", "Theodor Fontane, 1970, Lithographie, ohne Auflage, 24,5 x 38 cm",
"", "",
"390", "0",
"1", 1,
"Stück", "0",
"", "../janssen/janssen_fontane.htm",
"", 1,
"3", "0",
1)
Entry[160] = new Element(
160, "../plastik/jastram_haendler_m.jpg",
140, 170,
"Jo Jastram", "Afrikanischer Händler, 1983, Bronze 4/10, 45,5 x 29,5 x 13 cm",
"", "",
"9800", "0",
"1", 1,
"Stück", "2",
"", "../jastram/jastram_haendler.htm",
"", 1,
"1", "0",
1)
Entry[161] = new Element(
161, "../plastik/jastram_einbaum_m.jpg",
140, 130,
"Jo Jastram", "Einbaumtraum, 1999, Bronze 1/5, 67 x 100 x 15 cm",
"", "",
"14000", "0",
"1", 1,
"Stück", "2",
"", "../jastram/jastram_einbaum.htm",
"", 1,
"1", "0",
1)
Entry[162] = new Element(
162, "../plastik/jastram_fohlen_m.jpg",
140, 130,
"Jo Jastram", "Grasendes Fohlen, 1964, Bronze 2/22, 15 x 20 x 6 cm",
"", "",
"3400", "0",
"1", 1,
"Stück", "2",
"", "../jastram/jastram_fohlen.htm",
"", 1,
"1", "0",
1)
Entry[163] = new Element(
163, "../plastik/jastram_boot_m.jpg",
140, 170,
"Jo Jastram", "Mond im Boot, 2008, Bronze 15/22, 54,5 x 38 x 5 cm",
"", "",
"6800", "0",
"1", 1,
"Stück", "2",
"", "../jastram/jastram_boot.htm",
"", 1,
"1", "0",
1)
Entry[164] = new Element(
164, "../plastik/jastram_stelzen_m.jpg",
140, 170,
"Jo Jastram", "Stelzengänger, 1998, Bronze 1/8, 81,5 x 57 x 26 cm",
"", "",
"19800", "0",
"1", 1,
"Stück", "2",
"", "../jastram/jastram_stelzen.htm",
"", 1,
"1", "0",
1)
Entry[165] = new Element(
165, "../plastik/karlovski_david_m.jpg",
140, 130,
"Michael Karlovski", "David, 2005, Bronze 2/6, H: 14 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_david.htm",
"", 1,
"1", "0",
1)
Entry[166] = new Element(
166, "../plastik/karlovski_ewa_m.jpg",
140, 170,
"Michael Karlovski", "Ewa (Torso), 2003, Bronze E.A., 48 x 20 x 12 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_ewa.htm",
"", 1,
"1", "0",
1)
Entry[167] = new Element(
167, "../plastik/karlovski_harlekin_m.jpg",
140, 170,
"Michael Karlovski", "Harlekin (Büste), 2011, Bronze pateniert, coloriert, A.E., 23 x 15 x 12 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_harlekin.htm",
"", 1,
"1", "0",
1)
Entry[168] = new Element(
168, "../plastik/karlovski_unecht_engel_m.jpg",
140, 170,
"Michael Karlovski", "Kopf (unechter Engel), 2000, Bronze 6/10, 14 x 16 x 12 cm",
"", "",
"900", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_unecht_engel.htm",
"", 1,
"1", "0",
1)
Entry[169] = new Element(
169, "../plastik/karlovski_pandora_m.jpg",
140, 170,
"Michael Karlovski", "Pandora, 2008, Bronze 1/6, H: 92 cm",
"", "",
"8500", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_pandora.htm",
"", 1,
"1", "0",
1)
Entry[170] = new Element(
170, "../plastik/karlovski_reiter_m.jpg",
140, 170,
"Michael Karlovski", "Reiter, 2005/08, Bronze bemalt, 3/6, 86 x 78 x 34 cm",
"", "",
"8500", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_reiter.htm",
"", 1,
"1", "0",
1)
Entry[171] = new Element(
171, "../plastik/karlovski_zeuss_m.jpg",
140, 130,
"Michael Karlovski", "Zeuss und Europa, 1992, Bronze, teilweise vergoldet, 10/10, 40 x 53 x 38 cm",
"", "",
"3000", "0",
"1", 1,
"Stück", "2",
"", "../karlovski/karlovski_zeuss.htm",
"", 1,
"1", "0",
1)
Entry[172] = new Element(
172, "../plastik/kasper_kopf_m.jpg",
140, 170,
"Ludwig Kasper", "Mädchenbüste Hildchen, 1939, Bronze, 2. Guss, 46 x 30 x 18 cm",
"", "",
"12000", "0",
"1", 1,
"Stück", "2",
"", "../kasper/kasper_kopf.htm",
"", 1,
"1", "0",
1)
Entry[173] = new Element(
173, "../plastik/krause_apollo_pegasus_m.jpg",
140, 130,
"Karl-Heinz Krause", "Apollo auf Pegasus in der Sonnenscheibe, 1993, Bronze 2/12, 24 x 37 xm",
"", "",
"4800", "0",
"1", 1,
"Stück", "2",
"", "../krause/krause_apollo_pegasus.htm",
"", 1,
"1", "0",
1)
Entry[174] = new Element(
174, "../plastik/krause_hypocampus_m.jpg",
140, 130,
"Karl-Heinz Krause", "Hypocampos, 1988, Bronze E.A., 12 x 16,5 cm",
"", "",
"1600", "0",
"1", 1,
"Stück", "2",
"", "../krause/krause_hypocampus.htm",
"", 1,
"1", "0",
1)
Entry[175] = new Element(
175, "../plastik/krause_theseus_m.jpg",
140, 130,
"Karl-Heinz Krause", "Theseus tötet Minotaurus, 1993, Bronze 2/12, 19 x 23 cm",
"", "",
"3600", "0",
"1", 1,
"Stück", "2",
"", "../krause/krause_theseus.htm",
"", 1,
"1", "0",
1)
Entry[176] = new Element(
176, "../malerei/yong_mal_64_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Entwicklung, 2005/06, Mischtechnik auf Leinwand, 80 x 40 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_64.htm",
"", 1,
"2", "0",
1)
Entry[177] = new Element(
177, "../malerei/yong_mal_65_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Entwicklung, 2005/06, Mischtechnik auf Leinwand, 80 x 40 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_65.htm",
"", 1,
"2", "0",
1)
Entry[178] = new Element(
178, "../malerei/yong_mal_67_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Entwicklung, 2005/06, Mischtechnik auf Leinwand, 80 x 40 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_67.htm",
"", 1,
"2", "0",
1)
Entry[179] = new Element(
179, "../malerei/yong_mal_56_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Gestern, 2006, Öl auf Leinwand, 80 x 60 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_56.htm",
"", 1,
"2", "0",
1)
Entry[180] = new Element(
180, "../malerei/yong_mal_54_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Heute, 2006, Öl auf Leinwand, 80 x 60 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_54.htm",
"", 1,
"2", "0",
1)
Entry[181] = new Element(
181, "../malerei/yong_mal_52_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong III Yin Yangel, 2006, Öl auf Leinwand, 80 x 60 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_52.htm",
"", 1,
"2", "0",
1)
Entry[182] = new Element(
182, "../malerei/yong_mal_58_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Morgen, 2006, Öl auf Leinwand, 80 x 60 cm",
"", "",
"1200", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_58.htm",
"", 1,
"2", "0",
1)
Entry[183] = new Element(
183, "../malerei/yong_mal_50_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong VII, 2006, Öl auf Leinwand, 129 x 90 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_50.htm",
"", 1,
"2", "0",
1)
Entry[184] = new Element(
184, "../malerei/yong_mal_44_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong XIII, 2006, Öl auf Leinwand, 120 x 90 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "1",
"", "../liu/yong_mal_44.htm",
"", 1,
"2", "0",
1)
Entry[185] = new Element(
185, "../plastik/yong_pla_02_m.jpg",
140, 170,
"Yonggang Liu", "Ai Yong Skulptur, 2006, Marmor, 50 x 35 x 17 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "2",
"", "../liu/yong_pla_02.htm",
"", 1,
"1", "0",
1)
Entry[186] = new Element(
186, "../malerei/marx_affenk_m.jpg",
140, 170,
"Carl Marx", "Die Lieblingsfrau des Affenkönigs, 1983, Öl auf Hartfaser, 62 x 64,7 cm",
"", "",
"4200", "0",
"1", 1,
"Stück", "1",
"", "../marx/marx_affenk.htm",
"", 1,
"2", "0",
1)
Entry[187] = new Element(
187, "../zeichnung/marx_artistin_pferd_m.jpg",
140, 170,
"Carl Marx", "Artistin mit Pferd, o. J., Tusche auf Papier, 59,5 x 42 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_artistin_pferd.htm",
"", 1,
"4", "0",
1)
Entry[188] = new Element(
188, "../zeichnung/marx_clown_m.jpg",
140, 170,
"Carl Marx", "Clown mit Geige, o. J., Tusche auf Papier, 29,8 x 20,8 cm",
"", "",
"240", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_clown.htm",
"", 1,
"4", "0",
1)
Entry[189] = new Element(
189, "../zeichnung/marx_halbakt_m.jpg",
140, 130,
"Carl Marx", "Halbakt, o. J., Tusche auf Papier, 59,5 x 42 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_halbakt.htm",
"", 1,
"4", "0",
1)
Entry[190] = new Element(
190, "../zeichnung/marx_rock_m.jpg",
140, 170,
"Carl Marx", "Im Rock, o. J., Tusche auf Papier, 59,5 x 42 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_rock.htm",
"", 1,
"4", "0",
1)
Entry[191] = new Element(
191, "../zeichnung/marx_knie_steh_m.jpg",
140, 130,
"Carl Marx", "Kniende und Stehende, o. J., Filzstift auf Papier, 20,8 x 29,8 cm",
"", "",
"240", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_knie_steh.htm",
"", 1,
"4", "0",
1)
Entry[192] = new Element(
192, "../zeichnung/marx_liebesszenen_m.jpg",
140, 130,
"Carl Marx", "Liebesszenen, o. J., Filzstift auf Papier, 20,8 x 29,8 cm",
"", "",
"240", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_liebesszenen.htm",
"", 1,
"4", "0",
1)
Entry[193] = new Element(
193, "../zeichnung/marx_sitzende_m.jpg",
140, 130,
"Carl Marx", "Sitzende, o. J., Filzstift auf Papier, 20,8 x 29,8 cm",
"", "",
"240", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_sitzende.htm",
"", 1,
"4", "0",
1)
Entry[194] = new Element(
194, "../zeichnung/marx_sitzende_hut_m.jpg",
140, 170,
"Carl Marx", "Sitzende mit Hut, 1980, Tusche auf Papier, 59,5 x 42 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_sitzende_hut.htm",
"", 1,
"4", "0",
1)
Entry[195] = new Element(
195, "../zeichnung/marx_zwei_bad_m.jpg",
140, 170,
"Carl Marx", "Zwei im Bad, o. J., Tusche auf Papier, 59,5 x 42 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_zwei_bad.htm",
"", 1,
"4", "0",
1)
Entry[196] = new Element(
196, "../zeichnung/marx_zwei_badeanzug_m.jpg",
140, 170,
"Carl Marx", "Zwei im Badeanzug, o. J., Tusche auf Papier, 59,5 x 42 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "3",
"", "../marx/marx_zwei_badeanzug.htm",
"", 1,
"4", "0",
1)
Entry[197] = new Element(
197, "../grafik/moe_o_felsenufer_m.jpg",
140, 130,
"Otto Möhwald", "Felsenufer der Saale, 1989, Lithographie von zwei Steinen 62/100, 32 x 42 / 48,2 x 58,2 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_felsenufer.htm",
"", 1,
"3", "0",
1)
Entry[198] = new Element(
198, "../grafik/moe_o_hgruppe_m.jpg",
140, 130,
"Otto Möhwald", "Häusergruppe, 1989, Lithographie (Kreide/Spritzton) 62/100, 33 x 41,5 / 49 x 58,8 cm",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_hgruppe.htm",
"", 1,
"3", "0",
1)
Entry[199] = new Element(
199, "../grafik/moe_o_int_2_m.jpg",
140, 130,
"Otto Möhwald", "Interieur, 1989, Lithographie (Kreide/Spritzton/Lavierung) 62/100, 39 x 46 / 49 x 58,8 cm",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_int_2.htm",
"", 1,
"3", "0",
1)
Entry[200] = new Element(
200, "../grafik/moe_o_akt_bett_m.jpg",
140, 170,
"Otto Möhwald", "Liegender Akt auf Bett, 1989, Lithographie von zwei Steinen (Kreide/ Lavierung) 62/100, 39 x 38 / 59 x 48,5 cm",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_akt_bett.htm",
"", 1,
"3", "0",
1)
Entry[201] = new Element(
201, "../grafik/moe_o_rakt_m.jpg",
140, 130,
"Otto Möhwald", "Rückenakt, 1989, Lithographie von zwei Steinen 62/100, 39,5 x 47,5 / 48,5 x 60 cm",
"", "",
"420", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_rakt.htm",
"", 1,
"3", "0",
1)
Entry[202] = new Element(
202, "../grafik/moe_o_rakt_tuer_m.jpg",
140, 130,
"Otto Möhwald", "Rückenakt, durch Tür gehend, 1989, Lithographie 62/100, 40,7 x 46 / 49 x 59 cm",
"", "",
"420", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_rakt_tuer.htm",
"", 1,
"3", "0",
1)
Entry[203] = new Element(
203, "../grafik/moe_o_seitenstr_m.jpg",
140, 170,
"Otto Möhwald", "Seitengasse, 1989, Lithographie (Kreide/Spritzton) 62/100, 43,5 x 31,5 / 59 x 48,5 cm",
"", "",
"450", "0",
"1", 1,
"Stück", "0",
"", "../moe_o/moe_o_seitenstr.htm",
"", 1,
"3", "0",
1)
Entry[204] = new Element(
204, "../zeichnung/moe_o_str_halle_m.jpg",
140, 130,
"Otto Möhwald", "Straße in Halle, 1998, Aquarell, 46,5 x 54 cm",
"", "",
"1400", "0",
"1", 1,
"Stück", "3",
"", "../moe_o/moe_o_str_halle.htm",
"", 1,
"4", "0",
1)
Entry[205] = new Element(
205, "../malerei/nossky_cornwall_m.jpg",
140, 130,
"Dietrich Noßky", "Cornwall, 1996, Acryl auf Leinwand, 80 x 100 cm",
"", "",
"2600", "0",
"1", 1,
"Stück", "1",
"", "../nossky/nossky_cornwall.htm",
"", 1,
"2", "0",
1)
Entry[206] = new Element(
206, "../malerei/nossky_inter_rot_m.jpg",
140, 170,
"Dietrich Noßky", "Interieur mit Rot, 2003, Acryl auf Leinwand, 100 x 80 cm",
"", "",
"2600", "0",
"1", 1,
"Stück", "1",
"", "../nossky/nossky_inter_rot.htm",
"", 1,
"2", "0",
1)
Entry[207] = new Element(
207, "../malerei/nossky_koerbe_m.jpg",
140, 130,
"Dietrich Noßky", "Strandkörbe, 2009, Acryl auf Leinwand, 60 x 70 cm",
"", "",
"2200", "0",
"1", 1,
"Stück", "1",
"", "../nossky/nossky_koerbe.htm",
"", 1,
"2", "0",
1)
Entry[208] = new Element(
208, "../malerei/nossky_sued_meer_m.jpg",
140, 130,
"Dietrich Noßky", "Südliches Meer, 2009, Acryl auf Leinwand, 50 x 60 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "1",
"", "../nossky/nossky_sued_meer.htm",
"", 1,
"2", "0",
1)
Entry[209] = new Element(
209, "../malerei/nossky_usedom_m.jpg",
140, 130,
"Dietrich Noßky", "Usedom, 2006, Acryl auf Leinwand, 80 x 100 cm",
"", "",
"2600", "0",
"1", 1,
"Stück", "1",
"", "../nossky/nossky_usedom.htm",
"", 1,
"2", "0",
1)
Entry[210] = new Element(
210, "../malerei/nossky_vulk_strand_m.jpg",
140, 130,
"Dietrich Noßky", "Vulkanischer Strand, 2002, Acryl auf Leinwand, 50 x 60 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "1",
"", "../nossky/nossky_vulk_strand.htm",
"", 1,
"2", "0",
1)
Entry[211] = new Element(
211, "../plastik/otto_alter_mann_m.jpg",
140, 170,
"Waldemar Otto", "Alter Mann, 2008, Bronze 3/12, H: 48,7 cm",
"", "",
"5800", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_alter_mann.htm",
"", 1,
"1", "0",
1)
Entry[212] = new Element(
212, "../plastik/otto_alter_mann_2_m.jpg",
140, 170,
"Waldemar Otto", "Alter Mann II, 2008, Bronze 3/12, H: 60 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_alter_mann_2.htm",
"", 1,
"1", "0",
1)
Entry[213] = new Element(
213, "../plastik/otto_gew_04_m.jpg",
140, 170,
"Waldemar Otto", "Figur mit Gewand IV, 2003, Bronze 1/12, H: 40 cm",
"", "",
"3800", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_gew_04.htm",
"", 1,
"1", "0",
1)
Entry[214] = new Element(
214, "../plastik/otto_gew_05_m.jpg",
140, 170,
"Waldemar Otto", "Figur mit Gewand V, 2003, Bronze 1/12, H: 62 cm",
"", "",
"4900", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_gew_05.htm",
"", 1,
"1", "0",
1)
Entry[215] = new Element(
215, "../plastik/otto_gew_40_m.jpg",
140, 170,
"Waldemar Otto", "Frau mit Gewand XXXX, 2005, Bronze 1/6, H: 109 cm",
"", "",
"15000", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_gew_40.htm",
"", 1,
"1", "0",
1)
Entry[216] = new Element(
216, "../plastik/otto_herbst_m.jpg",
140, 170,
"Waldemar Otto", "Herbstallegorie (mit einem Gedicht des Bildhauers), 1986, Bronze 2/6, H: 136 cm",
"", "",
"43000", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_herbst.htm",
"", 1,
"1", "0",
1)
Entry[217] = new Element(
217, "../plastik/otto_hermes_m.jpg",
140, 170,
"Waldemar Otto", "Hermes II, 1995, Bronze, H: 30,5 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_hermes.htm",
"", 1,
"1", "0",
1)
Entry[218] = new Element(
218, "../plastik/otto_mann_2006_m.jpg",
140, 170,
"Waldemar Otto", "Mann, 2006, Bronze 3/12, H: 44,8 cm",
"", "",
"3200", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_mann_2006.htm",
"", 1,
"1", "0",
1)
Entry[219] = new Element(
219, "../plastik/otto_mann_stehend_2_m.jpg",
140, 170,
"Waldemar Otto", "Mann stehend II, 2006, Bronze 1/12, H: 60 cm",
"", "",
"4800", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_mann_stehend_2.htm",
"", 1,
"1", "0",
1)
Entry[220] = new Element(
220, "../plastik/otto_tbv_m.jpg",
140, 170,
"Waldemar Otto", "T. B. V., 1999, Bronze 6/20, H: 23,4 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_tbv.htm",
"", 1,
"1", "0",
1)
Entry[221] = new Element(
221, "../plastik/otto_torso_22_m.jpg",
140, 170,
"Waldemar Otto", "Weiblicher Torso XXII, 1998, Bronze 2/6, H: 109 cm",
"", "",
"29000", "0",
"1", 1,
"Stück", "2",
"", "../otto/otto_torso_22.htm",
"", 1,
"1", "0",
1)
Entry[222] = new Element(
222, "../plastik/pans_maedchen_m.jpg",
140, 170,
"Emerita Pansowová", "Kleine Stehende, 1972, Bronze 6/6, 59,5 x 14,5 x 14,5 cm",
"", "",
"7000", "0",
"1", 1,
"Stück", "2",
"", "../pans/pans_maedchen.htm",
"", 1,
"1", "0",
1)
Entry[223] = new Element(
223, "../malerei/paris_fischergarten_m.jpg",
140, 130,
"Ronald Paris", "Fischergarten Ahrenshoop, 2005, Öl auf Leinwand, 54 x67 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "1",
"", "../paris/paris_fischergarten.htm",
"", 1,
"2", "0",
1)
Entry[224] = new Element(
224, "../malerei/paris_naxos_m.jpg",
140, 130,
"Ronald Paris", "Garten vom Hotel Naxos, Sizilien, 2009, Öl auf Leinwand, 41 x 60 cm",
"", "",
"3750", "0",
"1", 1,
"Stück", "1",
"", "../paris/paris_naxos.htm",
"", 1,
"2", "0",
1)
Entry[225] = new Element(
225, "../malerei/paris_toskana_m.jpg",
140, 130,
"Ronald Paris", "Gegenlicht. Bucht von Boratti, Toskana, 2005, Öl auf Leinwand, 50 x 60 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "1",
"", "../paris/paris_toskana.htm",
"", 1,
"2", "0",
1)
Entry[226] = new Element(
226, "../malerei/paris_bornholm_m.jpg",
140, 130,
"Ronald Paris", "Hafen von Svaneke, Bornholm, 2005, Öl auf Leinwand, 62 x 92 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "1",
"", "../paris/paris_bornholm.htm",
"", 1,
"2", "0",
1)
Entry[227] = new Element(
227, "../malerei/paris_herbst_bodden_m.jpg",
140, 130,
"Ronald Paris", "Herbst am Bodden, Ahrenshoop, 2005, Öl auf Leinwand, 41 x 60 cm",
"", "",
"3750", "0",
"1", 1,
"Stück", "1",
"", "../paris/paris_herbst_bodden.htm",
"", 1,
"2", "0",
1)
Entry[228] = new Element(
228, "../plastik/rast_balance_m.jpg",
140, 130,
"Susanne Rast", "Balance, 2000, Bronze 1/5, 20 x 85 x 11 cm",
"", "",
"2600", "0",
"1", 1,
"Stück", "2",
"", "../rast/rast_balance.htm",
"", 1,
"1", "0",
1)
Entry[229] = new Element(
229, "../plastik/rast_taenz_m.jpg",
140, 170,
"Susanne Rast", "Tänzerin, 1998, Bronze 2/5, 92 x 24 x 22 cm",
"", "",
"7000", "0",
"1", 1,
"Stück", "2",
"", "../rast/rast_taenz.htm",
"", 1,
"1", "0",
1)
Entry[230] = new Element(
230, "../plastik/rast_torso_ton_m.jpg",
140, 170,
"Susanne Rast", "Torso vom hohen Ton, 2001, Bronze 4/10, 60 x 7 x 13 cm",
"", "",
"2800", "0",
"1", 1,
"Stück", "2",
"", "../rast/rast_torso_ton.htm",
"", 1,
"1", "0",
1)
Entry[231] = new Element(
231, "../plastik/rast_vater_kind_m.jpg",
140, 170,
"Susanne Rast", "Vater und Tochter, 2000, Bronze 2/5, 46 x 8 x 7 cm",
"", "",
"2200", "0",
"1", 1,
"Stück", "2",
"", "../rast/rast_vater_kind.htm",
"", 1,
"1", "0",
1)
Entry[232] = new Element(
232, "../plastik/reuter_moses_2_m.jpg",
140, 170,
"Erich F. Reuter", "Moses II, 1958, Bronze, 83 x 14 x 10 cm",
"", "",
"6900", "0",
"1", 1,
"Stück", "2",
"", "../reuter/reuter_moses_2.htm",
"", 1,
"1", "0",
1)
Entry[233] = new Element(
233, "../plastik/reuter_orion_2_m.jpg",
140, 170,
"Erich F. Reuter", "Orion II, 1963, Bronze, Unikat, H: 64 cm",
"", "",
"4200", "0",
"1", 1,
"Stück", "2",
"", "../reuter/reuter_orion_2.htm",
"", 1,
"1", "0",
1)
Entry[234] = new Element(
234, "../plastik/reuter_phryne_m.jpg",
140, 170,
"Erich F. Reuter", "Phryne, 1985, Bronze 3/5 , 35 x 14 x 14 cm",
"", "",
"5800", "0",
"1", 1,
"Stück", "2",
"", "../reuter/reuter_phryne.htm",
"", 1,
"1", "0",
1)
Entry[235] = new Element(
235, "../plastik/reuter_stelen_a_m.jpg",
140, 170,
"Erich F. Reuter", "Wald der Stelen, Detail, 1970 - 72, Bronze, Unikat, H: 98 cm",
"", "",
"2400", "0",
"1", 1,
"Stück", "2",
"", "../reuter/reuter_stelen_1.htm",
"", 1,
"1", "0",
1)
Entry[236] = new Element(
236, "../plastik/reuter_stelen_b_m.jpg",
140, 170,
"Erich F. Reuter", "Wald der Stelen, Detail, 1970 - 72, Bronze, Unikat, H: 96 cm",
"", "",
"2200", "0",
"1", 1,
"Stück", "2",
"", "../reuter/reuter_stelen_2.htm",
"", 1,
"1", "0",
1)
Entry[237] = new Element(
237, "../plastik/reuter_stelen_c_m.jpg",
140, 170,
"Erich F. Reuter", "Wald der Stelen, Detail, 1970 - 72, Bronze, Unikat, H: 72 cm",
"", "",
"2000", "0",
"1", 1,
"Stück", "2",
"", "../reuter/reuter_stelen_3.htm",
"", 1,
"1", "0",
1)
Entry[238] = new Element(
238, "../grafik/richter_mutter_kind_m.jpg",
140, 170,
"Hans Theo Richter", "Mutter und Kind, 1964, Lithographie, ohne Auflage, 23 x 20 cm",
"", "",
"480", "0",
"1", 1,
"Stück", "0",
"", "../richter/richter_mutter_kind.htm",
"", 1,
"3", "0",
1)
Entry[239] = new Element(
239, "../plastik/riehl_pl16_m.jpg",
140, 130,
"Robert Riehl", "Große Liegende, 1969, Bronze 1/6, L: 52 cm",
"", "",
"5800", "0",
"1", 1,
"Stück", "2",
"", "../riehl/riehl_pl16.htm",
"", 1,
"1", "0",
1)
Entry[240] = new Element(
240, "../plastik/riehl_kl_liegende_m.jpg",
140, 130,
"Robert Riehl", "Kleine Liegende, o. J., Bronze 1/6, 9 x 18 x 13 cm",
"", "",
"1500", "0",
"1", 1,
"Stück", "2",
"", "../riehl/riehl_kl_liegende.htm",
"", 1,
"1", "0",
1)
Entry[241] = new Element(
241, "../plastik/riehl_muki_2_m.jpg",
140, 130,
"Robert Riehl", "Mutter und Kind II, um 1970, Bronze 1/6, L: 18 cm",
"", "",
"1400", "0",
"1", 1,
"Stück", "2",
"", "../riehl/riehl_muki_2.htm",
"", 1,
"1", "0",
1)
Entry[242] = new Element(
242, "../plastik/riehl_pl18_m.jpg",
140, 130,
"Robert Riehl", "Niederkauernde, o. J., Bronze 1/6, H: 30,5 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../riehl/riehl_pl18.htm",
"", 1,
"1", "0",
1)
Entry[243] = new Element(
243, "../plastik/riehl_pl28_m.jpg",
140, 170,
"Robert Riehl", "Zusammengesunkener, o. J., Plastelin (Bronzeguss verfügbar), H: 16,5 cm",
"", "",
"2000", "0",
"1", 1,
"Stück", "2",
"", "../riehl/riehl_pl28.htm",
"", 1,
"1", "0",
1)
Entry[244] = new Element(
244, "../grafik/rosenh_huhn_m.jpg",
140, 170,
"Theodor Rosenhauer", "Huhn, o. J., Holzschnitt, Handabzug, ",
"", "",
"600", "0",
"1", 1,
"Stück", "0",
"", "../rosenh/rosenh_huhn.htm",
"", 1,
"3", "0",
1)
Entry[245] = new Element(
245, "../plastik/schoelzel_alte_m.jpg",
140, 170,
"Jutta Schölzel", "Alte, 1997, Bronze 1/6, 32 x 15 x 15 cm",
"", "",
"4600", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_alte.htm",
"", 1,
"1", "0",
1)
Entry[246] = new Element(
246, "../plastik/schoelzel_enge_m.jpg",
140, 170,
"Jutta Schölzel", "Enge, 2000, Ziegel/Bronze, Unikat, 25 x 10,5 x 6,5 cm",
"", "",
"800", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_enge.htm",
"", 1,
"1", "0",
1)
Entry[247] = new Element(
247, "../plastik/schoelzel_flugv_m.jpg",
140, 170,
"Jutta Schölzel", "Flugversuch, 1999, Ziegel/Bronze, Unikat, 22 x 10,5 x 5,5 cm",
"", "",
"800", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_flugv.htm",
"", 1,
"1", "0",
1)
Entry[248] = new Element(
248, "../plastik/schoelzel_gesch_m.jpg",
140, 170,
"Jutta Schölzel", "Geschützt, 2000, Ziegel/Bronze, Unikat, 4,5 x 11 x 5,5 cm",
"", "",
"800", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_gesch.htm",
"", 1,
"1", "0",
1)
Entry[249] = new Element(
249, "../plastik/schoelzel_landschaft_m.jpg",
140, 130,
"Jutta Schölzel", "Landschaft, 2007, Speckstein, 17,5 x 29 x 13,5 cm",
"", "",
"5600", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_landschaft.htm",
"", 1,
"1", "0",
1)
Entry[250] = new Element(
250, "../plastik/schoelzel_liegend_m.jpg",
140, 130,
"Jutta Schölzel", "Liegend, 1998, Sandstein, 30 x 42 x 12 cm",
"", "",
"4600", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_liegend.htm",
"", 1,
"1", "0",
1)
Entry[251] = new Element(
251, "../plastik/schoelzel_sitzend_m.jpg",
140, 170,
"Jutta Schölzel", "Sitzend, 2012, Speckstein, 21 x 10 x 6 cm",
"", "",
"1600", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_sitzend.htm",
"", 1,
"1", "0",
1)
Entry[252] = new Element(
252, "../plastik/schoelzel_torso_m.jpg",
140, 170,
"Jutta Schölzel", "Torso, 2000, Serpentin, 62,5 x 20,5 x 15 cm",
"", "",
"9400", "0",
"1", 1,
"Stück", "2",
"", "../schoelzel/schoelzel_torso.htm",
"", 1,
"1", "0",
1)
Entry[253] = new Element(
253, "../plastik/schwarzbach_plage_m.jpg",
140, 130,
"Franziska Schwarzbach", "Bettelnder weiblicher Plagegeist, 2005, Eisen mit Sockel, 70 x 50 x 30 cm",
"", "",
"9000", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_plage.htm",
"", 1,
"1", "0",
1)
Entry[254] = new Element(
254, "../plastik/schwarzbach_cellist_m.jpg",
140, 170,
"Franziska Schwarzbach", "Cellist (Mstislav Rostropovich), 2008, Bronze 2/4, 32 x 21 x 25 cm",
"", "",
"3800", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_cellist.htm",
"", 1,
"1", "0",
1)
Entry[255] = new Element(
255, "../plastik/schwarzbach_gebr_m.jpg",
140, 170,
"Franziska Schwarzbach", "Gebrochen, 1986/92, Bronze 1/4, 61 x 14,5 x 18,5 cm",
"", "",
"7000", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_gebr.htm",
"", 1,
"1", "0",
1)
Entry[256] = new Element(
256, "../plastik/schwarzbach_irrlicht_m.jpg",
140, 170,
"Franziska Schwarzbach", "Irrlicht, 2005, Eisen mit Sockel, 34 x 34 x 25 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_irrlicht.htm",
"", 1,
"1", "0",
1)
Entry[257] = new Element(
257, "../plastik/schwarzbach_kind_hund_m.jpg",
140, 130,
"Franziska Schwarzbach", "Kind mit Hund, 1991, Bronze 1/6, 38 x 54 x 21 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_kind_hund.htm",
"", 1,
"1", "0",
1)
Entry[258] = new Element(
258, "../plastik/schwarzbach_kaiserin_m.jpg",
140, 170,
"Franziska Schwarzbach", "Kindliche Kaiserin, 1989, Bronze 1/6, 72 x 26,5 x 23 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_kaiserin.htm",
"", 1,
"1", "0",
1)
Entry[259] = new Element(
259, "../plastik/schwarzbach_amor_m.jpg",
140, 170,
"Franziska Schwarzbach", "Kleiner Amor, 2009, Bronze 1/12, 9,2 x 4 x 4 cm",
"", "",
"600", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_amor.htm",
"", 1,
"1", "0",
1)
Entry[260] = new Element(
260, "../plastik/schwarzbach_krieger_m.jpg",
140, 170,
"Franziska Schwarzbach", "Kleiner Krieger, 1986/92, Bronze, 50,5 x 31 x 21 cm",
"", "",
"6000", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_krieger.htm",
"", 1,
"1", "0",
1)
Entry[261] = new Element(
261, "../plastik/schwarzbach_mesch_pferd_m.jpg",
140, 170,
"Franziska Schwarzbach", "Mesch mit Pferd (0hne mein Pferd bin ich kein Mensch), 1995, Bronze 2/4, 43 x 28 x 28 cm",
"", "",
"4900", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_mesch_pferd.htm",
"", 1,
"1", "0",
1)
Entry[262] = new Element(
262, "../plastik/schwarzbach_paul_m.jpg",
140, 170,
"Franziska Schwarzbach", "Porträt Paul, 1992, Bronze 3/6, 28 x 30 x 24 cm",
"", "",
"4500", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_paul.htm",
"", 1,
"1", "0",
1)
Entry[263] = new Element(
263, "../plastik/schwarzbach_pubertaet_m.jpg",
140, 170,
"Franziska Schwarzbach", "Pubertät auf Rädern, 1986/89, Eisen, Sandguss, 130 x 50 x 50 cm",
"", "",
"unverkäufliches Unikat", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_pubertaet.htm",
"", 1,
"1", "0",
1)
Entry[264] = new Element(
264, "../plastik/schwarzbach_sekt_m.jpg",
140, 170,
"Franziska Schwarzbach", "Sektkorkenweibchen, 2009, Bronze 2/12, 11 x 3 x 2,5cm",
"", "",
"800", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_sekt.htm",
"", 1,
"1", "0",
1)
Entry[265] = new Element(
265, "../plastik/schwarzbach_bock_m.jpg",
140, 130,
"Franziska Schwarzbach", "Sündenbock, 2010, Bronze 2/6, 9,5 x 15 x 5 cm",
"", "",
"1100", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_bock.htm",
"", 1,
"1", "0",
1)
Entry[266] = new Element(
266, "../plastik/schwarzbach_junges_m.jpg",
140, 170,
"Franziska Schwarzbach", "Wilddrudenjunges, 2005, Eisen mit Sockel, 37 x 50 x 25 cm",
"", "",
"7500", "0",
"1", 1,
"Stück", "2",
"", "../schwarzbach/schwarzbach_junges.htm",
"", 1,
"1", "0",
1)
Entry[267] = new Element(
267, "../grafik/sitte_muetter_m.jpg",
140, 170,
"Willi Sitte", "Böser Vogelflug, 1958, Holzschnitt, Jahresgabe des Coburger Kunstvereins, 42 x 28 cm",
"", "",
"380", "0",
"1", 1,
"Stück", "0",
"", "../sitte/sitte_muetter.htm",
"", 1,
"3", "0",
1)
Entry[268] = new Element(
268, "../grafik/stro_markt_m.jpg",
140, 130,
"Ursula Strozynski", "Am Hackschen Markt, 1984, Aquatinta 17/25, 31 x 40 cm",
"", "",
"300", "0",
"1", 1,
"Stück", "0",
"", "../stro/stro_markt.htm",
"", 1,
"3", "0",
1)
Entry[269] = new Element(
269, "../grafik/stro_friedh_m.jpg",
140, 170,
"Ursula Strozynski", "Friedhof im Winter, 1992, Kaltnadel 19/35, 55 x 35 cm",
"", "",
"320", "0",
"1", 1,
"Stück", "0",
"", "../stro/stro_friedh.htm",
"", 1,
"3", "0",
1)
Entry[270] = new Element(
270, "../grafik/stro_nachsaison_6_m.jpg",
140, 130,
"Ursula Strozynski", "Nachsaison VI, 2000, Kaltnadel, 30 x 49 cm",
"", "",
"280", "0",
"1", 1,
"Stück", "0",
"", "../stro/stro_nachsaison_6.htm",
"", 1,
"3", "0",
1)
Entry[271] = new Element(
271, "../grafik/stro_ostkreuz_m.jpg",
140, 130,
"Ursula Strozynski", "Ostkreuz, 1980, Aquatinta 5/25/II, 20 x 26,5 cm",
"", "",
"280", "0",
"1", 1,
"Stück", "0",
"", "../stro/stro_ostkreuz.htm",
"", 1,
"3", "0",
1)
Entry[272] = new Element(
272, "../grafik/stro_prenzl_m.jpg",
140, 130,
"Ursula Strozynski", "S-Bahnhof Prenzlauer Allee, 1982, Aquatinta 17/25, 20,5 x 30 cm",
"", "",
"280", "0",
"1", 1,
"Stück", "0",
"", "../stro/stro_prenzl.htm",
"", 1,
"3", "0",
1)
Entry[273] = new Element(
273, "../grafik/tapies_m.jpg",
140, 130,
"Antoni Tápies", "Paralléle, 1984, Farblithographie auf Bütten, 83,3 x 90,8 cm",
"", "",
"1900", "0",
"1", 1,
"Stück", "0",
"", "../tapies/tapies.htm",
"", 1,
"3", "0",
1)
Entry[274] = new Element(
274, "../grafik/vent_onh_m.jpg",
140, 170,
"Hans Vent", "Homage an O N H, 1977, Radierung E A, 32,3 x 32,7 cm",
"", "",
"400", "0",
"1", 1,
"Stück", "0",
"", "../vent/vent_onh.htm",
"", 1,
"3", "0",
1)
Entry[275] = new Element(
275, "../malerei/wagner_abend_m.jpg",
140, 130,
"Veronika Wagner", "Am Abend, 1988, Öl auf Hartfaser, 35 x 71 cm",
"", "",
"1400", "0",
"1", 1,
"Stück", "1",
"", "../wagner/wagner_abend.htm",
"", 1,
"2", "0",
1)
Entry[276] = new Element(
276, "../malerei/wagner_herbst_m.jpg",
140, 130,
"Veronika Wagner", "Herbst, 1985, Öl auf Hartfaser, 52 x 72 cm",
"", "",
"1500", "0",
"1", 1,
"Stück", "1",
"", "../wagner/wagner_herbst.htm",
"", 1,
"2", "0",
1)
Entry[277] = new Element(
277, "../malerei/wagner_kanal_m.jpg",
140, 130,
"Veronika Wagner", "Kanal, 1984, Öl auf Leinwand, 50,5 x 65 cm",
"", "",
"1500", "0",
"1", 1,
"Stück", "1",
"", "../wagner/wagner_kanal.htm",
"", 1,
"2", "0",
1)
Entry[278] = new Element(
278, "../malerei/wagner_seeblick_m.jpg",
140, 130,
"Veronika Wagner", "Seeblick, 1982, Öl auf Leinwand, 65 x 80 cm",
"", "",
"1800", "0",
"1", 1,
"Stück", "1",
"", "../wagner/wagner_seeblick.htm",
"", 1,
"2", "0",
1)
Entry[279] = new Element(
279, "../malerei/wagner_still_86_m.jpg",
140, 130,
"Veronika Wagner", "Stillleben, 1986, Öl auf Hartfaser, 28 x 35cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "1",
"", "../wagner/wagner_still_86.htm",
"", 1,
"2", "0",
1)
Entry[280] = new Element(
280, "../malerei/wagner_still_85_m.jpg",
140, 130,
"Veronika Wagner", "Stillleben mit Anspritzer, 1985, Öl auf Leinwand, 30 x 40 cm",
"", "",
"1000", "0",
"1", 1,
"Stück", "1",
"", "../wagner/wagner_still_85.htm",
"", 1,
"2", "0",
1)

 

// ** 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>Bitte überprüfen Sie die Angaben in den Suchfeldern.</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();
			};
		};
