var fDesc=new Array();
fDesc[0] = "It is a browser add-on that allows you to search synonyms.
Main Features:
- Define: Expand your knowledge with comprehensive definitions from Dictionary.com®.
- Word of the day: Show off your vast vocabulary as you learn new words every day.
- Spell check: Eliminate any and all spelling errors from your writing.";
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 = '';
}
}