<%--
 * Copyright by Intland Software
 *
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Intland Software. ("Confidential Information"). You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Intland.
 *
 * $Revision$ $Date$
--%>
<%@ taglib uri="jstl-c" prefix="c" %>

<%--
	This JSP fragement renders the tree on the left side and some other content on the right
	The right content is specified by the "middlePanel" parameter
--%>

<table border="0" cellpadding="0" cellspacing="0" width="100%" id="treeContainerTable">
<tr>
	<td id="left-panel" valign="top">
		<jsp:include page="./docTree.jsp" />
	</td>
	<td id="middle-panel" valign="top" >
		${param.middlePanel}
	</td>
</tr>
</table>