var fDesc=new Array();
fDesc[0] = "Passing the Cisco Certified Network Associate Voice 640-460 certification exam is difficult enough if you are fully prepared by attending a Cisco CCNA Voice class with an instructor and you have access to all the proper books and equipment.
CCNA Voice 640-460 Lab Workbook was designed to be generic so you don't need to have the exact models in the topology.";
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 = '';
}
}