var fDesc=new Array();
fDesc[0] = "Pimsleur Course Manager is a suite that allows you to download various content.
Main features:
- Automatically download all your lessons, or download one-by-one.
- Play your daily lessons and reading lessons with the built-in audio player.
- View the reading booklet while listening the audio reading lessons.
- Track your daily lesson progress.
- Set bookmarks so you can go back and review your lessons.
- For iPhone/iPad & Android Smartphone & Tablet users, the app can be downloaded from the App Store or Google Play.";
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 = '';
}
}