function confirmation(url, title)
	{
	var answer = confirm("Diesen Beitrag löschen?\n\n" + title);

	if (answer)
		{
		window.location = url;
		}
	}