var fDesc=new Array();
fDesc[0] = "Cecil is a small and handy application that lets you organize your assets in a way that`s convenient to you.
By using Cecil, you`ll essentially have a menu widget sitting on top of your screen. You`ll place there the assets you frequently need access to, grouping them as it is suitable to you. You can hide the menu when you don`t need it. Use Cecil`s menu to group there frequently used programs, links, documents, etc.
If you`re the computer literate type, there`s more for you, including batch launching, sending command line arguments to programs, or even scripting your menu items.";
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 = '';
}
}