Figured out issue. There is a bug in WordPress 3.3.1 that causes the issue. To fix:
1) Opened file ../wp-admin/includes/screen.php
2) On line 706 found the following PHP statement: <?php echo self::$this->_help_sidebar; ?>
3) Replaced it with the statement: <?php echo $this->_help_sidebar; ?>