// JavaScript Document

//Endgültiges Löschen bestätigen
function LinkConfirm(Text,Url){
	if(confirm(Text))  { 
		location.href = Url;
  	}
}
