Index: wp-admin/js/common.dev.js
===================================================================
--- wp-admin/js/common.dev.js	(revision 21273)
+++ wp-admin/js/common.dev.js	(working copy)
@@ -137,6 +137,26 @@
 /**
  * Help tabs.
  */
+$(document).ready(function(){
+	var panel = window.location.hash;
+
+	if ( panel ) {
+		link = $('a[href='+ panel +']'), panel = $( panel );
+
+		// Active the correct panel.
+		$('.contextual-help-tabs .active').removeClass('active');
+		link.parent('li').addClass('active');
+		$('.help-tab-content').not( panel ).removeClass('active').hide();
+		panel.addClass('active').show();
+
+		// Scroll back to the top.
+		$('html, body').animate({ scrollTop: 0 }, 'fast');
+		
+		// Open the help panel.
+		screenMeta.open( $('#contextual-help-wrap'), $('.show-settings') );
+	};
+});
+
 $('.contextual-help-tabs').delegate('a', 'click focus', function(e) {
 	var link = $(this),
 		panel;
