<?xml version="1.0"?>
<!-- results.html -->
<html>
	<head>
		<title>eMuseum</title>
		<script language="Javascript">
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';

	//Build the URL-encoded search string
	document.frm.action += '&newvalues=1&rawsearch=' + fieldname + '/,/is/,/' + 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=' + encodeURIComponent(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 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','440','500');
}

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><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 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');
      }
    }
  //-->
		</script>
		<link rel="stylesheet" href="../txtStyle.css" type="text/css"/>
	</head>
	<body bgcolor="#FFFFFF" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" background="../images/bg.gif">
		<table width="100%" border="0" cellspacing="0" cellpadding="0">
			<tr><td width="1"><img src="../images/CDA.jpg" alt="Cloth Workers Digital Archive" width="800" height="200" border="0" usemap="#Map2"/></td>
				<td><img src="../images/spacerrightcda.jpg" alt="*" width="100%" height="200"/></td></tr></table>
		<map name="Map2"><area shape="rect" coords="20,103,302,123" href="http://www.clothworkers.co.uk"/>
			<area shape="rect" coords="617,104,719,121" href="http://www.leeds.ac.uk/ulita" alt="return to main"/>
		</map>
		<table border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td background="../images/menuspacer.jpg" valign="top" width="155">
					<img src="../images/menutop.jpg" alt="*"/>
					<table border="0" cellspacing="0" cellpadding="5">
						<tr>
							<td colspan="2"><img src="../images/menu/quick_search.gif" width="66" height="7" border="0" alt="Quick Search"/></td>
						</tr>
						<form name="frm" action="emuseum.asp?collection=4&collectionname=Tibor%20Reich%20Collection%20(Highlights)&style=browse&currentrecord=1&page=collection&profile=objects&searchdesc=Tibor%20Reich%20Collection%20(Highlights)" method="post">
							<tr>
								<td><input type="text" name="quicksearch" size="7" style="background-color: FFFFFF; width: 80;" value=""/></td>
								<td><input type="image" name="quicksearch" src="../images/menu/go.gif" width="22" height="18" border="0" alt="Go" onClick="document.frm.submit();"/></td>
							</tr>
							<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;Ulita&quot; date=&quot;2013-05-22&quot;><criteria><field fieldname=&quot;Collection&quot; operator=&quot;is&quot; criteria=&quot;Tibor Reich Collection (Highlights)&quot; thesaurus=&quot;false&quot; useinternalop=&quot;-1&quot;/><params searchcode=&quot;&quot; pagesize=&quot;8&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;06B1A805-95CD-430C-BA02-1AA7A62D35F2&quot; lastsort=&quot;alphasort,ID&quot;/></criteria></eMuseum_search>"/>
								<input type="hidden" name="term" value=""/>
								<input type="hidden" name="sessionid" value="06B1A805-95CD-430C-BA02-1AA7A62D35F2"/>
								<input type="hidden" name="emu_action" value="quicksearch"/>
							</fields>
						</form>
						<tr>
							<td colspan="2"><img src="../images/px.gif" width="107" height="12" border="0" alt=""/><br><a href="emuseum.asp" onmouseover="rollIn('home');window.status='Home'; return true;" onmouseout="rollOut('home');window.status=''; return true;"><img src="../images/menu/home_off.gif" width="107" height="17" border="0" alt="Home" name="home"/></a><br><img src="../images/px.gif" width="107" height="3" border="0" alt=""/></td>
						</tr>
						<tr>
							<td colspan="2"><span test="oCState.Page=&quot;collection&quot;"><img src="../images/menu/collections_on.gif" width="107" height="17" border="0" alt="Collections" name="collections"/></span><br><img src="../images/px.gif" width="107" height="3" border="0" alt=""/></td>
						</tr>
						<span test="oCState.Page=&quot;collection&quot;"><tr>
								<td colspan="2" height="50">
									<table border="0" cellpadding="0" cellspacing="0" width="105" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:ow="http://whatever/"><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Colour Chemistry sample boards','78');" class="menutxt" onmouseover="window.status='Browse the Colour Chemistry sample boards collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Colour Chemistry sample boards</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Department of Textile Industries','49');" class="menutxt" onmouseover="window.status='Browse the Department of Textile Industries collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Department of Textile Industries</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Egyptian Textiles','6');" class="menutxt" onmouseover="window.status='Browse the Egyptian Textiles collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Egyptian Textiles</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('European Fragments','62');" class="menutxt" onmouseover="window.status='Browse the European Fragments collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">European Fragments</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Fibre Collection','35');" class="menutxt" onmouseover="window.status='Browse the Fibre Collection collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Fibre Collection</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Glass Photographic Plates','16');" class="menutxt" onmouseover="window.status='Browse the Glass Photographic Plates collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Glass Photographic Plates</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Indian Textiles','48');" class="menutxt" onmouseover="window.status='Browse the Indian Textiles collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Indian Textiles</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Indonesian Textiles','8');" class="menutxt" onmouseover="window.status='Browse the Indonesian Textiles collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Indonesian Textiles</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Japanese Collection','29');" class="menutxt" onmouseover="window.status='Browse the Japanese Collection collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Japanese Collection</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Kashmir Shawls','7');" class="menutxt" onmouseover="window.status='Browse the Kashmir Shawls collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Kashmir Shawls</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Louisa Pesel Collection: Collected','71');" class="menutxt" onmouseover="window.status='Browse the Louisa Pesel Collection: Collected collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Louisa Pesel Collection: Collected</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Louisa Pesel Collection: Created','72');" class="menutxt" onmouseover="window.status='Browse the Louisa Pesel Collection: Created collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Louisa Pesel Collection: Created</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Mabel Duxbury Collection (Highlights)','46');" class="menutxt" onmouseover="window.status='Browse the Mabel Duxbury Collection (Highlights) collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Mabel Duxbury Collection (Highlights)</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Marchini Textile Designs','43');" class="menutxt" onmouseover="window.status='Browse the Marchini Textile Designs collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Marchini Textile Designs</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Pakistani Textiles','26');" class="menutxt" onmouseover="window.status='Browse the Pakistani Textiles collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Pakistani Textiles</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Qing Dynasty Textiles','3');" class="menutxt" onmouseover="window.status='Browse the Qing Dynasty Textiles collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Qing Dynasty Textiles</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><a href="javascript:submitcollection('Sample Pattern Books','27');" class="menutxt" onmouseover="window.status='Browse the Sample Pattern Books collection'; return true;" onmouseout="window.status=''; return true;"><font color="#cccccc">Sample Pattern Books</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td><img src="../images/px.gif" width="10" height="1" border="0" alt=""/></td><td class="menutxt"><font color="#ffffff">></font>&nbsp;<a href="javascript:submitcollection('Tibor Reich Collection (Highlights)','4');" onmouseover="window.status='Browse the Tibor Reich Collection (Highlights) collection'; return true;" onmouseout="window.status=''; return true;"><font color="#ffffff">Tibor Reich Collection (Highlights)</font></a><br></td><td><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr><tr><td colspan="3" valign="middle"><img src="../images/px.gif" width="5" height="2" border="0" alt=""/><img src="../images/px_cccccc.gif" width="100" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="2"><img src="../images/px.gif" width="1" height="2" border="0" alt=""/></td></tr></table></td>
							</tr></span>
						<tr>
							<td colspan="2"><span test="oCState.Page=&quot;collection&quot;"><a href="javascript:changepage('search_basic','objects');" onmouseover="rollIn('bigsearch');window.status='Search'; return true;" onmouseout="rollOut('bigsearch');window.status=''; return true;"><img src="../images/menu/bigsearch_off.gif" width="107" height="17" border="0" alt="Search" name="bigsearch"/></a></span><br><img src="../images/px.gif" width="107" height="3" border="0" alt=""/></td>
						</tr>
						<tr>
							<td colspan="2"><a href="javascript:submitpage('page','help');" onmouseover="rollIn('help');window.status='Help'; return true;" onmouseout="rollOut('help');window.status=''; return true;"><img src="../images/menu/help_off.gif" width="107" height="17" border="0" alt="Help" name="help"/></a><br><img src="../images/px.gif" width="107" height="3" border="0" alt=""/></td>
						</tr>
					</table>
				</td><td width="5"><img src="../images/px.gif" alt="*" width="10" height="1"/></td><td valign="top">
					<a name="main"></a>
					<!-- page body --><result><result><table border="0" cellspacing="0" cellpadding="0" width="520"><tr height="7"><td width="7"><img src="../images/px.gif" width="7" height="7" border="0" alt=""/></td><td width="506"><img src="../images/px.gif" width="506" height="7" border="0" alt=""/><br><table border="0" cellspacing="0" cellpadding="0" width="506" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:ow="http://whatever/"><tr valign="top"><td width="320"><h1>Objects: Tibor Reich Collection (Highlights)</h1></td><td align="right" class="navtxt">Results&nbsp;1 to 8 of 185</td></tr><tr><td colspan="2"><table cellpadding="0" cellspacing="0" border="0" width="506"><tr><td width="35"><img src="../images/utilitybar/previous10b.gif" width="35" height="12" border="0" alt=""/></td><td width="3"><img src="../images/px.gif" width="3" height="1" border="0" alt=""/></td><td class="navtxt" width="60"><img name="prev" src="../images/utilitybar/previousb.gif" width="55" height="12" border="0" alt=""/></td><td class="navtxt" align="center" width="303">page ... 

	&nbsp;<span class="navtxt"><font color="#DC1E1E">1</font></span>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','9');"><font color="#333333">2</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','17');"><font color="#333333">3</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','25');"><font color="#333333">4</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','33');"><font color="#333333">5</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','41');"><font color="#333333">6</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','49');"><font color="#333333">7</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','57');"><font color="#333333">8</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','65');"><font color="#333333">9</font></a>

	&nbsp;<a class="navtxt" href="javascript:submitpage('newpage','73');"><font color="#333333">10</font></a></td><td class="navtxt" align="right" width="60"><img src="../images/px.gif" width="18" height="1" border="0" alt=""/><a href="javascript:submitpage('newpage','9');" onMouseOver="window.status='Next Page';return true;" onMouseOut="window.status='';return false;"><img src="../images/utilitybar/next.gif" width="35" height="12" border="0" alt=""/></a></td><td width="3"><img src="../images/px.gif" width="3" height="1" border="0" alt=""/></td><td width="35"><a href="javascript:submitpage('newpage','81');" onMouseOver="window.status='Next Group of 10 Pages';return true;" onMouseOut="window.status='';return false;"><img src="../images/utilitybar/next10.gif" width="35" height="12" border="0" alt=""/></a></td></tr></table></td></tr><tr><td colspan="3" height="1"><img src="../images/px.gif" width="1" height="3" border="0" alt=""/></td></tr><tr><td colspan="2" bgcolor="#333366" height="1"><img src="../images/px.gif" width="506" height="1" border="0" alt=""/></td></tr><tr><td colspan="3" height="1"><img src="../images/px.gif" width="1" height="3" border="0" alt=""/></td></tr><tr><td colspan="2"><table cellpadding="0" cellspacing="0" border="0" alt="" width="506"><tr height="7"><td width="170"><img src="../images/px.gif" width="170" height="7" border="0" alt=""/></td><td width="166"><img src="../images/px.gif" width="166" height="1" border="0" alt=""/></td><td width="170"><img src="../images/px.gif" width="170" height="1" border="0" alt=""/></td></tr><tr><td class="navtxt"><font color="#666666"><img src="../images/utilitybar/icon1b.gif" width="12" height="12" border="0" alt=""/>&nbsp;view images</font></td><td align="center" class="navtxt"><a href="javascript:submitpage('style','text');" class="navtxt"><img src="../images/utilitybar/icon2.gif" width="12" height="12" border="0" alt=""/></a>&nbsp;<a href="javascript:submitpage('style','text');" class="navtxt"><font color="#333333">view text only</font></a></td><td align="right" class="navtxt"><a href="javascript:submitpage('style','single');" class="navtxt"><img src="../images/utilitybar/icon3.gif" width="12" height="12" border="0" alt=""/></a>&nbsp;<a href="javascript:submitpage('style','single');" class="navtxt"><font color="#333333">view 1 at a time</font></a></td></tr></table><br></td></tr><tr height="21"><td colspan="2"><img src="../images/px.gif" width="1" height="21" border="0" alt=""/></td></tr></table><table cellpadding="10" cellspacing="0" border="0"><tr valign="top"><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('1');"><img src="getimage.asp?filename=L2008.1136a.jpg&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('1');">Adena</a><br></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('2');"><img src="getimage.asp?filename=L2008.1121.JPG&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('2');">Adiscos</a><br></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('3');"><img src="getimage.asp?filename=L2008.2.2.JPG&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('3');">Age of Kings</a><br></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('4');"><img src="getimage.asp?filename=L2008.2.3.JPG&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('4');">Age of Kings</a><br></td></tr></table></td></tr><tr valign="top"><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('5');"><img src="getimage.asp?filename=L2008.2.4.JPG&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('5');">Age of Kings</a><br></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('6');"><img src="getimage.asp?filename=L2008.2.5a.JPG&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('6');">Age of Kings</a><br></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('7');"><img src="getimage.asp?filename=L2008.1080.JPG&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('7');">Agincourt</a><br></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td align="center"><a href="javascript:singleview('8');"><img src="getimage.asp?filename=L2008.1123b.jpg&type=thumbnail&mediatype=Image" width="128" height="128" border="0" alt=""/></a><br><br></td></tr><tr><td align="center"><a href="javascript:singleview('8');">Allassio</a><br></td></tr></table></td></tr></table></td><td width="7"><img src="../images/px.gif" width="7" height="1" border="0" alt=""/></td></tr></table></result></result><!-- page body end -->
					<br><br><hr/>
					<b>The images and the text displayed in the Clothworker's Digital Archive ("the Works") are the Copyright of ULITA, the University of Leeds. You may only use the Works for educational purposes. Where used you will acknowledge the ownership of ULITA, the University of Leeds in the Works. If you are interested in reproducing any of ULITA's images please contact staff at ULITA. Although every effort will be made to locate copyright holders for permission, we would be grateful for any information which would help us complete or update our copyright records. 
			</b>
				</td>
			</tr>
		</table>
	</body>
</html>
