// JavaScript Document
var popUpWin=0;
function janela(HREF, WINDOW, WID, HEI){
	if(popUpWin){
		 if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(HREF, WINDOW, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width='+WID+',height='+HEI+',left=50, top=50');
}
function fechar(){
	close();
}
function imprimir(){
	print(document);
}