var fDesc=new Array();
fDesc[0] = "The Dictionary Wizard is a standalone application that enables creating and modifying spelling dictionaries for applications that use our Addict spelling checker.
With the new Dictionary Wizard you get:
A simple, streamlined user interface that anyone can use to work with dictionaries
The ability to create a new dictionary from scratch
Create a supplemental dictionary for your business or job specialty.
Make a specialized exclusion dictionary for your business; always have specified words flagged as misspelled regardless of their inclusion in other dictionaries.";
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 = '';
}
}