var fDesc=new Array();
fDesc[0] = "AcquireNotes is an application which allows you to create simple notes in a rich text environment. By using this tool you can record personal memories and blogging articles for a lifetime in a minimal and clear environment.
Main Features:
- Secure password protection.
- A convenient and clear UI not to distract your work.
- Text and image formatting.
- Recording local copies of online blogs and articles.
- Backup your data automatically.
- Printing or creating reports can be made simply.";
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 = '';
}
}