function popup(self){var w=parseInt(self.width)+50,h=parseInt(self.height)+50,p=window.open("","popup","location,width="+w+",height="+h);p.document.write("<html>");p.document.write("<title>title</title>");p.document.write("<body style=\"margin:0;padding:0;text-align:center;\" onload=\"var e=document.getElementById('img');window.resizeTo(parseInt(e.width)+10,parseInt(e.height)+80);\" >");p.document.write("<img src=\""+self.alt+"\" alt=\"\" onclick=\"self.close();\" id=\"img\" />");p.document.write("<br />");p.document.write("[ <a href=\"javascript:self.close();\">ЗАКРЫТЬ</a> ]");p.document.write("</body>");p.document.write("</html>");p.document.close();if(p.focus)p.focus();return false;}
