//This have been used to fetch an access token for offline wall posting to the Halbye Kaag page.
function login() {
	FB.login(function() {
		FB.api('/me/accounts', 'get', {}, function(response) {
			console.log(response);
		});
	}, {perms:'publish_stream,offline_access,manage_pages'});
}
