var fDesc=new Array();
fDesc[0] = "Link Checker for Microsoft Word is a tool for managing and checking internal hyperlinks and cross-references in Word documents. You may use this add-in every time you need to ensure that the links in your document are valid.
You can choose to find all or only suspicious hyperlinks and cross-references and immediately see where a particular link is and where it leads.";
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 = '';
}
}