function Delete(url)
{
	if (confirm("Wirklich löschen?") == true)
	{
	  window.location.href = url;	  
	}
}

