I need to detect if the current user is system account. With SPServices i can find user login name:
var thisUserName = $().SPServices.SPGetCurrentUser({
fieldName: "Title",
debug: false
});
But with system account logged in, this JS function gives the login name of the real user so i cannot define that the user is system account.
