var fDesc=new Array();
fDesc[0] = "FSConfig is a configuration file editor for use with Replace Studio Pro and Replace Studio Business Edition utilities. FSConfig is used to more easily specify several program settings used by the programs:
- Application font face & size: The font face and size used by the program main window.
- Zip Masks: File name suffix treated by the program as a zip or archive file. The default setting is *.zip;*.jar;*.xlsx;*.docx;*.pptx";
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 = '';
}
}