Boa tarde pessoal.
Meu HTML da aplicação jsf é o seguinte:
<?xml version="1.0" encoding="UTF-8"?>
<!--
Document : SIGAEWeb1
Created on : 24/02/2010, 11:42:41
Author : jose
-->
<jsp:root xmlns:ui="http://java.sun.com/jsf/facelets" version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ice="http://www.icesoft.com/icefaces/component">
<jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
<body bgcolor="#E6FEFF">
<ui:include src="menu.jspx"></ui:include>
<br/><br/><br/>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 14pt;" align="center">RELATORIOS</div><br/><br/>
<f:view>
<h:outputText rendered="#{empty RelatoriosFace.saida}" value="Relatório não gerado. Consulte o Administrador do Sistema." />
<f:subview id="relatorio" rendered="#{not empty RelatoriosFace.saida}">
<iframe width="100%" height="500" src="#{RelatoriosFace.saida}"></iframe>
</f:subview>
</f:view>
</body>
</jsp:root>
O problema é que o menu chamado pelo include <ui:include src="menu.jspx"></ui:include> fica escondido atrás do iframe. Existe alguma maneira do meu include ficar sempre a frente do iframe? Ou alguma forma de exibir meu relatório sem utiliza o iframe?
Obrigado
José Luiz