diff --git includes/GoogleSiteSearch.inc includes/GoogleSiteSearch.inc
index a1dff7d..ef18cdc 100644
--- includes/GoogleSiteSearch.inc
+++ includes/GoogleSiteSearch.inc
@@ -310,13 +310,18 @@ class GoogleSiteSearch {
     $currentPage = $this->GetCurrentPage();
     $show_start = ($pageSize * $currentPage) - $pageSize + 1;
     $show_end = ($pageSize * $currentPage);
+
+    if($show_end > $totalResults) {
+      $show_end = $totalResults;
+    }
     
     $html = '<div class="searchhead">';
-    
-    $html .= t('Shows') . ' ' . $show_start . ' ' . t('to') . ' ' . $show_end . ' ' . t('of') . ' ';
-    $html .= t('approximately') . ' ' . $totalResults . ' ' . t('hits');
-    
-    
+
+    if($totalResults !== 0) {
+      $html .= t('Shows') . ' ' . $show_start . ' ' . t('to') . ' ' . $show_end . ' ' . t('of') . ' ';
+      $html .= t('approximately') . ' ' . $totalResults . ' ' . t('hits');
+    }
+
     $html .= '</div>';
     
     // return search head
@@ -324,4 +329,4 @@ class GoogleSiteSearch {
   }
   
   
-}
\ No newline at end of file
+}
