Hey, nice find Otto. I just noticed it doesn't work properly on PP either. If you try to aim someone the window from the forum will pop up fine, but the users name in the aim window will only have the first word. A pretty simple fix seemed to work for me though. If you just look in member.php for:
$aim = htmlspecialchars( $aim );
Right Above that Add:
$aim=str_replace(' ',"+",$aim);
Just tried that on my forums and it seems to work fine.