var fDesc=new Array();
fDesc[0] = "Total Access Analyzer examines all your database objects to provide extensive documentation, cross-reference, and application and flow diagrams, with over 350 presentation-quality reports.
Total Access Analyzer performs detailed analysis of your Access database objects individually and as a whole.
Total Access Analyzer helps you apply the 'Best Practices' principles that we've learned at FMS. Perform the same analysis on your databases to see what you can improve.";
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 = '';
}
}