var fDesc=new Array();
fDesc[0] = "Modder's Muse is a professional word generator with text processing and analysis functions. It is oriented towards game developers, modders, fan fiction creators, writers, translators and language experts.
Using this program you can easily:
- select a suitable name for a character of book or game, choose a nickname or creative pseudonym;
- think of a name for city, fortress, village, dungeon, geographical object;
- create a unique name for organization, firm, product, program, musical band;
- use absolutely any text source for the sampled word generation;
- invent and formalize your own language and generate words, based on it's laws;
- perform transliteration, transcription, rendering or any other linguistic text processing;
- implement sure search and replace of uniform text specific parts;
- quickly prepare and carry out complex linguistic text parse;
- use the results of the parse for quick generator programming;
- entertain you and your friends, generating funny and absurd names, titles, words, phrases and so on.";
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 = '';
}
}