if (self.parent.frames.length != 0)
	self.parent.location.replace(document.location.href);

function em(box, server, zone)
{
	var at = String.fromCharCode(64);
	return '<a href="'+'mai'+'lto'+':'+box+at+server+'.'+zone+'">'+box+at+server+'.'+zone+'<'+'/a>';
}


function show_image(image_url)

{

	var html = '<html style="height:100%"><head><title>Фотография</title></head><body style="background:url(\'/f/i/loading.gif\') #ffffff no-repeat 50% 50%; 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+20, document.photo.height+70)">' +

		'</td></tr></table></body></html>';

	var width = 600, height = 400;

	var top = Math.round((screen.availHeight-height)/2)-Math.round((screen.availHeight-height)/4),

		left = Math.round((screen.availWidth-width)/2)-Math.round((screen.availWidth-width)/6);



	var popup_window = window.open('', 'win_photo', 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');

	popup_window.document.open();

	popup_window.document.write(html);

	popup_window.document.close();

	popup_window.focus();



	return false;

}


