/**
 * Confirmation for critical process
 */
function confirmation(url)
{
	Check = confirm("Soll dieser Eintrag wirklich gelöscht werden?");
	if (Check == true)
	window.location.href = url;
}
