Index: wp-admin/edit-comments.php
===================================================================
--- wp-admin/edit-comments.php	(revision 21088)
+++ wp-admin/edit-comments.php	(working copy)
@@ -142,16 +142,21 @@
 <div class="wrap">
 <?php screen_icon(); ?>
 <h2><?php
-if ( $post_id )
-	echo sprintf(__('Comments on &#8220;%s&#8221;'),
-		sprintf('<a href="%s">%s</a>',
-			get_edit_post_link($post_id),
-			wp_html_excerpt(_draft_or_post_title($post_id), 50)
+if ( $post_id ) {
+	$post = get_post( $post_id );
+	$post_type_object = get_post_type_object( $post->post_type );
+	echo sprintf( __( 'Comments on &#8220;%1$s&#8221; - %2$s' ),
+		sprintf( '<a href="%s">%s</a>',
+			get_edit_post_link( $post_id ),
+			wp_html_excerpt( _draft_or_post_title( $post_id ), 50 )
+		),
+		sprintf( '<a href="%s">%s</a>',
+			get_permalink( $post_id ), $post_type_object->labels->view_item
 		)
 	);
-else
+} else {
 	echo __('Comments');
-
+}
 if ( isset($_REQUEST['s']) && $_REQUEST['s'] )
 	printf( '<span class="subtitle">' . sprintf( __( 'Search results for &#8220;%s&#8221;' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ) . '</span>' ); ?>
 </h2>
