var fDesc=new Array();
fDesc[0] = "Using TBF CRM can become habit forming. By recording the interactions with your prospects and customers you automatically build a To Do List for the future together with Contact History for analysis.
You know how to use Microsoft Office so TBF CRM integrates with it.
You know what you want to achieve, so TBF CRM lets you plan the manageable steps to success and enables you to keep focused on your dreams.
Customers consume your time and in doing so they let you examine how to spend your time most profitably.";
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 = '';
}
}