var fDesc=new Array();
fDesc[0] = "Global CD Explorer was originally designed to catalogue CD-ROM disks created on the Canon CD-4046 and to provide a database for search and retrieve functions. Since then, Global CD Explorer has evolved into a powerful tool providing the user with capabilities and features found only in customized, high cost Document Management and Imaging Systems.
Main features:
- Unlimited Multi-Disk Search Capabilities
- Post Indexing
- Database Export
- Foreign Document Support
- High Performance Database Engine
- Multi-user Compatibility for small Networks
- Multimedia Juke Box Support
- Distribution Wizard
- Security
- Support for the CD-4050, CD-4060 and CD4070 .";
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 = '';
}
}