var fDesc=new Array();
fDesc[0] = "Learn to speak, read and write Bengali.
Suitable for Tourists, Holidaymakers and School Children to learn Bengali in a short time.
Contents:
- Introduction to Bengali Language
- Bengali Alphabets reading, writing, making words
- Making Bengali sentences
- Basic Conversations; Time, Days, Months, Greeting, Making Friends, Farewell, etc
- Advanced Conversations; Shopping, Doctors, Dentist, Booking Hotel, Bengali Proverbs, etc
- Talking Dictionary (English-Bangla, Bangla-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 = '';
}
}