var fDesc=new Array(); fDesc[0] = "I like to play music from CD's on my iPod. I don't care about having the digitized versions of the songs on my computer's hard drive, or having them listed in the iTunes library. I just want to get the music onto my iPod, without cluttering up my computer with a bunch of excess files.

But I find that the process of getting this result in iTunes is tedious and completely unintuitive (to me). First I have to select the CD, then hit Import, wait for the encoding to finish, select the Library, find and select the songs I just added (ugh), drag them to my iPod, wait for the transfer to finish, delete the songs from my library, and finally answer the question about deleting the underlying music files from my computer's drive. If I really want the files to be gone, I then have to empty my Recycle Bin.

To that end, this program transfers all the songs on an Audio CD directly to your iPod, without leaving the songs in your iTunes library or on your computer's drive. Internally, it has to go through most of the same steps we humans would (import the songs into the library, transfer them to the iPod, then delete them from the library and computer), but it does so with just one click and it does it unattended."; 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 = ''; } }