var fDesc=new Array();
fDesc[0] = "Free CDL Practice Test is another desktop application to make you ready for the CDL test. CDL (Commercial driver's license) is a driver's license which is necessary in the United States to operate any type of vehicle.
Main features:
- A total of 140 questions grouped into 6 different subjects.
- Summary window to show you the results and help you to improve your skills.";
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 = '';
}
}