var fDesc=new Array();
fDesc[0] = "It is an application which allows you to store and access your critical client files faster, easier and more securely.
Main Features:
- Lower operating costs by reducing the need for printing, filing, re-filing and storing physical files.
- Store any type of client information: including tax returns, letters and hand-written notes.
- Improve service. View, edit, fax, or email information instantly from your PC.
- Manage documents from most any source including Microsoft® Office applications.";
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 = '';
}
}