function show_image(image_url)
{
	var html = '<html style="height:100%"><head><title>Газовик</title></head><body style="background:url(\'/f/i/loading.gif\') #ffffff center center no-repeat; height:100%" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">' +
		'<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr valign="middle"><td align="center">'+
		'<img src="' + image_url + '" alt="'+image_url+'" '+
		' name="photo" onload="window.resizeTo(document.photo.width+40, document.photo.height+70)">' +
		'</td></tr></table></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();

	return false;
}