
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">




<html>
<head>
<title>Shangri La</title>
<base href="http://www.shangrilahawaii.org"/>
<link rel="STYLESHEET" type="text/css" href="inc/screen.css" />
<script src="inc/global.js" type="text/javascript"></script>

<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)

	//&amp;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('&amp;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 += '&amp;newvalues=1&amp;rawsearch=' + fieldname + '/,/is/,/' + fieldvalue + '/,/false&amp;newstyle=' + style + '&amp;newprofile=' + profile + '&amp;newsearchdesc=' + searchdesc + '&amp;newcurrentrecord=1';
	document.frm.submit();
}

function singleview(newpage)
{
	clearNew();
  	document.frm.emu_action.value = 'newpage';
  	document.frm.action += '&pageId=211&newvalues=1&newstyle=single&newpage=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='&amp;'}

	switch (action)
	{
	case 'newpage' :
		document.frm.action += cS + 'newvalues=1&amp;newcurrentrecord=' + para;
	  	break
	case 'style' :
	  	document.frm.action += cS + 'newvalues=1&amp;newstyle=' + para;
	  	break
	case 'sort' :
	  	document.frm.action += cS + 'newvalues=1&amp;newcurrentrecord=1&amp;newsortstring=' + para;
	  	break;
	case 'page' :
		document.frm.emu_action.value = 'newpage';
		document.frm.action += cS + 'newvalues=1&amp;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&amp;collection=' + colid + '&amp;collectionname=' + colname + '&amp;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&amp;report=' + reportname + '&amp;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 += '&amp;';
	} else {
		document.frm.action += '?';
	}
	document.frm.action += 'newvalues=1&amp;newpage=' + page + '&amp;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 = "&lt;html&gt;&lt;head&gt;&lt;title&gt;"+sTitle+"&lt;/title&gt;&lt;link rel='stylesheet' href='../txtStyle.css' type='text/css'/&gt;&lt;/head&gt;&lt;body&gt;&lt;table cellpadding='0' cellspacing='0' border='0' width='100%'&gt;&lt;tr valign='top'&gt;&lt;td class='title'&gt;"+sTitle+"&lt;/td&gt;&lt;td align='right' class='txt'&gt;&lt;a href='javascript:window.close();'&gt;Close&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class='txt'&gt;"+sCaption+"&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;&lt;img src='getimage.asp?filename="+imgName+"&amp;type=full' width='400' height='400' border='0' alt='"+sTitle+"'&gt;&lt;/body&gt;&lt;/html&gt;";
	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>


</head>

<body>



<div class="uniNav">
		<form action="../result.asp" id="cse-search-box">

<ul>
	<li ><a href="page.asp?pageId=1">Home</a> | </li><li ><a  href="page.asp?pageId=2">DDFIA</a> | </li><li ><a href="page.asp?pageId=3">Contact Us</a>  </li>
	<li class="active">
		<input type="hidden" name="cx" value="011098538596837736789:l6jzu9vzrv0" ID="Hidden1"/>
		<input type="hidden" name="cof" value="FORID:9" ID="Hidden2"/>
		<input type="hidden" name="ie" value="UTF-8" ID="Hidden6"/>
		<input class="searchBox" type="text" name="q" size="20" ID="Text1"/>
		<input class="searchButton" type="submit" name="sa" value="Search" ID="Submit1"/>
		
		<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>
		<!-- Google CSE Search Box Ends -->
	</li>
</ul>
</form>
</div>

<div class="masthead"><h1><a href="/">Shangri La</a></h1></div>

<div class="mainNav">
<ul>
	<li id="nav1" class="first"><a  href="page.asp?pageId=4" onmouseover="navFlip(this.parentNode.id);" onmouseout="navFlip(this.parentNode.id);">Doris Duke's Shangri La</a><div class="leftCap" id="cap1"></div></li><li id="nav2"  class="active"><a  href="page.asp?pageId=5" onmouseover="navFlip(this.parentNode.id);" onmouseout="navFlip(this.parentNode.id);">Tour the Property</a><div class="leftCap" id="cap2"></div></li><li id="nav3" ><a href="page.asp?pageId=6" onmouseover="navFlip(this.parentNode.id);" onmouseout="navFlip(this.parentNode.id);">The Collection</a><div class="leftCap" id="cap3"></div></li><li id="nav4"  ><a href="page.asp?pageId=7" onmouseover="navFlip(this.parentNode.id);" onmouseout="navFlip(this.parentNode.id);">Conservation &amp; Preservation</a><div class="leftCap" id="cap4"></div></li><li id="nav5" ><a href="page.asp?pageId=8" onmouseover="navFlip(this.parentNode.id);" onmouseout="navFlip(this.parentNode.id);">Programs</a><div class="leftCap" id="cap5"></div></li><li id="nav6" class="last"><a href="page.asp?pageId=9" onmouseover="navFlip(this.parentNode.id);" onmouseout="navFlip(this.parentNode.id);">News &amp; Resources</a></li>
</ul>
</div>

<div class="subNav">
				
		   
			</div>

<div class="contentParent collector">
 
	 
	<h2 style="background: transparent url(/doris_duke_files/image_title/h2_virtual-tour.gif) no-repeat;" class="hideSpan"><span>Damascus Room</span></h2>
 
		

	<!-- NO LINE BREAKS BETWEEN LINKS PLEASE!! -->
	
				<div class="tertNav empty"></div>



<div class="contentParent tour" style="border: 0;">

	<div class="virtualTour">
	
	<script language="JavaScript" type="text/javascript"><!--
	function writeAlternative(){
	
		var str = '';
		
		str += '<div class="virtualTour" style="margin-left: 87px;">';
		str += '<img src="img/misc_flashAlt.gif" width="336" height="26" alt="" style="display: block; margin-bottom: 11px;" />';
	
		str += '<p style="margin-top: 0; line-height: 20px;">';
		str += '<span style="font: 12px georgia; color: #795A57;">Select one of the areas below to explore the grounds at Shangri La</span><br />';
		str += '<a href="page.asp?pageId=243&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBentrycourtyard">Entry Courtyard</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=244&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBfoyer">Foyer &amp; Stairway</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=245&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBCentralcourtyard">Central Courtyard &amp; Powder Room</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=247&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBlivingroom">Living Room</a><br />';
		str += '<a href="page.asp?pageId=249&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBmihrabroom">Mihrab Room &amp; Library</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=250&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBdiningroom">Dining Room &amp; Lanai</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=202&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBturkishrooms">Turkish &amp; Baby Turkish Rooms</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=252&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBmughalgarden">Mughal Garden</a><br />';
		str += '<a href="page.asp?pageId=254&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBdamascusroom">Damascus Room</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=255&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBPrivatehall">Private Hall &amp; Lanai</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=256&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBbedroom">Doris Duke\'s Bedroom &amp; Bathroom</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=258&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBmoroccanroom">Moroccan Room</a><br />';
		str += '<a href="page.asp?pageId=259&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBservicewing">Service Wing &amp; Kitchen</a><img src="img/widget_flashAlt.gif" width="30" height="9" alt="" style="margin-top: 10px;" />';
		str += '<a href="page.asp?pageId=260&amp;emu_action=tour&amp;currentrecord=1&amp;collectionname=WEBplayhouse">Playhouse</a>';
		str += '</p>';
		str += '</div>';
		
		document.write(str);
		}
	//--></script>
	
	<script language="JavaScript" type="text/javascript"><!--
	if (navigator.appVersion.indexOf("MSIE")!=-1||navigator.appVersion.indexOf("Windows")!=-1){
		document.write("<scrip"+"t language=\"VBScript\">\n");
		document.write("on error resume next \n");
		document.write("if instr(Navigator.AppVersion,\"Windows\") <> 0 then\n");
		document.write("if not isobject(CreateObject(\"ShockwaveFlash.ShockwaveFlash.6\")) then \n");
		document.write("writeAlternative()\n");
		document.write("end if\n");
		document.write("end if\n");
		document.write("</scrip"+"t>\n");
	}else{
		var p=(navigator.mimeTypes&&navigator.mimeTypes["application/x-shockwave-flash"])?navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin:0;
		if (!p || parseInt(p.description.substring(p.description.indexOf(".")-1))<6){
			writeAlternative();
		}
	}
	//--></script>
	
	<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="virtual_tour-MX" width="720" height="145" align="middle" VIEWASTEXT>
		<param name="allowScriptAccess" value="sameDomain" />
		<param name="movie" value="virtual_tour-MX.swf?roomName=damascus" />
		<param name="quality" value="high" />
		<param name="bgcolor" value="#ffffff" />
	<embed src="virtual_tour-MX.swf?roomName=damascus" quality="high" bgcolor="#ffffff" width="720" height="145" swLiveConnect=true id="virtual_tour-MX" name="virtual_tour-MX" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
	</object>
	
	</div>

	<h2 class="noBG" style="padding-left: 15px;">Damascus Room</h2>
	
	<div class="tourTools">
	
		<div class="moreImages">
		<span>More images of this area:</span>
		
		
				<a id="digit1" class="on" href="/doris_duke_files/page_images/damascus1web.jpg" onclick="swapTourImg(this.href,this.id); return false;"><span>1</span></a>
			
				<a id="digit2"  href="/doris_duke_files/page_images/damascus2web.jpg" onclick="swapTourImg(this.href,this.id); return false;"><span>2</span></a>
			
				<a id="digit3"  href="/doris_duke_files/page_images/damascus3web.jpg" onclick="swapTourImg(this.href,this.id); return false;"><span>3</span></a>
			
				<a id="digit4"  href="/doris_duke_files/page_images/damascus4web.jpg" onclick="swapTourImg(this.href,this.id); return false;"><span>4</span></a>
			
				<a id="digit5"  href="/doris_duke_files/page_images/damascus5web.jpg" onclick="swapTourImg(this.href,this.id); return false;"><span>5</span></a>
			
				<a id="digit6"  href="/doris_duke_files/page_images/damascus6aweb.jpg" onclick="swapTourImg(this.href,this.id); return false;"><span>6</span></a>
			
		</div>
		
		
		<div class="video"><a href="/doris_duke_files/page_images/DamascusRoom.MPG">Video</a></div>
		
	</div>
	
	<div class="contentMain">
		
		
		
		<div class="tourDisplay">
			<div class="objectShell">
			<img id="tourImage" src="/doris_duke_files/page_images/damascus1web.jpg" alt="" border="0" />
			</div>
		</div>
		
		
		
		<?xml version="1.0"?>
<html>
	<form name="frm" action="page.asp?collectionname=WEBdamascusroom&style=browse&currentrecord=1&page=collection&profile=objects&searchdesc=WEBdamascusroom" 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;Doris Duke Foundation&quot; date=&quot;2010-02-09&quot;><criteria><field fieldname=&quot;Collection&quot; operator=&quot;is&quot; criteria=&quot;WEBdamascusroom&quot; thesaurus=&quot;false&quot; useinternalop=&quot;-1&quot;/><params searchcode=&quot;&quot; pagesize=&quot;12&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;0F24164C-2C58-438F-AB20-A2ED05AA9947&quot; lastsort=&quot;alphasort,ID&quot;/></criteria></eMuseum_search>"/>
			<input type="hidden" name="pageId"/>
			<input type="hidden" name="term" value=""/>
			<input type="hidden" name="sessionid" value="0F24164C-2C58-438F-AB20-A2ED05AA9947"/>
			<input type="hidden" name="emu_action" value="quicksearch"/>
		</fields>
	</form>

<!-- RESULT -->

<result><result><DIV class="thumbsParent"><DIV class="thumbsTitlePar"><H3 xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:ow="http://whatever/">10 Objects in this area</H3><BR/></DIV><DIV class="thumbNav"><div xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:ow="http://whatever/">
					Displaying 1-10 of 10</div><BR/></DIV><DIV class="thumbs"><DIV class="thumbBox"><A href="javascript:singleview('1');"><IMG alt="Carpet" src="/emuseum/code/getImage.asp?filename=81.9web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('2');"><IMG alt="Ceiling" src="/emuseum/code/getImage.asp?filename=64.26web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('3');"><IMG alt="Chest of Drawers" src="/emuseum/code/getImage.asp?filename=65.15web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('4');"><IMG alt="Frieze tile with inscription from Firdousi's Shahnama" src="/emuseum/code/getImage.asp?filename=48.346.2web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('5');"><IMG alt="Jali Pavilion" src="/emuseum/code/getImage.asp?filename=damascus6web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('6');"><IMG alt="Pair of Doors" src="/emuseum/code/getImage.asp?filename=64.22.1web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('7');"><IMG alt="Tile Panel" src="/emuseum/code/getImage.asp?filename=48.42web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('8');"><IMG alt="Tile Panel" src="/emuseum/code/getImage.asp?filename=48.43web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('9');"><IMG alt="Trunk" src="/emuseum/code/getImage.asp?filename=65.14web.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV><DIV class="thumbBox"><A href="javascript:singleview('10');"><IMG alt="Wall of a Historic Interior" src="/emuseum/code/getImage.asp?filename=64.24.4aweb.jpg&type=thumbnail&mediatype=An Image" width="80" height="80" border="0"/></A></DIV></DIV><DIV class="thumbNav bottom"><div xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:ow="http://whatever/">
					Displaying 1-10 of 10</div><BR/></DIV></DIV></result></result>

<!-- RESULT  -->

</html>

		
	</div>
	
	<div class="contentSub roomSidebar">
	
	<p><p><p><p><p><p><span class="nutGraf"><img src="img/drop_t.gif" alt="T">he Damascus Room originally served as a bedroom for Doris Duke’s stepdaughter. But following Duke’s divorce from James Cromwell in the 1940s and a trip to Syria and Lebanon in the early 1950s, she <a href="/page.asp?pageId=230">transformed</a> the space. On her trip she purchased an 18th-century Syrian interior. In 1955, the painted and gilded wood panels, ceiling, vitrines, and doors were installed at Shangri La. The new Damascus Room, however, continued to serve as a bedroom for visitors, staff, and family.</span> </p>
<p>Lovely views of the ocean and Diamond Head can be seen from the Damascus Room. A wood, screen door in the room leads to the roof of the Moroccan Room and Doris Duke’s Bedroom, at the end of which is the <em>jali</em>        (lattice screen) pavilion. The pavilion is composed from remaining pieces of the marble bedroom and bathroom suite that Duke commissioned in India in 1935. Duke used the pavilion recreationally for sunning, playing backgammon, and sewing.</p>
<h2>Resources</h2><p>Learn more about Damascus rooms:<br /><br /><a href="http://www.nyu.edu/gsas/program/neareast/1_faculties.html" target="_blank" class="external">The Hagop Kevorkian Center</a>, <br />New York University<br /><br /><a href="http://www.metmuseum.org/works_of_art/viewOne.asp?dep=14&viewmode=0&item=1970.170" target="_blank" class="external">Nur al-Din Room </a> at <br />The Metropolitan Museum of Art<br /><br /><a href="http://www.cincinnatiartmuseum.org/Search/collectionresultsitemdetail.aspx?OID=83237" target="_blank" class="external">Room from Damascus</a> at <br />The Cincinnati Museum of Art<br /><br /><a href="http://www.pitt.edu/~natrooms/syria-lebanon/syri.html" target="_blank" class="external">Syria-Lebanon Room</a>, <br />Cathedral of Learning, <br />University of Pittsburgh<br /><br /><a href="http://www.damaskuszimmer.de" target="_blank" class="external">Conservation of a Syrian interior</a></a> in Dresden, Germany<br /> <br /><a href="http://www.shangrilahawaii.org/page.asp?pageId=202&emu_action=tour&amp;currentrecord=1&collectionname=WEBturkishrooms" class="external"> The Turkish Rooms</a> at Shangri La </p></p></p></p></p></p>	
	
	</div>
	
<div class="clearEm"></div>
	
</div>
</div>


 
 
 <div class="footer"><p>Copyright © 2006 <a href="http://www.ddcf.org" target="_blank">Doris Duke Charitable Foundation</a>.   <a href="/page.asp?pageId=280">Terms of Use</a>   <a href="/page.asp?pageId=281">Photo & Video Credits</a>   <a href="mailto:webmaster@ddcf.org">webmaster@ddcf.org</a><br />                                                         Web site design and development by <a href="http://www.IconNicholson.com" target="_blank">IconNicholson</a></p></div>


</body>
</html>
