// JavaScript Document
function deletecheck(id){
	check = confirm("Dieses Profil wirklich entfernen?");
	if (check == false){
		;
	} else {
	  setTimeout("self.location.href='options-general.php?page=bdprofiles.php&pid="+ id + "&action=delete'",0);
	}
	
}