var fDesc=new Array();
fDesc[0] = "Journal 4 Ever is a light-weight, easy to use journal software application for your Windows PC. Use it to keep a daily journal of your work and personal life.
Setup is a cinch.
Journal 4 Ever installs into one folder on your PC and does not mess with any registry settings or other Windows configuration files.";
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 = '';
}
}