function image(obj, url, x, y)
{

var OpenWindow = window.open("","","left=0, top=0, menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, width=" + x + ", height=" + y);

var alt=obj.getAttribute('alt');

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>');
}

/*
function getImages() {
var s=document.getElementsByTagName('img');

for (var i=0; i<s.length; i++) {

	if (s[i].getAttribute('onClick'))
	s[i].style.cursor = 'pointer';
	s[i].style.cursor = 'hand';
    }

}
*/
