var fDesc=new Array();
fDesc[0] = "A Practical Application exam simulator consists of 250 questions with Flash cards. The tests are offered in two modes. A. Online version, and b. Downloadable version.
In the online version, a user need to take the tests online after logging in to the website (Internet connectivity is required). In the download version, a user may download the examsim, and take the test on his/her desktop computer.";
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 = '';
}
}