var fDesc=new Array();
fDesc[0] = "ReplaceMagic WordOnly is used by IT staff to fix broken links when server gets renamed, to change header/footer when for example contact details are changed, by translators and other people who need to do massive search/replace all over Word documents.
This version comes in Standard and Professional edition and difference is that Standard can scan only documents on your C drive and Professional can scan file anywhere on network where you have access from computer where ReplaceMagic software is installed.";
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 = '';
}
}