var fDesc=new Array();
fDesc[0] = "Business Planner is the fastest and easiest way to write a winning business plan - guaranteed! In fact, over 200,000 successful entrepreneurs have trusted their ideas to Ultimate Business Planner.
Stop wasting time and start achieving your goals today with Business Planner. Business Planner® guides you through each business-planning step quickly and easily. Developed for entrepreneurs by small-business experts and small-business owners.
Ultimate Business Planner simplifies the process of writing a business plan and gives you expert advice, tips, and hints based on proven business practices.
You don't need any special business expertise to use Ultimate Business Planner. Its easy-to-use, step-by-step approach breaks down the process of writing a business plan into two main sections - forecasting your financials and writing your plan.";
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 = '';
}
}