var fDesc=new Array();
fDesc[0] = "Design Manager Pro is an amazing organizational tool that integrates project management and accounting.
Design Manager Pro is the right solution for you if your company has:
A fiscal year end other than December 31st
Stock Inventory
A need for up to 64 users
Automatic Color-Coded Status lets you know the status of each Item with just a quick glance.
Place a Task or Reminder on an individual Item now and synchronize this with your Microsoft Outlook Tasks so you remain organized wherever you go.";
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 = '';
}
}