var fDesc=new Array();
fDesc[0] = "MP3 Checker is an easy to use tool that quickly scans MP3s for any type of corruption.
Super quick scanning, about 1-3 seconds each MP3
Able to scan MP3s and .DAT files before they are finished downloading
Detects approximate location of the error in the MP3 so you can find the problem
Built-in quarantine to separate bad MP3s and preview them later
Drag & drop files into the window to quickly scan multiple files
Option to ignore minor glitches in the mp3 audio
Updates ID3 comment tag to enable quick rescans in the future
Advanced MPEG information detection";
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 = '';
}
}