Não aparece o gráfico via Primefaces depois de algum tempo

Olá,

quando entro na aplicação e vou no item do menu gráfico mostra o mesmo tudo certo.

Depois vou para outros itens do menu como movimentação ,relatório,etc e depois de uns
5 minutos volto ao item gráfico e tento visualizar na tela não aparece o gráfico e sim
a tela fica em branco somente com regua de x e y. e Já debuguei e não da erro algum
o que será que pode ser…

estou usando eclipse helios r2,java 6, tomcat 6,primefaces 2,jsf 2,windows 7 64 bits

se alguém puder me ajudar…

abs

a página que faz o gráfico

<html xmlns="http://www.w3.org/1999/xhtml"
	xmlns:ui="http://java.sun.com/jsf/facelets"
	xmlns:c="http://java.sun.com/jsp/jstl/core"
	xmlns:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core"
	xmlns:p="http://primefaces.prime.com.tr/ui">

<ui:composition template="/templates/interna.xhtml">

	<ui:define name="titulo">
    Relatório de Aluno
	</ui:define>
    <ui:define name="corpo">
     	<h:form id="edicao">
     	
     	   <h:outputLabel value="Relatório de Aluno "  for="descricao" />
     	</h:form >

	<h:panelGrid columns="4">
			<h:form id="impressao">
				<h:commandLink>
					<f:setPropertyActionListener target="#{reportAluno.tipoRelatorio}"
						value="1" />
					<p:fileDownload value="#{reportAluno.arquivoRetorno}" />
					<h:graphicImage library="imagens" name="pdf.png"
						title="Imprimir PDF" />
				</h:commandLink>
				<!-- 
				<h:commandLink>
					<f:setPropertyActionListener target="#{reportAluno.tipoRelatorio}"
						value="2" />
					<p:fileDownload value="#{reportAluno.arquivoRetorno}" />
					<h:graphicImage library="imagens" name="excel.png"
						title="Imprimir Excel" />
				</h:commandLink>
				<h:commandLink>
					<f:setPropertyActionListener target="#{reportAluno.tipoRelatorio}"
						value="3" />
					<p:fileDownload value="#{reportAluno.arquivoRetorno}" />
					<h:graphicImage library="imagens" name="html.png"
						title="Imprimir HTML" />
				</h:commandLink>
				<h:commandLink>
					<f:setPropertyActionListener target="#{reportAluno.tipoRelatorio}"
						value="4" />
					<p:fileDownload value="#{reportAluno.arquivoRetorno}" />
					<h:graphicImage library="imagens" name="ods.png"
						title="Imprimir Planilha Open Office" />
				</h:commandLink>
				 -->
			</h:form>
		</h:panelGrid>
	</ui:define>
</ui:composition>
</html>