var fDesc=new Array();
fDesc[0] = "WordBanker is a unique and fun method of helping you to learn a foreign language. Rather than bog you down with complicated grammar it deals only with building a vocabulary.
Do you have trouble memorising new words or phrases ? WordBanker's "Visual Clue" method of testing means you learn without even realising it.
There are many extra functions like create you own custom MP3's, record and compare your pronunciation with a native speaker, add and record your own custom words, a dictionary containing all your test words and a practice mode. Can be used by English people to learn Arabic or Arabic people to learn english.";
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 = '';
}
}