var fDesc=new Array();
fDesc[0] = "OrgPlus blends at-a-glance insight and HR action to deliver organizational understanding and end-to-end change management. It's game changing: Just ask any of the 50,000 companies, including 400 of the Fortune 500, that rely on OrgPlus every day.
Create information-rich charts in seconds with no drawing required. Include detailed HR data from any source and link sub-charts for easy navigation of tens to hundreds of employees. Featuring a redesigned user interface, embedded best practices and many more time saving additions, OrgPlus 9 is the most powerful update yet to the award winning OrgPlus software.";
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 = '';
}
}