Add popup support to the Contact module administration.

  if (module_exists('contact')) {
    $popups['admin/build/contact'] = array(
      // Add category
      '#tabs-wrapper a:contains('. t('Add category') .')',
      // Settings
      '#tabs-wrapper a:contains('. t('Settings') .')' => array(
        'noUpdate' => TRUE,
      ),
      // Editing and removing individual categories
      'a:contains('. t('edit') .'), a:contains('. t('delete') .')',
    );
  }

Postponed for the $popups patch at #385432: Aggregator Module Support.