var fDesc=new Array();
fDesc[0] = "Personal Knowbase Is a Unique Free-form Note Organizer Using Keywords.
It's the perfect software for organizing research notes, email archives, tickler files, and more. Index your notes, messages, and ideas using keywords for fast access.
* Clean, intuitive interface
* No limits on number or size of notes
* No unmanageable data trees
* Index on keywords that you choose
* Password protect your private information
* Carry it with you on a USB drive";
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 = '';
}
}