var fDesc=new Array();
fDesc[0] = "Use this program as a "random" alarm clock to remind you to do reality checks.
This program may help train you to be more aware of lucid dreaming.
You can think of this as a random alarm clock. When you click on the Hide and Start Timer menu item, the image will disappear and then show up unexpectedly some time later. This is a reminder to do your reality check. Use it to surprise youself with a picture of your significant other, your cat or dog, or whatever";
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 = '';
}
}