var fDesc=new Array();
fDesc[0] = "DomBuddy.com Desktop Client is a desktop generator software that combines all major features of the online domain name generator in a fast and easy-to-use desktop application:
- a random domain generator that combines syllables randomly to create a natural sounding name in multiple languages
- a generator that combines keywords from lists of popular keywords and word sets to generate domain names that actually make sense
- a tool that combines user-provided keywords or uses search engine results to find matching keywords to generate domain names
- a dictionary tool that combines randomly selected dictionary words with user-provided prefixes and suffixes
- a bulk domain name check tool that checks up to 50 domain names for availability in one run
- a domain name availability checker that checks all available top level domains for a given name";
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 = '';
}
}