var fDesc=new Array();
fDesc[0] = "L-Lingo Burmese Professional course has 105 lessons, with the most essential Burmese words and phrases that will surely jumpstart your success in the language.
The learner can adjust the program to fit to their individual language learning style.
The program teaches the Burmese language by combining words on screen with realistic images and audio clips of native speakers.";
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 = '';
}
}