var fDesc=new Array();
fDesc[0] = "Music Categorizer its a great tool for:
-Finding out where the MP3 is located on your computer
-Instantly adding your favorite MP3'S to a playlist of your choice to be played by any player capable of reading .m3u type playlists. (WinAmp)
-Instantly deleting MP3'S you cannot stand from your computer
-Renaming or moving MP3'S instantly that you like and wished you could find later on by its filename.
-Create a new folder, and instantly move all MP3's to it.
-Copy MP3'S to another drive for easier access, or to be burned to CD and/or copied to your PDA instantly
-Easily switch from one MP3 to another";
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 = '';
}
}