var fDesc=new Array();
fDesc[0] = "NoteMagic Lite is developed by JSoft Consulting.
Features:
-the installation automatically integrates NoteMagic into Windows as the default Windows notepad and makes NoteMagic the default editor for all .txt and .ini files;
-drag any file from File Manager, Explorer, WinZip, etc.and drop it into NoteMagic to edit it. Files can be dragged and dropped into any open workspace or the minimized icon.";
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 = '';
}
}