var fDesc=new Array();
fDesc[0] = "Random Word Generator is a time-saving creativity aid that creates lists of random, artificial words. Its sophisticated system of word construction generates a high percentage of useful words. Words can be subject to certain restrictions, such as ending in a vowel or making the third letter 'a'. A spell checking dictionary can automatically ensure that words are artificial or real. Other features include a customizable word construction engine, output to screen or file, generation of random variations of a word, generation of all possible words from a given format, generation of random words from the dictionary, anagram finder, and much more.";
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 = '';
}
}