function listenNow(url,back) {

   if (back == 1) {        
      var str='<a onClick="listenNow(\''+url+'\'); return false;" href="'+url+'">Listen Now</a>';
   } else {
      var str;
      var type;
      var iswindows=0;
      if (navigator.appVersion.indexOf("Win") != -1) { iswindows=1; }
      if (iswindows) {
          str='<embed type="application/x-mplayer2" src="'+url+'" autostart="true" controller="true" width="140" heidht="20">';
          type='application/x-mplayer2';
      } else {
         str='<embed type="audio/mpeg" src="'+url+'" autostart="true" controller="true" width="140" heidht="20">';
          type='audio/mpeg';
      }

      //str = '<object id="player" width="140" height="20" type="'+type+'"><param name="autoplay" value="true"><param name="controller" value="true"><param name="src" value="'+url+'">'+str+'</object>';
     //alert(str);

   }
   document.getElementById("listennow_inner").innerHTML=str;
   return false;
}
