function confirm_delete(delete_url)
{
	if (confirm('Ta bort objektet?'))
	{
		location.href = delete_url;
	}
}
