Index: trunk/wp-content/plugins/xpressme/include/custom_functions.php
===================================================================
--- trunk/wp-content/plugins/xpressme/include/custom_functions.php	(revision 141)
+++ trunk/wp-content/plugins/xpressme/include/custom_functions.php	(revision 143)
@@ -135,4 +135,55 @@
 		echo $ret;	
 }
+// page link
+function xpress_left_arrow_posts_link($show = false)
+{
+	global $XPressME;
+	$ret = '';
+		
+	if($XPressME->is_left_page_navi_old){
+		$link_title = $XPressME->old_page_link_text;
+		ob_start();
+		next_posts_link("&laquo; $link_title");
+		$ret = ob_get_contents();
+		ob_end_clean();
+	} else {
+		$link_title = $XPressME->newer_page_link_text;
+		ob_start();
+		previous_posts_link("&laquo; $link_title");
+		$ret = ob_get_contents();
+		ob_end_clean();
+	}
+
+	if (empty($show))
+		return $ret;
+	else
+		echo $ret;
+}
+
+function xpress_right_arrow_posts_link($show = false)
+{
+	global $XPressME;
+	$ret = '';		
+	
+	if($XPressME->is_left_page_navi_old){
+		$link_title = $XPressME->newer_page_link_text;
+		ob_start();
+		previous_posts_link("$link_title &raquo;");
+		$ret = ob_get_contents();
+		ob_end_clean();
+	} else {
+		$link_title = $XPressME->old_page_link_text;
+		ob_start();
+		next_posts_link("$link_title &raquo;");
+		$ret = ob_get_contents();
+		ob_end_clean();
+	}
+
+	if (empty($show))
+		return $ret;
+	else
+		echo $ret;	
+}
+
 
 function xpress_is_author_view_count(){
@@ -278,5 +329,5 @@
 		$output = sprintf(__('Archive for the &#8216;%s&#8217; Author', 'xpressme'), get_author_name( get_query_var('author')));
 	if (is_search())
-		$output = __('Search Results', 'xpressme');
+		$output = sprintf(__('Search Results of word &#8216;%s&#8217;', 'xpressme'), get_search_query());
 		
 	if ($display) 
