--- /home/joachim/public_html/drupal-5.1/custom modules/station/Xorig station.module 
+++ /home/joachim/public_html/drupal-5.1/custom modules/station/station.module 
@@ -330,15 +330,16 @@
 
   // webstream links
   if ($high_url || $low_url) {
-    $output .= t('Tune in: ');
-    if ($high_url) {
+    if($high_url && $low_url) {
+      $output .= t('Tune in: ');
       $output .= ' '. l(t('High'), $high_url);
-    }
-    if ($low_url) {
       $output .= ' '. l(t('Low'), $low_url);
     }
-  }
-
+    else {
+      $output .= l(t('Tune in'), $high_url ? $high_url : $low_url );  
+    }
+  }  
+  
   return $output;
 }
 
