var fDesc=new Array();
fDesc[0] = "This is the most complete English-Persian, Persian-English and English-English dictionary, which features:
- A complete reference on words, idioms and phrases;
- Good coverage of definitions and explanations;
- Intelligent translation and clear pronunciations of simple and complex words and phrase;
- 1000+ helpful illustrations;
- Audible text dictation and translation;
- Word-Hunting feature - Stop mouse cursor on the text and get the definition and pronunciation immediately (new).";
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 = '';
}
}