Index: trunk/xpressme_integration_kit/templates/source/global_popular_posts_block.html
===================================================================
--- trunk/xpressme_integration_kit/templates/source/global_popular_posts_block.html	(revision 554)
+++ trunk/xpressme_integration_kit/templates/source/global_popular_posts_block.html	(revision 555)
@@ -20,4 +20,7 @@
 		<{$content.comment_link}>				// Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 
 		<{$content.trackback_url}>				// Displays the trackback URL for the current post.
+		<{$content.blog_link}>					// Displays a permalink to the blog a comment belongs to.
+		<{$content.blog_title}>					// Displays a title to the blog a comment belongs to.
+		<{$content.blog_title_link}>			// Displays the blog's permalink, where the link text value is the posts title name.
 		<{/foreach}>							// End of Loop
 ************************* End of usage ************************ *}>
Index: trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/global_popular_posts_block_theme.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/global_popular_posts_block_theme.php	(revision 554)
+++ trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/global_popular_posts_block_theme.php	(revision 555)
@@ -32,4 +32,8 @@
 			switch_to_blog($blog['blog_id']);
 			$wp_rewrite->init();
+			
+			$blog_title = get_bloginfo('name');
+			$blog_link = get_bloginfo('url');
+			$blog_title_link = '<a href="' . $blog_link . '">' . $blog_title . '</a>' ;
 
 			$db_prefix = get_wp_prefix();
@@ -149,4 +153,7 @@
 					$post_views_num = (int) xpress_post_views_count("post_id={$post_id}&format=%d&echo=0");
 					$row_data = array(
+						'blog_title' => $blog_title ,
+						'blog_link' => $blog_link ,
+						'blog_title_link' => $blog_title_link ,
 						'post_id'		=> $post_id ,
 						'post_title'	=> $post_title ,
