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 menu_flip(obj, class_name)
{
	obj.parentElement.className = class_name;
}



// Image in new window
function show_image(image_url)
{
	var html = '<html style="height:100%"><head><title>Фотография</title></head><body style="background:url(\'/i/loading.gif\') #f0f0f0 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.moveTo(Math.round((screen.availWidth-document.photo.width)/2), Math.round((screen.availHeight-document.photo.height)/2));window.resizeTo(document.photo.width+40, document.photo.height+90)">' +
		'</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();
}
