<?xml version="1.0"?>
<!-- index.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=' + 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 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','600');
}

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 border="0" cellspacing="0" cellpadding="0" height="100%" width="770">
			<tr height="90%">
				<td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="770">
						<tr>
							<td bgcolor="#FF9900" width="1"><a href="#main"><img src="../images/px.gif" width="1" height="50" border="0" alt="Skip Page Navigation"/></a></td>
							<td bgcolor="#FF9900" valign="top" width="645"><img src="../images/px.gif" width="640" height="3" border="0" alt=""/><br><!-- left hand logo goes here --><img src="../images/logo.gif" width="330" height="44" border="0" alt=""/><!-- end left hand logo --><br><img src="../images/px.gif" width="640" height="3" border="0" alt=""/></td>
							<td bgcolor="#FF9900" valign="top" align="right" width="127"><br><img src="../images/px.gif" width="127" height="12" border="0" alt=""/><br><!-- right hand logo goes here --><!-- end right hand logo --><img src="../images/px.gif" width="25" height="16" border="0" alt=""/></td>
						</tr><tr>
							<td colspan="3"><table border="0" cellspacing="0" cellpadding="0" width="770">
									<tr>
										<td bgcolor="#FFFFFF"><img src="../images/px.gif" width="120" height="1" border="0" alt=""/></td>
										<td bgcolor="#FFFFFF"><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td>
										<td bgcolor="#FFFFFF"><img src="../images/px.gif" width="1" height="1" border="0" alt=""/></td>
									</tr>
									<tr valign="top">
										<td width="120"><!-- menu --><table border="0" cellspacing="0" cellpadding="0" width="120">
												<tr valign="top">
													<td width="8"><!-- menu: left margin --><img src="../images/px.gif" width="8" height="200" border="0" alt=""/></td>
													<td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="107">
															<tr>
																<td colspan="2"><img src="../images/px.gif" width="70" height="9" border="0" alt=""/><br></td>
															</tr>
															<tr>
																<td colspan="2"><img src="../images/menu/quick_search.gif" width="76" height="10" border="0" alt="Quick Search"/></td>
															</tr>
															<form name="frm" action="emuseum.asp?style=browse&currentrecord=1&profile=objects" 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"/>
																	<input type="hidden" name="term" value=""/>
																	<input type="hidden" name="sessionid" value=""/>
																	<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><img src="../images/menu/home_on.gif" width="104" height="15" border="0" alt="Home" name="home"/><br><img src="../images/px.gif" width="107" height="3" border="0" alt=""/></td>
															</tr>
															<tr>
																<td colspan="2"><a href="javascript:submitpage('page','collections');" onmouseover="rollIn('collections');window.status='Collections'; return true;" onmouseout="rollOut('collections');window.status=''; return true;"><img src="../images/menu/collections_off.gif" width="107" height="17" border="0" alt="Collections" name="collections"/></a><br><img src="../images/px.gif" width="107" height="3" border="0" alt=""/></td>
															</tr>
															<tr>
																<td colspan="2">
																	<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><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 valign="top"><!-- menu: right margin --><img src="../images/px.gif" width="5" height="5" border="0" alt=""/></td>
												</tr>
											</table><!-- end menu --></td>
										<td valign="top" width="520"><!-- page body -->
											<table border="0" cellspacing="0" cellpadding="0" width="520">
												<tr height="7">
													<td width="7"><!-- page body: top and left margins --><img src="../images/px.gif" width="7" height="7" border="0" alt=""/></td>
													<td width="509"><img src="../images/px.gif" width="509" height="1" border="0" alt=""/></td>
													<td width="7"><!-- page body: right margin --><img src="../images/px.gif" width="7" height="1" border="0" alt=""/></td>
												</tr>
												<tr valign="top">
													<td><!-- page body: left margin --></td>
													<td><a name="main"></a>
														<br><br><br><img src="../images/collections.gif" width="268" height="40" border="0"/>
														<br><br><br>
              Cooper-Hewitt, National Design Museum's expansive and varied collection, comprising over 250,000 objects, is international in scope, includes both historic and contemporary design, and extends from one-of-a-kind to mass-produced items.
			  <br><br>
			  Through eMuseum, visitors can view many of the rich holdings of the Museum's four curatorial departments: Product Design and Decorative Arts; Drawings, Prints, and Graphic Design; Textiles; and Wallcoverings.

              <br>
													</td>
													<td></td>
												</tr>
												<tr>
													<td></td>
													<td class="caption">
														<br>
              Cooper-Hewitt's Collections Online are generously supported by the Smithsonian Women's Committee.
              <p/>
														<img src="../images/2000-12-1 Matt Flynn.jpg" border="0"/>
														<br><br>
              Barcelona chair (early production model or prototype)
			  <br>
			  Ludwig Mies van der Rohe (German, 1886-1969)
			  <br>
			  For the German Pavilion at the 1929 International Exhibition in Barcelona, Spain
			  <br>
			  Manufactured by Berliner Metallgewerbe
			  <br>
			  Germany, 1929
			  <br>
			  Hand-forged steel, hemp
			  <br>
			  Museum purchase from Smithsonian Institution Collections Acquisition Program, General Acquisitions Endowment, Decorative Arts Association Acquisitions Fund through the gift of Torsten Bröhan, and through gift of various donors, 2000-12-1
             </td>
													<td></td>
												</tr>
											</table><!-- page body end --></td>
										<td width="130"><!-- space holder for see also column --><img src="../images/px.gif" width="130" height="1" border="0" alt=""/></td>
									</tr>
								</table></td>
						</tr>
					</table></td>
			</tr>
			<tr height="10%">
				<td valign="bottom"><table border="0" cellspacing="0" cellpadding="0">
						<tr>
							<td bgcolor="#336699"><a href="http://www.gallerysystems.com"><img src="../images/powered_by.gif" width="120" height="41" border="0" alt="Powered By eMuseum"/></a></td>
						</tr>
					</table></td>
			</tr>
		</table>
	</body>
</html>
