var fDesc=new Array();
fDesc[0] = "Konvertor is a desktop file manager, a robust and powerful - yet easy to use - tool that tames today's large and complex Windows' file systems. It natively supports all major videos, audios, texts, 3D, compressed formats and all the digital camera RAW formats, handles EXIF, IPTC, XMP and ICC informations and is able to manage even very large collections with hundreds of thousands of images.
Konvertor lets you open, view and edit a variety of different Windows, Unix, Atari, Apple, ZX, XBox, Nintendo, Next... multimedia and text file types ranging from the common, such as FLV, PICT, MP3, DXF, JPEG, WEBP, to the less familiar types, such as SCR (Screensavers), MOD (Module formats) and much more. The current version is able to play, display and convert between 2860 different formats.";
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 = '';
}
}