var fDesc=new Array();
fDesc[0] = "WordMailMerge is a Microsoft CRM Add-On that enables you to create Word-Documents with data from MS CRM. With this Add-On you can start to merge contact, account, details into a template directly from the web client and write letter activities back in the MS CRM.
Now you can add additional fields to the mail merge fields when creating a mail merge. Create mail merges using opportunities and insert related informations from accounts. WordMailMerge gives you the ability to create mail merges and subsequently save them to a CRM Object as an outgoing letter activity- with the content of the Word document as description and the document is attached as a note.";
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 = '';
}
}