var fDesc=new Array();
fDesc[0] = "DKRuler is a sizable drag and drop horizontal, vertical and translucent ruler for your computer's desktop. DKRuler stays on top of all applications and file system windows.
You can display a picture of your choice on the standard ruler instead of the default graphic. Hide the standard ruler when DKRuler loads (still accessible in the system tray).";
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 = '';
}
}