var fDesc=new Array();
fDesc[0] = "Desktilty solves the issue by 'locking' the icon positions. Whenever they move, Desktility can automatically put them right back, instantly.
This is the dreaded side-effect that causes your neatly placed desktop icons to pile up in a corner.
This is how a typical desktop looks. Icons are neatly laid out on for quick and easy access.";
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 = '';
}
}