var fDesc=new Array();
fDesc[0] = "beltSuccess includes five levels from early Beginners to Upper-Intermediate. Comprises 30 lessons in each level. It is specifically designed for teenagers and adults learning English as a foreign or second language and can be used in educational institutions and training centre worldwide.
Main features:
- Integrated skills Reading / Listening / Writing / Speaking / Grammar
- Online photo dictionary
- Student’s Workbook that is integrated into the program
- Accent Trainer with voice recording and comparison
- Interactive role-play
- Language Review following the Common European Framework guidelines
- Speaking activities
- Extra entertaining activities";
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 = '';
}
}