
function station_play_383344(url, ep_id, restrict_to, feed_id) {
   loadurl = 'http://dailysplice.com/383344-station/play';

   if(typeof(url) != "undefined") {

     loadurl += '?url=' + url;

   } else if(typeof(ep_id) != "undefined") {

     loadurl += '/episode-' + ep_id;

   } else if(typeof(feed_id) != "undefined") {

     loadurl += '/podcast-' + feed_id;     

   } else if(typeof(restrict_to) != "undefined") {

     loadurl += '/only-' + restrict_to;

   } else {


   }

   var pWindow = window.open(loadurl, 'SpliceStation_383344', 'width=728,height=360,resizable=0,scrollbars=0,status=0,location=0,menubar=0,toolbar=0,directories=0,top=300,left=300');
   if(pWindow == null) {
   } else {
      pWindow.focus();
   }
   return pWindow;
}
function station_play(url, ep_id, restrict_to, feed_id) {
  station_play_383344(url, ep_id, restrict_to, feed_id);
}

