<?xml version="1.0"?>
<!-- results.html -->
<html>
	<head>
		<!-- EDITABLE REGION: ENTER PAGE TITLE HERE -->
		<title>Brooklyn Children's Museum: Collections Central Online</title>
		<!-- END EDITABLE REGION -->
		<!-- INCLUDE THE MAIN SITE STYLE SHEET -->
		<link rel="stylesheet" type="text/css" media="screen,print" href="../js_and_css/main.css"/>
		<script language="Javascript">


//alert("Loading script.html");

function clearNew()
{
	//clear the 'new' values which are used for page navigation
	// (this protects against problems occuring when the user clicks the
	// browser 'back' button)

	//&newvalues=1 flags the beginning of any 'new' state values that get set for navigation
	//Clear out any existing before setting.

	var i = document.frm.action.indexOf('&newvalues');
	if(i>0)
	{
		document.frm.action = document.frm.action.substr(0,i);
	}
}

function linksearch(profile, fieldname, fieldvalue, style, searchdesc)
{
	clearNew();
	document.frm.emu_action.value = 'searchrequest';
	var searchop = 'is';

        if (profile == "objects") {
	   searchop = ':';
	}

	//Build the URL-encoded search string
	document.frm.action += '&newvalues=1&rawsearch=' + fieldname + '/,/' + searchop + '/,/' + fieldvalue + '/,/false&newstyle=' + style + '&newprofile=' + profile + '&newsearchdesc=' + searchdesc + '&newcurrentrecord=1';
	document.frm.submit();
}

function singleview(newpage)
{
	clearNew();
  	document.frm.emu_action.value = 'newpage';
	document.frm.action += '&newvalues=1&newstyle=single&newcurrentrecord=' + newpage;
	document.frm.submit();
}

function submitpage(action,para)
{
	clearNew();
  	document.frm.emu_action.value = action;
  	var cS;
  	if (document.frm.action.indexOf("?")==-1){cS='?'}else{cS='&'}

	switch (action)
	{
	case 'newpage' :
		document.frm.action += cS + 'newvalues=1&newcurrentrecord=' + para;
	  	break
	case 'style' :
	  	document.frm.action += cS + 'newvalues=1&newstyle=' + para;
	  	break
	case 'sort' :
	  	document.frm.action += cS + 'newvalues=1&newcurrentrecord=1&newsortstring=' + para;
	  	break;
	case 'page' :
		document.frm.emu_action.value = 'newpage';
		document.frm.action += cS + 'newvalues=1&newpage=' + para;
		break;
	default :
	  	break
	}

  	document.frm.submit();
}

function submitcollection(colname,colid)
{
	clearNew();

	document.frm.emu_action.value = 'collection'
	document.frm.action = 'emuseum.asp?emu_action=collection&collection=' + colid + '&collectionname=' + escape(colname) + '&currentrecord=1';
  	document.frm.submit();
}

function openWindow(winURL,winName,winFlags)
{
    var myWindow=window.open(winURL,winName,winFlags);
    myWindow.focus();
}

function submitReport(reportname)
{
	document.report.action = 'eMuseum.asp?emu_action=report&report=' + reportname + '&sessionid=' + document.frm.sessionid.value;
	openWindow('','reportPopup','width=800,height=600,scrollbars=yes,resizable=yes');
	document.report.submit();
}

function changepage(page,profile)
{
	clearNew();
	document.frm.emu_action.value = 'newpage';

	if(document.frm.action.indexOf('?') > 0)
	{
		document.frm.action += '&';
	} else {
		document.frm.action += '?';
	}
	document.frm.action += 'newvalues=1&newpage=' + page + '&newprofile=' + profile;
	document.frm.submit();
}

function browseExhibits()
{
        clearNew();


	if(document.frm.action.indexOf('?') > 0)
	{
		document.frm.action += '&';
	} else {
		document.frm.action += '?';
	}

	document.frm.action = 'emuseum.asp?style=browse&profile=exhibitions';
	document.frm.submit();
}

function setMedia(filename,caption,title,mediatype) {
	//selects a particular media record for enlarging
	document.media.filename.value = filename;
	document.media.caption.value = caption;
	document.media.title.value = title;
	document.media.mediatype.value = mediatype;
	spawn('../html/media_enlarged.html','popup','600','650');
}

