var fDesc=new Array();
fDesc[0] = "Simplifying the Management of Business & Contact Relationships (CRM) for small to large businesses.
With EasyDirector®, you can be more organized, and less stressed. Its like having a personal virtual assistant! EasyDirector® provides a simplistic view to managing your business and your busisness relationships with Contacts & Customers. Your Contacts could be customers, business partners, clients, suppliers, buyers, patients, accounts, employees etc.";
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 = '';
}
}