function show_img(url, x, y)
{

var OpenWindow = window.open("","","left=30, top=30, menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, width=" + x + ", height=" + y);

var alt='Watch it!';

OpenWindow.document.write('<HTML>');
OpenWindow.document.write('<HEAD>');
OpenWindow.document.write('<TITLE>' + alt + '</TITLE>');
OpenWindow.document.write('</HEAD>');
OpenWindow.document.write('<BODY style="margin: 0px; padding: 0px;" text="blue">');
OpenWindow.document.write('<img  onClick="window.close()" src="' + url + '" title="Шелкните, чтобы закрыть" alt="Шелкните, чтобы закрыть" style="cursor: hand; cursor: pointer;" border="0">');
OpenWindow.document.write('</BODY>');
OpenWindow.document.write('</HTML>');
}