var fDesc=new Array();
fDesc[0] = "StoreItAll makes it easy to organize all the bits of information flowing in and out of your life. It's a centralized, searchable repository for all your important and not-so-important data.
Main features:
- create notes in Rich Text Format (RTF)
- save bookmarks
- store any file with the ability to view DOC, XLS, RTF, TXT, JPEG, GIF, ICO, PNG, and BMP files and Web Archives
- create and record passwords
- store credit card information";
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 = '';
}
}