function exempleWnd(wndName,myImag,w,h,scrll,rszbl) {
winprops = 'height='+h+',width='+w+',top=5,left=5,resizable='+rszbl+',scrollbars='+scrll+',status=no'
newWindow=window.open("","exempleWnd",winprops)
newWindow.document.open();
newWindow.document.write('<html>');
newWindow.document.write('<title>'+wndName+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#ffffff"  onBlur="self.close()">');   
newWindow.document.write('<img src='+myImag+' >'); 
newWindow.document.write('</td></tr></table></body></html>');
newWindow.document.close();
newWindow.focus();
}