function setMediaToDraw(filename,title,mediatype,objnumber) {
// NOTE this passes information on the object to the draw page
//  by appending parameters to the emuseum.asp query string.
//  This is predicated on the assumption that emuseum will safely
//  ignore any extra parameters.  It does at present.

	clearNew();
	document.frm.emu_action.value = 'newpage';

	if(document.frm.action.indexOf('?') > 0)
	{
		document.frm.action += '&';
	} else {
		document.frm.action += '?';
	}
	document.frm.action += 'newvalues=1&newpage=draw&newprofile=objects&drawfilename='+filename+'&drawtitle='+title+'&drawmediatype='+mediatype+'&drawobjnumber='+objnumber;

	document.frm.submit();

}


function spawn(url, nameW, w, h) {

  	if (navigator.appVersion.indexOf('4') != -1) {
		// Vars for centering the new window on Version 4 Browsers
		x4 = screen.width/2 - (w/2);
		y4 = screen.height/2 - (h/2);
		window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
  	} else {
    	window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=150,top=200');
	}
}

function openImage(imgName,sTitle,sCaption){
	var sHTML = "<html><head><title>"+sTitle+"</title><link rel='stylesheet' href='../txtStyle.css' type='text/css'/></head><body><table cellpadding='0' cellspacing='0' border='0' width='100%'><tr valign='top'><td class='title'>"+sTitle+"</td><td align='right' class='txt'><a href='javascript:window.close();'>Close</a></td></tr><tr><td class='txt'>"+sCaption+"</td><td></td></tr></table><br><img src='getimage.asp?filename="+imgName+"&type=full' width='400' height='400' border='0' alt='"+sTitle+"'></body></html>";
	var theWindow = "";
	theWindow = window.open("","","height=540,width=540,resizable,scrollbars");
	if(theWindow){
    	theWindow.document.write(sHTML);
    	theWindow.document.close();
  	}
}
</script>
		<!-- INCLUDE NECESSARY JAVASCRIPT -->
		<script language="JavaScript" type="text/JavaScript" src="../js_and_css/timeout.js"></script>
		<script language="JavaScript" type="text/JavaScript" src="../js_and_css/main.js"></script>
		<script language="javascript">
			<!--
    function preloadArray(dir,arrayName) {
      if (document.images) {
        for (var i=0; i<eval(arrayName+'.length'); i++) {
          CURR_ARRAY_ITEM = eval(arrayName+'[i]');
          eval(CURR_ARRAY_ITEM+'_on = new Image()');
          eval(CURR_ARRAY_ITEM+'_on.src = dir+"'+CURR_ARRAY_ITEM+'_on.gif";');
          eval(CURR_ARRAY_ITEM+'_off = new Image()');
          eval(CURR_ARRAY_ITEM+'_off.src = dir+"'+CURR_ARRAY_ITEM+'_off.gif";');
        }
      }
    }

    var imageList = new Array('home','collections','bigsearch','help');
    preloadArray('../images/menu/','imageList');

    function rollIn(imgName) {
      if (document.images){
        document[imgName].src=eval(imgName + "_on.src");
      }
    }

    function rollOut(imgName) {
      if (document.images) {
        document[imgName].src=eval(imgName + "_off.src");
      }
    }

    function spawn1(url, nameW, w, h) {
      if (navigator.appVersion.indexOf('4') != -1) {
        // Vars for centering the new window on Version 4 Browsers
        x4 = screen.width/2 - (w/2);
        y4 = screen.height/2 - (h/2);
        window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
      }
      else {
        window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=150,top=200');
      }
    }
  //-->
		</script>
	</head>
	<body bgcolor="#FFFFFF" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
		<form name="frm" action="emuseum.asp?style=single&currentrecord=1&page=search&profile=objects&searchdesc=number%20:%2089.1.1&searchstring=number/,/:/,/89.1.1/,/false" method="post">
			<fields>

<!-- hidden state fields that do not need to be in URL -->

