function pseudoPop(url, nomeJanela, valorLargura, valorAltura, tituloJanela) {
    var generator = window.open('','name','width='+valorLargura+', height='+valorAltura+'');
    generator.document.write('<html><head><title>'+tituloJanela+'</title>');
    generator.document.write('<link rel="stylesheet" href="culturais.css">');
    generator.document.write('</head><body>');
    generator.document.write('<img src='+url+' alt='+tituloJanela+' />');
    generator.document.write('</body></html>');
}
