<!--

function popup(janela,texto)
{ if (texto==undefined) texto="";
  xmax=screen.width;
  ymax=screen.height;
  topo = (ymax-550)/2;
  esquerda=(xmax-650)/2;
  window2=open("","_blank","scrollbars=no,resizable=no,menubar=no,status=no,titlebar=no,toolbar=no,width=660,height=510,top="+topo+",left="+esquerda);
  window2.document.write('<html>');
  window2.document.write('<head>');
  window2.document.write('<title>::: FEBA :::</title>');
  window2.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
  window2.document.write('<link rel="stylesheet" href="principal.css">');
  window2.document.write('');
  window2.document.write('</head>');
  window2.document.write('');
  window2.document.write('<body bgcolor="#FFFFFF">');
  window2.document.write('<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" class="TEXTOMED">');
  window2.document.write('  <tr> ');
  window2.document.write('    <td><b>FEBA</b></td>');
  window2.document.write('    <td> ');
  window2.document.write('      <div align="right"><a href="javascript:close();"><b>[X] fechar</b></a></div>');
  window2.document.write('    </td>');
  window2.document.write('  </tr>');
  window2.document.write('  <tr> ');
  window2.document.write('    <td colspan="2"> ');
  window2.document.write('      <p align="center"><img src="'+janela+'">');
  if (texto!="")
  {// window2.document.write('  <tr> ');
//    window2.document.write('    <td colspan="2"> ');
    window2.document.write('   <br>   <div align="center">'+texto+'</div>');
//    window2.document.write('    </td>');
//    window2.document.write('  </tr>');
//    window2.document.write('  <tr> ');
  }
  window2.document.write('</p>');
  window2.document.write('    </td>');
  window2.document.write('  </tr>');
  window2.document.write('    <td colspan="2"> ');
  window2.document.write('      <div align="center"><a href="javascript:close();"><b>[X] fechar</b></a></div>');
  window2.document.write('    </td>');
  window2.document.write('  </tr>');
  window2.document.write('</table>');
  window2.document.write('</body>');
  window2.document.write('</html>');
}
//-->