<input type="hidden" name="currentstateobjects" value=""/>
				<input type="hidden" name="currentstatepeople" value=""/>
				<input type="hidden" name="searchdescription"/>
				<input type="hidden" name="searchxml" value="<eMuseum_search site=&quot;BCM&quot; date=&quot;2010-09-03&quot;><criteria><field fieldname=&quot;number&quot; operator=&quot;:&quot; criteria=&quot;89.1.1&quot; thesaurus=&quot;false&quot; useinternalop=&quot;0&quot;/><params searchcode=&quot;&quot; pagesize=&quot;1&quot; currentpage=&quot;1&quot; orderfield=&quot;&quot; orderdir=&quot;&quot; profile=&quot;objects&quot; displayprofilename=&quot;Objects&quot; toplevelelementname=&quot;object&quot; sessionid=&quot;91921392-413D-43AB-886C-F0C310918AAA&quot; lastsort=&quot;alphasort,ID&quot;/></criteria></eMuseum_search>"/>
				<input type="hidden" name="term" value=""/>
				<input type="hidden" name="sessionid" value="91921392-413D-43AB-886C-F0C310918AAA"/>
				<input type="hidden" name="emu_action" value="quicksearch"/>
			</fields>
		</form>
		<!-- ****** CHANGED TABLE WIDTH TO 777 TO FIT TOP NAVIGATION TABLE ****** -->
		<div id="wrapper">
			<table border="0" cellspacing="0" cellpadding="0" width="775">
				<tr><td valign="top" height="80">
						<div id="nav">
							<table cellspacing="0" cellpadding="0" border="0" width="775"><tr valign="bottom">
									<td><img src="../images/navtop/ccentral.gif" width="480" height="80" border="0" alt="Collections Central"/></td>
									<td><a href="javascript:changepage('pick_object', 'objects');" onmouseover="MM_swapImage('01draw','','../images/navtop/01draw_on.gif',1)" onmouseout="MM_swapImgRestore()"><img src="../images/navtop/01draw_off.gif" name="01draw" width="74" height="80" border="0" id="01draw" alt="Draw"/></a></td>
									<td><a href="javascript:browseExhibits();" onmouseover="MM_swapImage('02exhi','','../images/navtop/02exhi_on.gif',1)" onmouseout="MM_swapImgRestore()"><img src="../images/navtop/02exhi_off.gif" name="02exhi" width="74" height="80" border="0" id="02exhi" alt="Exhibits"/></a></td>
									<td><a href="javascript:changepage('search_advanced','objects');" onmouseover="MM_swapImage('03srch','','../images/navtop/03srch_on.gif',1)" onmouseout="MM_swapImgRestore()"><img src="../images/navtop/03srch_off.gif" name="03srch" width="74" height="80" border="0" id="03srch" alt="Search"/></a></td>
									<td><a href="emuseum.asp" onmouseover="MM_swapImage('04home','','../images/navtop/04home_on.gif',1)" onmouseout="MM_swapImgRestore()"><img src="../images/navtop/04home_off.gif" name="04home" width="73" height="80" border="0" id="04home" alt="Home"/></a></td>
								</tr></table>
						</div>
					</td></tr>
				<tr valign="top"><td>
						<a name="main"></a>
						<!-- page body -->
						<result><result xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:ow="http://whatever/"><div id="maincontent"><table border="0" cellspacing="0" cellpadding="0" width="775"><tr valign="top"><td width="15"><img src="../images/px.gif" width="15" height="3" border="0" alt=""/></td><td width="592"><img src="../images/px.gif" width="592" height="6" border="0" alt=""/><table border="0" cellspacing="0" cellpadding="0" width="592"><tr valign="top"><td width="230"></td><td width="20"></td><td align="right" valign="top" class="greenlink"><a href="javascript:history.back();" class="greenlink">< Back</a></td></tr><tr valign="top"><td width="230"><img src="../images/px.gif" width="230" height="3" border="0" alt=""/></td><td width="20"></td><td valign="top"></td></tr><tr valign="top"><td valign="center" width="230"><form name="media"><input name="filename" type="hidden" value="89-1-1.jpg"/><input name="caption" type="hidden" value=""/><input name="title" type="hidden" value="Doll"/><input name="mediatype" type="hidden" value="Image"/></form><center><b></b><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('&#xA;											89-1-1.jpg','&#xA;											','&#xA;											Doll','&#xA;											Image');&#xA;										"><img src="getimage.asp?filename=89-1-1.jpg&type=preview&mediatype=Image" width="192" height="192" border="0" alt=""/></a><br><br></center></td><td width="20"><img src="../images/px.gif" width="30" height="1" border="0" alt=""/></td><td valign="top"><table border="0" cellspacing="0" cellpadding="0" id="questions"><tr><td><b>What is it made of?</b><br>Cotton, paint (oil), fiber (mohair), plastic</td></tr><tr><td><img src="../images/px.gif" width="1" height="5" border="0" alt=""/></td></tr><tr><td><b>Who made it?</b><br>Lenci<br></td></tr><tr><td><img src="../images/px.gif" width="1" height="5" border="0" alt=""/></td></tr><tr><td><B>When was it made?</B><br>1920-1930</td></tr><tr><td><img src="../images/px.gif" width="1" height="5" border="0" alt=""/></td></tr><tr><td><b>Where is it from?</b><br>Made:&nbsp;
																Italy, Europe (Western)<img src="../images/px.gif" width="5" height="5" border="0" alt=""/><a href="javascript:linksearch('objects','Country','Italy','browse','Country%20is%20Italy');"><img src="../images/objectpage/morefromsameplace.gif" width="187" height="17" border="0" alt="More from the same place"/></a><br><img src="../images/px.gif" width="1" height="5" border="0" alt=""/></td></tr><tr><td><B>How big is it?</B><br>Height: 12 1/2"</td></tr><tr><td><img src="../images/px.gif" width="1" height="5" border="0" alt=""/></td></tr></table></td></tr></table><table border="0" cellspacing="0" cellpadding="0" width="592" id="lowertable"><tr><td valign="top" width="110"><table border="0" cellspacing="5" cellpadding="0"><tr><td valign="top" align="center"><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('&#xA;											89-1-1.jpg','&#xA;											','&#xA;											Doll','&#xA;											Image');&#xA;										"><img src="../images/objectpage/zoom.gif"/></a></td><td valign="top" align="center"><a onmouseover="window.status='Draw This Object'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMediaToDraw('&#xA;											89-1-1.jpg','&#xA;											Doll','&#xA;											Image','&#xA;											89.1.1');&#xA;										"><img src="../images/objectpage/drawit.gif"/></a></td></tr><tr height="10"><td colspan="2"><img src="../images/px.gif" width="1" height="10" border="0" alt=""/></td></tr><tr height="14"><td colspan="2" align="center"><img src="../images/objectpage/otherviews.gif" width="91" height="14" border="0" alt="Other Views"/></td></tr><tr valign="top"><td width="46" align="center"><table width="48" cellspacing="0" cellpadding="0"><tr valign="bottom"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr><tr><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td><td><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('89-1-1_OA3.jpg','&quot;Drawing of Doll&quot; by Raymond<br>This picture was drawn by a visitor to Collections Central Online.','Doll','');"><img src="getimage.asp?filename=89-1-1_OA3.jpg&type=postage&mediatype=" width="46" height="46" border="1" alt="89-1-1_OA3.jpg" class="imgborder"/></a></td><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td></tr><tr valign="top"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr></table></td><td width="46" align="center"><table width="48" cellspacing="0" cellpadding="0"><tr valign="bottom"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr><tr><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td><td><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('89-1-1_OA4.jpg','&quot;Doll&quot; by Stephanie<br>This picture was drawn by a visitor to Collections Central Online.','Doll','');"><img src="getimage.asp?filename=89-1-1_OA4.jpg&type=postage&mediatype=" width="46" height="46" border="1" alt="89-1-1_OA4.jpg" class="imgborder"/></a></td><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td></tr><tr valign="top"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr></table></td><tr valign="top"><td width="46" align="center"><table width="48" cellspacing="0" cellpadding="0"><tr valign="bottom"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr><tr><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td><td><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('89-1-1_OA5.jpg','&quot;Untitled&quot; by unknown artist<br>This picture was drawn by a visitor to Collections Central Online.','Doll','');"><img src="getimage.asp?filename=89-1-1_OA5.jpg&type=postage&mediatype=" width="46" height="46" border="1" alt="89-1-1_OA5.jpg" class="imgborder"/></a></td><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td></tr><tr valign="top"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr></table></td><td width="46" align="center"><table width="48" cellspacing="0" cellpadding="0"><tr valign="bottom"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr><tr><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td><td><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('89-1-1_CA.jpg','This picture was drawn by a visitor to the Brooklyn Children\'s Museum.','Doll','');"><img src="getimage.asp?filename=89-1-1_CA.jpg&type=postage&mediatype=" width="46" height="46" border="1" alt="89-1-1_CA.jpg" class="imgborder"/></a></td><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td></tr><tr valign="top"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr></table></td></tr><tr valign="top"><td width="46" align="center"><table width="48" cellspacing="0" cellpadding="0"><tr valign="bottom"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr><tr><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td><td><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('89-1-1_OA.jpg','&quot;Worried doll&quot; by Augusta<br>This picture was drawn by a visitor to Collections Central Online.','Doll','');"><img src="getimage.asp?filename=89-1-1_OA.jpg&type=postage&mediatype=" width="46" height="46" border="1" alt="89-1-1_OA.jpg" class="imgborder"/></a></td><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td></tr><tr valign="top"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr></table></td><td width="46" align="center"><table width="48" cellspacing="0" cellpadding="0"><tr valign="bottom"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr><tr><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td><td><a onmouseover="window.status='Display Full Image'; return true;" onmouseout="window.status=''; return true;" href="javascript:setMedia('89-1-1_OA2.jpg','&quot;Doll&quot; by Spinco<br>This picture was drawn by a visitor to Collections Central Online.<br>','Doll','');"><img src="getimage.asp?filename=89-1-1_OA2.jpg&type=postage&mediatype=" width="46" height="46" border="1" alt="89-1-1_OA2.jpg" class="imgborder"/></a></td><td bgcolor="#000000"><img src="../images/px.gif" width="1" height="46" border="0" alt=""/></td></tr><tr valign="top"><td colspan="3" bgcolor="#000000"><img src="../images/px.gif" width="48" height="1" border="0" alt=""/></td></tr></table></td></tr></table></td><td width="10"><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td valign="top"><table border="0" cellspacing="0" cellpadding="0" id="entrytext"><tr><td class="bigtext"><b>What is it?</b><br>Doll<br><br></td></tr><tr><td>Lenci dolls first appeared in New York at the New York Toy Fair in 1921. They were well-made, very attractive, and quite expensive. An advertisement from 1923 reads: "Lenci Dolls are the world's most beautiful and talked of dolls... Each doll is hand made in the big Lenci studio at Turin... There are no dolls the world over to even remotely compare with their saucy features, exquisite coloring, and luxurious costumes."<br><br>This doll is dressed in the modern style of the 1920s, with her cloche hat and the relatively simple lines and adornment of her dress. She has a seamless, sculptured face produced by a patented technique of hot pressing felt. Another classic Lenci feature is her wide-set eyes and glance to the right (although others glance to the left).<br><br>The Lenci Doll company was started by an Italian woman named Elena Konig di E. Scavini. Elena started to make dolls for herself after her only child died while her husband, Enrico, was away fighting in World War I. Elena lived in a city named Turin in Italy where there were a lot of factories producing cloth, so she was able to get the material for making her dolls despite the difficulties of the war.<br><br>When Enrico came back from the war, he became Elena's business partner and they started making dolls for sale. Elena's nickname was "Lenci," and she and her husband decided to call their dollmaking company "Lenci" too.</td></tr><tr height="10"><td><img src="../images/trans.gif" width="1" height="10"/></td></tr><tr><td class="smalltext">Gift of May F. Caplin, in memory of Stella L. Bloom, 1989<br></td></tr><tr><td class="smalltext"><a href="javascript:spawn('../html/objectnumbers.html','popup', 370, 230);">Object number</a>: 
															89.1.1<br><br></td></tr><tr><td class="smalltext">This object is part of the category:<br><b>Dolls</b>&nbsp;
																<a href="javascript:linksearch('objects','Category','Dolls','browse','Category%20is%20Dolls');"><img src="../images/objectpage/morefromcategory.gif" align="absmiddle" width="172" height="17" border="0" alt="More from this Category"/></a><br></td></tr><tr><td><img src="../images/px.gif" width="1" height="10" border="0" alt=""/></td></tr></table></td></tr></table></td><td width="20"><img src="../images/px.gif" width="20" height="1" border="0" alt=""/></td><td width="1" bgcolor="#666699"><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td><td width="147"><table border="0" cellspacing="0" cellpadding="0" id="seealso"><tr valign="top"><td valign="top" align="center"><img src="../images/objectpage/morebysamemakers.gif" border="0" alt=""/><table border="0" cellspacing="0" cellpadding="0" width="120"><tr valign="top"><td align="center" class="smalltext"><br><a href="javascript:linksearch('objects','id','4377','single','&quot;Bersaglia&quot; Doll');"><img src="getimage.asp?filename=70-22-100_DI.jpg&type=postage&mediatype=" width="48" height="48" border="0" alt="70-22-100_DI.jpg"/></a><a href="javascript:linksearch('objects','id','4377','single','&quot;Bersaglia&quot; Doll');">"Bersaglia" Doll</a><br><br><a href="javascript:linksearch('objects','id','4372','single','Doll');"><img src="getimage.asp?filename=41-94-15_DI.jpg&type=postage&mediatype=" width="48" height="48" border="0" alt="41-94-15_DI.jpg"/></a><a href="javascript:linksearch('objects','id','4372','single','Doll');">Doll</a><br><br><a href="javascript:linksearch('objects','id','4378','single','Doll');"><img src="getimage.asp?filename=72-1_DI.jpg&type=postage&mediatype=" width="48" height="48" border="0" alt="72-1_DI.jpg"/></a><a href="javascript:linksearch('objects','id','4378','single','Doll');">Doll</a><br><br><a href="javascript:linksearch('objects','id','4379','single','Doll');"><img src="getimage.asp?filename=72-27_DI.JPG&type=postage&mediatype=" width="48" height="48" border="0" alt="72-27_DI.JPG"/></a><a href="javascript:linksearch('objects','id','4379','single','Doll');">Doll</a><br><br><a href="javascript:linksearch('objects','id','4376','single','Russian Boy Doll');"><img src="getimage.asp?filename=65-21_DI.jpg&type=postage&mediatype=" width="48" height="48" border="0" alt="65-21_DI.jpg"/></a><a href="javascript:linksearch('objects','id','4376','single','Russian Boy Doll');">Russian Boy Doll</a><br><br><a href="javascript:linksearch('objects','id','4374','single','Yugoslavian Girl Doll');"><img src="getimage.asp?filename=49-8-1_DI.jpg&type=postage&mediatype=" width="48" height="48" border="0" alt="49-8-1_DI.jpg"/></a><a href="javascript:linksearch('objects','id','4374','single','Yugoslavian Girl Doll');">Yugoslavian Girl Doll</a><br></td></tr><tr valign="top"><td align="center" class="smalltext"><br><a href="javascript:linksearch('objects','seealsoid','18214','browse','Maker: &#xA;Lenci');">Browse all objects by the same makers</a>&nbsp;>
					</td></tr><tr><td><img src="../images/px.gif" height="4" width="1" border="0"/></td></tr></table></td></tr></table></td></tr></table></div></result></result>
						<!-- page body end -->
					</td></tr>
				<tr><td valign="bottom"><div id="footer">
							<table cellspacing="0" cellpadding="0" border="0" id="footertable" width="775">
								<tr valign="bottom">
									<td><a href="http://www.brooklynkids.org" target="_blank"><img src="../images/navbottom/01bcm.gif" width="198" height="25" border="0"/></a></td>
									<td><img src="../images/navbottom/line.gif" width="1" height="25" border="0"/></td>
									<td><a href="javascript:changepage('behind_the_scenes','objects');">
											<img src="../images/navbottom/02behind.gif" width="155" height="25" border="0"/></a></td>
									<td><img src="../images/navbottom/line.gif" width="1" height="25" border="0"/></td>
									<td><a href="javascript:changepage('rights','objects');">
											<img src="../images/navbottom/04rights.gif" width="168" height="25" border="0"/></a></td>
									<td><img src="../images/navbottom/line.gif" width="1" height="25" border="0"/></td>
									<td><img src="../images/navbottom/05copy.gif" width="251" height="25" border="0"/></td>
								</tr>
							</table>
						</div>
					</td></tr>
			</table>
		</div>
	</body>
