function replaceOrRedirect(what, response)
{
	json = response.responseJSON;
	if (json && json.redirect)
	{
		window.location.href = json.redirect;
	}
	else
	{
		$(what).replace(response.responseText);
	}
}
