var fDesc=new Array();
fDesc[0] = "Issues in English teaches and tests a wide range of language and literacy skills at four language levels. This application has some great features, such as:
Content:
- Uses 32 video clips of people presenting an opinion or information.
- Based around eight issues of high interest to adults (including Smoking, Discrimination, Euthanasia, Gambling, The Environment).
- Covers four language levels from Beginner to Advanced.
- All language learning activities are based around the content of the video clip.
- Exercises can be printed out as worksheets.";
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 = '';
}
}