// Abre xhtml 1.0 Strcit Válido
function abreFigu(nome,largura,altura,descr,posiDire,posiTopo) {
 y = altura + 5;
 novaJane = window.open( nome ,"","width=" + largura + ",height=" + y + ",left=" + posiDire + ",top=" + posiTopo );
 novaJane.document.open();
 novaJane.document.write('<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XhtmL 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br"><head>');
 novaJane.document.write('<title>' + descr + '</title>');
 novaJane.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css"><!-- body { margin: 0; } --></style></head><body>');
 novaJane.document.write('<img src="' + nome + '" width="' + largura + '" height="' + altura + '" alt="' + descr +'" />');
 novaJane.document.write('</body></html>');
 novaJane.document.close();
 novaJane.focus();
}
//