/**
 * Adjust here your question
 */
function deleteUser(id) {
	if(confirm('Are you sure you want to remove this user?'))
		window.location.href='./?go=users&delete=' + id;
}
