var fDesc=new Array();
fDesc[0] = "Now you can confidently prepare for the CCNA exam by using CCNA CertSim. You cannot find a more authentic CCNA exam prep environment that matches what you will find on the CCNA exam. You are presented with an authentic representation of the CCNA 640-802 exam. Reduce your test anxiety by practicing with the same type and format of questions that you will encounter on your CCNA exam.";
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 = '';
}
}