hwndImage = new Object();
hwndImage.closed = true;

hwndWindow = new Object();
hwndWindow.closed = true;

function newWindowOpen(imagem,descricao,largura,altura,params){
    if (!hwndImage.closed) {
        hwndImage.close();
    }

    hwndImage = window.open('','imagem','left=5,top=5,width=' + largura + ',height=' + (altura + 135) + params + '');

    hwndImage.document.writeln('<html>');
    hwndImage.document.writeln('<head>');
    hwndImage.document.writeln('<title>MAPRO</title>');
    hwndImage.document.writeln('<link rel="stylesheet" type="text/css" href="styles.css">');
    hwndImage.document.writeln('</head>');
    hwndImage.document.writeln('<body>');
    hwndImage.document.writeln('<table width="'+ parseInt(largura) +'" border="0" cellspacing="0" cellpadding="0">');
    hwndImage.document.writeln('<tr>');
    hwndImage.document.writeln('<td align="left"><img src="media/logomarca_mapro_01.gif" width="94" height="45" hspace="10" vspace="10"></td>');
    hwndImage.document.writeln('</tr>');
    hwndImage.document.writeln('<tr>');
    hwndImage.document.writeln('<td height="' + (parseInt(altura + 5)) +'" align="right"><img src="' + imagem + '"></td>');
    hwndImage.document.writeln('</tr>');
    hwndImage.document.writeln('<tr>');
    hwndImage.document.writeln('<td align="right" class="texto_07" style="padding-right:7px" valign="top">'+ descricao + '</td>');
    hwndImage.document.writeln('</tr>');
    hwndImage.document.writeln('<tr>');
    hwndImage.document.writeln('<td align="right" class="texto_07">&nbsp;</td>');
    hwndImage.document.writeln('</tr>');
    hwndImage.document.writeln('<tr>');
    hwndImage.document.writeln('<td align="right" style="padding-right:3px"><a href="javascript:window.print()"><img src="media/bt_imprimir.gif" width="97" height="36" hspace="10" border=0></a><a href="javascript:window.close()"><img src="media/bt_fechar.gif" width="97" height="36" border=0></a></td>');
    hwndImage.document.writeln('</tr>');
    hwndImage.document.writeln('</table>');
    hwndImage.document.writeln('</body>');
    hwndImage.document.writeln('</html>');

    hwndImage.document.close();
    hwndImage.focus();
    
}




function popupNews(){
    if (!hwndWindow.closed) {
        hwndWindow.close();
    }

    hwndWindow = window.open('http://www.vizza.com.br/cgi-bin/clientes/mapro/mapro_noticias_listar.pl','noticias','left=5,top=5,width=500,height=420,scrollbars,resizable');
}


