/**
 * Log a user out, gently
 * with love, and respect.
 */
function Logout() {
	$.post(
		'/API/CMS/User/Logout',
		{},
		function(response) {window.location = '/?goodbye';},
		'json'
	);
}