<?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"
    import="com.ihr.web.*"
    %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<%
	// Initialize the Config object
	Config.init(application);
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>TeamTax - Desarrollo de taxonomías en colaboración.</title>
<script type="text/javascript">
function updateCommentsFrame(newUrl) {
	document.frames.commentsFrame.location=newUrl;
}
</script>
</head>
<frameset rows="10%,90%">
	<frame name="header" src="header.html" scrolling="no" noresize="noresize" frameborder="0"/>
	<frameset cols="55%,45%">	
		<frame name="tree" src="taxonomyTree.jsp" />
		<frameset rows="65%,45%">
			<frame name="nodeFrame" src="showNode.jsp"/>		
			<frame name="commentsFrame" src="<%= Config.getBugzillaURL() %>"/>
		</frameset>
	</frameset>
</frameset>
</html>