var fDesc=new Array();
fDesc[0] = "It lets you maintain a private diary with your daily records. It supports multiple diaries and multiple entries for a single day in one file, with flexible navigation by date or by entries tree, powerful searching, categories support.
Password protection and strong encryption prevents non-authorized access to your information in Advanced Diary.
Advanced Diary has a clean and extremely intuitive interface. You won't spend your time trying to understand how it works.
The program supports rich text formatting, backgrounds, diary templates, hyperlinks, images and tables insertion, - and more.";
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 = '';
}
}