function myConfirm(path, items){ 
	if( confirm('Diesen Eintrag "'+items+'" wirklich entfernen?'))
	{
		window.location.href = path;
	}
}
