function CheckAction (frage,url) {
	var chk = window.confirm(frage);
	if(chk == true){
  		window.location.href = url;
  	} else {
  		return (chk);
  	}
}
