var fDesc=new Array();
fDesc[0] = "DClock is a desktop clock that is small enough to fit over the titlebar of an open window and always stays on top. Perfect for people that keep their taskbar hidden (like me).
It has a number of customizing options and an assortment of time related tools.
This is a beta and features are subject to change. There may be bugs and this should not be run by those that do not feel comfortable using beta software.";
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 = '';
}
}