var fDesc=new Array();
fDesc[0] = "The Business Doc Software is a very powerful software application to simplify and automate the entire process of maintaining your corporate records such as corporate resolutions, meeting minutes, stock certificates, and stock transactions.
Features:
-Tracks 1-4 corporations or LLC`s.
-Installs on 1 computer.
-100 business resolutions and documents
-Save and print all your business forms
-Record and store all your meeting minutes
-Track and store personnel information
-Keep a detailed history of stock transactions
-Sample stock certificates";
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 = '';
}
}