var fDesc=new Array();
fDesc[0] = "Chronice is basically an alarm clock for your desktop. What's special about it, is the fact that its skins are fully customizable.
It features a choice of 3 shapes (circular, square & rounded), a control of every pixel of your clock skin with unlimited color choices, texture choices, includes 24 pre-defined skins, you can optionally 'save last position', you can park the clock at side or bottom of screen, 12 or 24-hour settings, and much more.
It has an advanced alarm scheduler, you can set up once-only or regular alarms (daily, weekly or monthly), a choice of notification sound, alarm messages, pictures, sounds, run files or documents at the alarm.";
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 = '';
}
}