var fDesc=new Array();
fDesc[0] = "CodeWorks is a compact but powerful programmers' code database that makes it easy to store, organize and find code samples, tips and routines. CodeWorks uses a simple tree layout for stored items and lets you assign a name and keywords to each item stored.
Editing a code item is as easy as editing a text file: just make the required changes and click Save. You can also copy code items into a different category or language sections by simply dragging items in the tree, copy code items to the clipboard with one click, or export them to file.";
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 = '';
}
}