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 select_brand(select_obj)
{
	var brand = select_obj.options[select_obj.selectedIndex].value;
	if (brand.length>0)
	{
		document.forms['select_brand_form'].action += brand+'/';
		document.forms['select_brand_form'].submit();
	}
}

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+20, document.photo.height+70)">' +
		'</td></tr></table></body></html>';
	var width = 250, height = 150;
	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=0,resizable=1');
	popup_window.document.open();
	popup_window.document.write(html);
	popup_window.document.close();
	popup_window.focus();

	return false;
}