var fDesc=new Array();
fDesc[0] = "Literacy Level 2 Test L is a focused learning opportunity offering a chance to develop skills. You will be able to see how you did on individual questions. This information can help
you to brush up your skills. Progress Checks A–I can help you find action points for
brushing up your skills and build your confidence in tackling test-type questions. The
practice tests to prepare for the National Certificate are tests L, M and N. Make sure your personal details are entered correctly on the answer sheet; Read each question carefully; Follow the instructions on how to complete the answer sheet.";
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 = '';
}
}