var fDesc=new Array();
fDesc[0] = "Keep safe all your personal and work notes into one place effectively with this notes organizer software manager.
Effective aspects comes with many tools to give you a full desktop solution to all your notes and events.
- Our intuitive interface means functions are exactly where you need them. It is completely customizable, including the color. Customize it and make it yours!
- Enjoy being in more control with simpler and speedier access to your information with useful searching tools, for example, calendar and tags.
- To make life even easier you can set sticky notes or alarms against any of your notes. The can also be exported or printed.";
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 = '';
}
}