var fDesc=new Array();
fDesc[0] = "Minute Timer is a utility to help people time events and have lost their egg timer!
Set up an event of any number of minutes and seconds (default is 1 minute).
The ticking, 10-second warning and final buzzer sounds are all configurable.
A simple application, but surprisingly useful for timing 20-30 minute presentations and talks, for games, cooking or exercising.
No need to watch the hourglass or wait for the sand to return to the bottom.";
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 = '';
}
}