// janelas 


function janela(Url,Wid,Hei) {
endereco = Url
wid2 = Wid + 20;
hei2 = Hei + 20; 
tamanho = 'top=1,left=1,width=' + wid2 + ',height=' + hei2;

window.open(endereco,'Produtos',tamanho);

}
