function show_image(image_url)
{
	var html = '<html style="height:100%"><head><title>Фотография</title></head><body style="background:url(\'/f/i/loading.gif\') #e9f0e9 center center no-repeat; height:100%" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">' +
		'<img src="' + image_url + '" alt="'+image_url+'" '+' name="photo" onload="window.moveTo(Math.round((screen.availWidth-document.photo.width)/2), Math.round((screen.availHeight-document.photo.height)/2));window.resizeTo(document.photo.width+10, document.photo.height+10)">' +
		'</body></html>';
	var width = 600, height = 450;
	var top = Math.round((screen.availHeight-height)/2),
		left = Math.round((screen.availWidth-width)/2);
	var popup_window = window.open('', 'win_photo', 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1');
popup_window.document.open();
popup_window.document.write(html);
popup_window.document.close();
popup_window.focus();
}
