var fDesc=new Array();
fDesc[0] = "The Free Timer program allows you to create countdown timers that display the remaining time as a colored section of a clock face.
You can set the time in seconds, minutes, and hours. The colored section of the clock face will display the time corresponding to the interval you set:
If the interval is one minute or less, the timer counts in seconds
(a full circle is 60 seconds).
If the interval is one hour or less, the timer counts in minutes
(a full circle is 60 minutes).
If the interval is 12 hours or less, the timer counts in hours
(a full circle is 12 hours).
If the interval is more than 12 hours, the specified color will completely cover the dial. As for the countdown, the colored section will steadily decrease in size according to the remaining time.
No matter what interval you specify, the countdown timer will move the second hand, which will move counterclockwise.";
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 = '';
}
}