function ShowPage(picture, width, height, alt)
{
	child = window.open('about:blank', null, 'resizable=no,copyhistory=no,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,width='+width+',height='+height);
	child.document.write('<html><title>'+alt+'</title><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" onload="javascript:window.focus();"><a href="javascript:window.close();"><img src="'+picture+'" border="0" width="'+width+'" height="'+height+'" alt="Закрыть окно "></a></body></html>');
	child.document.close();
}
