function inFrame()
{
	if(top.location.href != window.location.href)
	{
		return true;
	}
}

function edit(obj, extra)
{
	if(inFrame())
	{
		parent.window.edit(obj.id, extra);
		location.href = '#'+obj.id;
	}
	else
	{
		alert('To edit this page, please access it through your control panel.');
	}
}