function aIMG(I,W,H,alt){ 
escala=1; 
nW = window.open("","","width="+(escala*W)+",height="+(escala*H)+",left="+(screen.width-(escala*W))/2+",top="+(screen.height-(escala*H)-50)/2+",resizable=yes"); 
nW.document.open(); 
nW.document.write("<html><title>"+alt+"</title>"); 
nW.document.write("<body bgcolor=\"#808080\" leftmargin=\"0\" topmargin=\"0\">"); 
nW.document.write("<center><img src=../../js//""+I+"/" width=\""+(escala*W)+"\" height=\""+(escala*H)+"\" alt=\""+alt+"\"></center>"); 
nW.document.write("</body></html>"); 
nW.document.close(); 
nW.focus(); 
} 