</html>

<!-- Start of TheCounter.com Code -->
<SCRIPT TYPE="text/javascript" LANGUAGE="javascript">
s="na";c="na";j="na";f=""+escape(document.referrer)
</SCRIPT>
<SCRIPT TYPE="text/javascript" LANGUAGE="javascript1.2">
s=screen.width;v=navigator.appName
if (v != "Netscape") {c=screen.colorDepth}
else {c=screen.pixelDepth}
j=navigator.javaEnabled()
</SCRIPT>
<SCRIPT TYPE="text/javascript" LANGUAGE="javascript">
function pr(n) {document.write(n,"\n");}
NS2Ch=0
if (navigator.appName == "Netscape" &&
navigator.appVersion.charAt(0) == "2") {NS2Ch=1}
if (NS2Ch == 0) {
r="&size="+s+"&colors="+c+"&referer="+f+"&java="+j+""
pr("<A HREF=\"http://www.TheCounter.com\" TARGET=\"_top\"><IMG"+
" BORDER=0 SRC=\"http://c3.thecounter.com/id=2593818"+r+"\"><\/A>")}
</SCRIPT>
<NOSCRIPT><A HREF="http://www.TheCounter.com" TARGET="_top"><IMG
SRC="http://c3.thecounter.com/id=2593818" ALT="TC" BORDER=0></A>
</NOSCRIPT>
<!-- End of TheCounter.com Code -->

