var fDesc=new Array();
fDesc[0] = "Exam P/1 CBT Practice Tests includes 200 challenging questions.
Main Features:
- FREE Auto-Updates-keeps you working with the most up-to-date questions available;
- Challenging, Realistic Questions
- Extensive, Detailed Explanations
- Customizable Exam -Select a pre-configured practice exam or create your own custom exam that draws questions from the entire test question pool. Choose length of testing time, testing modes and answer options.
- Random Answer Choices- this option moves the answers around so that every time you run by question #1 the answer isn't always a). Keep each attempt at a question challenging. Combine this feature with a customized exam to keep each learning session fresh and educational!
- Detailed Score Report
- Download a FREE Demo-Check out the interface, question quality and usability of our practice exams";
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 = '';
}
}