function abrir(url,alt,lar) {
janela = null;
cima = (window.screen.height - alt)/2; 
lado = (window.screen.width - lar)/2; 
pasta = "produtos"; 

if(janela == null) 
 {
  janela = window.open("","Rodas","width="+lar+",height="+alt+",top="+cima+",left="+lado+",toolbars=no");
  janela.document.write("<html><head><title>TSW</title></head><body style=\"margin: 0px\">");
  janela.document.write("<img src='"+pasta+"/"+url+"' width="+lar+" height="+alt+" alt='Versão Ampliada'>");
  janela.document.write("</body></html>");
 }


if(janela.name == "Rodas") 
 {
  janela.close();
  janela = window.open("","Rodas","width="+lar+",height="+alt+",top="+cima+",left="+lado+",toolbars=no");
  janela.document.write("<html><head><title>TSW</title></head><body style=\"margin: 0px\">");
  janela.document.write("<img src='"+pasta+"/"+url+"' width="+lar+" height="+alt+" alt='Versão Ampliada'>");
  janela.document.write("</body></html>");
 }
}