var fDesc=new Array();
fDesc[0] = "BackUp as MP3 Ripper/Retriever/Recorder is our solution for a complete Backup of your Audio-CDs.
Just like a car bumper protects your car this application will prevent damage from your Audio-CD collection.
BUMP3R will store the complete content of an Audio-CD into one large MP-R file. This file will not only contain the music but also the information about the track locations and, if you wish, images like the booklet or the CD-Label.";
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 = '';
}
}