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('<html><head><title>' + descr + '</title><style type="text/css"><!-- body { margin: 0; } --></style></head><body>');
novaJane.document.write('<img src="' + nome + '" width="' + largura + '" height="' + altura + '" alt="' + descr +'"></body></html>');
novaJane.document.close();
novaJane.focus();
}