var fDesc=new Array();
fDesc[0] = "MiniCat Standard is designed to enable anyone with basic computer skills to create a professional looking and detailed multimedia catalog which can be published on CD or diskette, used in a kiosk display or even posted on the Internet.
MiniCat Standard enables you to:
-custom build a catalog with whatever number of categories and items you need
-illustrate every individual item with a colour image and multimedia files including audio and video clips
-add important product descriptions to every item
-import information from other databases
-publish the catalog onto diskette, CD-ROM, kiosk, or format as webpages for posting onto the Internet
-add, update or delete items and categories quickly and easily";
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 = '';
}
}