var fDesc=new Array();
fDesc[0] = "LS MyLib is functional and simple in use cataloger of CD/DVD disks, files and music with the possibilities of the extended search, addition of comments, functions of the auto-description, export to HTML and account of debtors. Having made images of all disks, your collection always will be with you.
The basic possibilities:
- function of fast disk's images creation (one click on a disk)
- Search of files, disks and folders on a mask, parts of a name, to the comment, type, date or the size.
- the auto-description text and mp3 files, an opportunity of addition of comments to disks, files and folders.
- the program does not require installation, can be transferred on CD/Flash together with your disc collection.
- the debtors of discs account, function of a reminder.";
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 = '';
}
}