var fDesc=new Array(); fDesc[0] = "What this application does is basically allow you to find music playlists from your favorite artists. The application was built to work on Adobe Air's framework. And it is pretty straightforward. When you first start it, it will ask you if you are a new user. If you are, it will scan your iTunes playlist and offer playlists for you. One of the things that really surprised me about this application is that I was able to start listening to one of my favorite artists in within 5 seconds of opening the application for the very first time. The stream's quality was great (way better than radio), it buffered for only a second and I was able to finish a full song without any interruptions. All the artists that I had on my iTunes playlist had matching playlists here. FineTune Desktop also provides you with Top playlists and you can add music to your favorites. You can also sign up for an account, which will allow you to share your playlists and create your own. The application works on both Mac OS X and Windows."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }