var fDesc=new Array();
fDesc[0] = "Business Functions is a free function library for Microsoft Excel designed to make business plans, budgets, structured financings and cashflows more powerful and manageable. We use BF because models become:
- more adaptable, because a single function call can invoke a large variety of behaviour.
- more accurate, because the function is written in a fast language that affords itself to more calculations.
- faster to build, because you build from a palette of standard algorithms.
- quicker to run, again because of the fast language the functions are written in.
- less error prone, because of the standard behaviour of the functions.
- more transparent, because the function explains the intent of what's being modelled better than a hieroglyphic formula.
- easier to understand, because the functions have understandable names and have detailed documentation on their behaviour.";
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 = '';
}
}