var fDesc=new Array(); fDesc[0] = "The Song Length Finder is a quick and easy tool that lets you search your music collection for songs of a certain length.

Maybe you have a music compilation CD that you have to fill the last 5 minutes of. Maybe there's a movie scene that is exactly 2:17 long. Maybe you're a DJ who has to play a set that's 60 minutes long to the second and you have to calculate your set list carefully beforehand. Whatever the reason, searching through a massive collection of music is anything but fun, but the Song Length Finder makes it easy."; 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 = ''; } }