var fDesc=new Array();
fDesc[0] = "Formula Builder for Microsoft Word - Basic Edition
Enter Formulas Directly in Microsoft Word!
Formula Builder is an Add-in for Microsoft Word that provides a simple, uncomplicated way to enter formulas directly in any new or existing Word document. Formula Builder was designed by a CPA who understands the time-saving benefits that can be achieved by entering formulas directly in Word documents. Compatible with Word versions 2010, 2007, and 2003.";
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 = '';
}
}