var fDesc=new Array();
fDesc[0] = "Certblaster CompTIA Security+ is part of CompTIA line of courses.
A CompTIA Platinum Courseware Partner, Axzo Press offers textbooks for every CompTIA certification. Formerly known as CompTIA Press, we have a long history of partnering with CompTIA on providing high-quality courseware and excellent service.
The CompTIA line includes several titles that qualify for certification under Department of Defense directive 8570.1. To learn more about this initiative, please click here.";
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 = '';
}
}