var fDesc=new Array();
fDesc[0] = "seTimer has the following features:
- 10 Project memory
- Ability to name the project
- Option to autodetect activity, after 15 minutes of inactivity it will stop the counter
- Option to Auto start with windows
- Topmost option
- Small, Elegant and unobtrusive
- Themeable (comes with 9 custom backgrounds, you can also make your own 148x38 images for backgrounds)
- Ability to be transparent";
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 = '';
}
}