function img(link,ww,hh,title) {

//dotpos=link.lastIndexOf(".");
//address1=link.substr(0,(dotpos-2));
//address2=link.substr(dotpos,link.length);
//link=address1+address2;

w=window.open(link,'',(ww ? 'width='+ww+',' : '')+(hh ? 'height='+hh+',' : '')+'toolbar=0,scrollbars=0,left=100,top=100,resizable');
if (link.indexOf('.html')==-1) {
if (document.layers){title='';}
w.document.open();
w.document.write('<html><head><title>'+title+'</title><meta http-equiv=Content-Type content="text/html; charset=utf-8"></head>');
w.document.write('<body bgcolor=white marginwidth=0 marginheight=0 topmargin=0 leftmargin=0><a href=# onclick="window.close();" title="Close window" alt="Close window"><img src='+link+' width='+ww+' height='+hh+' border=0 alt="'+title+'"></a></body></html>');
w.document.close();}
w.focus();}