function img (url,w,h)
{
//поправка на отступ	
ww=parseInt(w)+40; 
hh=parseInt(h)+40; 
mywind=window.open('','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+ww+',height='+hh+'');
mywind.document.write('<IMG SRC='+url+'>');
}
