var fDesc=new Array();
fDesc[0] = "PowerMerge allows you to merge Microsoft PowerPoint presentations with Microsoft Excel data in seconds.
With PowerMerge, you can customize a presentation for each recipient in seconds not hours by replacing the text and images that need to be changed without worrying about messing up your presentation and focusing solely on the task at hand.
PowerMerge let's you skip the wasted steps of navigating slide-by-slide through several nearly identical presentations only to get at the bits that change. What's more, you'll never have another slide in the middle of your presentation you forgot to customize.";
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 = '';
}
}