// JavaScript Document
function deleteUser(userId)
{
	if (confirm('Delete this user?')) {
		window.location.href = 'processUsers.php?action=deleteUser&userId=' + userId;
	}
}

function deleteUserImage(userId)
{
	if (confirm('Delete this image')) {
		window.location.href = 'processUsers.php?action=deleteUserImage&userId=' + userId;
	}
}

function deleteMemberAdmin(userId)
{
	if (confirm('Delete this member')) {
		window.location.href = 'processUsersAdmin.php?action=deleteUserAdmin&userId=' + userId;
	}
}
