var fDesc=new Array();
fDesc[0] = "Media Base is a cd-disk catalog program for Windows 95/98/NT/ME/2000/XP. With Media Base you can simply catologize all your media disks, search files in archives, extract short notes from text files and extract extra-information from each file.
Media Base cataloguer features:
- Supports database size up to 2GB with 65,536 disks.
- Supports categories for disks.
- Uses standart panel organization, like Explorer.
- Nice user interface.
- True-Coloured icons in menu and toolbar.";
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 = '';
}
}