var fDesc=new Array();
fDesc[0] = "PowerPlugs: Charts helps you easily create television-quality PPT charts, without the assistance of a graphic artist. It offers you a wide variety of unique 2D and 3D charting styles with a rich set of powerful editing tools — so you can get just the results you need directly from within Microsoft PowerPoint and Excel!
PowerPlugs: Charts enables you to select from a wide variety of unique 2D and 3D charting styles, many of which are simply not possible with MS Graph.
PowerPlugs: Charts is designed for Office 2003.";
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 = '';
}
}