<!--
function pop_resize(img,tit,txt){
  var janela = window.open('','pop','width=20,height=20,scrollbars=yes');
  janela.document.write('<html>\n');
  janela.document.write('<head>\n');
  janela.document.write('<title>'+tit+'</title>\n');
  janela.document.write('<link rel="stylesheet" href="css/base.css" type="text/css">\n');
  janela.document.write('<script language=Javascript>\n');
  janela.document.write('function resize(){\n');
  janela.document.write('var w_foto = document.propers.width+26;\n');
  if (txt == ""){
  janela.document.write('var h_foto = document.propers.height;\n');
  }
  if (txt != ""){
  janela.document.write('var h_foto = document.propers.height+42;\n');
  }
  janela.document.write('window.moveTo((screen.width/2)-(w_foto/2),20);\n');
  janela.document.write('if (h_foto <= 500){\n');
  janela.document.write('window.resizeTo(w_foto,h_foto+29);\n');
  janela.document.write('} else {\n');
  janela.document.write('window.resizeTo(w_foto,500);\n');
  janela.document.write('}\n');
  janela.document.write('}\n');
  janela.document.write('</script>\n');
  janela.document.write('</head>\n');
  janela.document.write('<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="resize();">\n');
  janela.document.write('<table border="0" cellspacing="0" cellpadding="0" class="in_tdtxt">\n');
  janela.document.write('<tr>\n');
  janela.document.write('<td><img src="'+img+'" name="propers" onClick="javascript:window.close();" alt="Fechar"></td>\n');
  janela.document.write('</tr>\n');
  if (txt != ""){
  janela.document.write('<tr>\n');
  janela.document.write('<td bgcolor="#FFFFFF" height="1"><img src="images/space.gif" width="1" height="1"></td>\n');
  janela.document.write('</tr>\n');
  janela.document.write('<tr>\n');
  janela.document.write('<td align="center" class="legd">'+txt+'</td>\n');
  janela.document.write('</tr>\n');
  }
  janela.document.write('</table>\n');
  janela.document.write('</body>\n');
  janela.document.write('</html>\n');
  janela.document.close();
  janela.focus();
}

function popVideo(a){
  window.open(a,'tmpmm','width=445,height=370,menu=1,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=20,top=20');
}
//-->