Index: wp-admin/network/sites.php
===================================================================
--- wp-admin/network/sites.php	(revision 23386)
+++ wp-admin/network/sites.php	(working copy)
@@ -24,26 +24,36 @@
 
 add_screen_option( 'per_page', array( 'label' => _x( 'Sites', 'sites per page (screen options)' ) ) );
 
+$overview = '<p>' . __( 'This area of the Administration Screens is used for managing the sites in your Multisite Network.' ) . '</p>';
+$overview .= '<p>' . __( 'From here you can:' ) . '</p>';
+$overview .= '<ul><li>' . __( 'Add, modify or remove sites from your network' ) . '</li>';
+$overview .= '<li>' . __( 'Search for sites in your network' ) .'</li>';
+$overview .= '<li>' . __( 'Perform bulk actions on multiple sites at once' ) .'</li></ul>';
+
 get_current_screen()->add_help_tab( array(
 	'id'      => 'overview',
-	'title'   => __('Overview'),
-	'content' =>
-		'<p>' . __('Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.') . '</p>' .
-		'<p>' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '</p>' .
-		'<p>' . __('Hovering over each site reveals seven options (three for the primary site):') . '</p>' .
-		'<ul><li>' . __('An Edit link to a separate Edit Site screen.') . '</li>' .
-		'<li>' . __('Dashboard leads to the Dashboard for that site.') . '</li>' .
-		'<li>' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '</li>' .
-		'<li>' . __('Delete which is a permanent action after the confirmation screens.') . '</li>' .
-		'<li>' . __('Visit to go to the frontend site live.') . '</li></ul>' .
-		'<p>' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '</p>' .
-		'<p>' . __('Clicking on bold headings can re-sort this table.') . '</p>'
+	'title'   => __( 'Overview' ),
+	'content' => $overview
 ) );
 
+$management = '<p>' . __( 'The site management screen allows you to modify aspects of one or many of your sites at once.' ) . '</p>';
+$management .= '<p>' . __( '<strong>Hovering over each site</strong> reveals seven options (three for the primary site):' ) . '</p>';
+$management .= '<ul><li>' . __( '<strong>Clicking Edit</strong> takes you to a multi-part settings screen for that site' ) . '</li>';
+$management .= '<li>' . __( '<strong>Clicking Dashboard</strong> takes you to the Dashboard screen for that site' ) . '</li>';
+$management .= '<li>' . __( '<strong>Clicking Deactivate, Archive, or Spam</strong> performs the specified action with a confirmation screen' ) . '</li>';
+$management .= '<li>' . __( '<strong>Clicking Delete</strong> deletes a site from your network, following a confirmation screen' ) . '</li>';
+$management .= '<li>' . __( '<strong>Clicking Visit</strong> takes you to the front-end view of the site' ) . '</li></ul>';
+
+get_current_screen()->add_help_tab( array( 
+	'id'      => 'site-management',
+	'title'   => __( 'Site Management' ),
+	'content' => $management
+) );
+
 get_current_screen()->set_help_sidebar(
-	'<p><strong>' . __('For more information:') . '</strong></p>' .
-	'<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
-	'<p>' . __('<a href="http://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
+	'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
+	'<p>' . __( '<a href="http://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>' ) . '</p>' .
+	'<p>' . __( '<a href="http://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>' ) . '</p>'
 );
 
 $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
