var fDesc=new Array();
fDesc[0] = "It is software which allows you to practice exam testing.
Features:
- Real testing environment.
- Multiple Choice, Single Choice, Build List and Re-Order.
- Interactive questions: Drag & Drop, Hot Screen Areas, Flash Cards
- Learning Mode, Certification Mode
- Score report and History practice exam track
- Printing and review options
There are 3 options available:
- Learning Mode: It allows you to configure your exam to suit your individual study needs. You can select items for your exams, set learning preferences and control how answers are accessed.
- Certification Mode: It provides a practice exam that is timed and functions to approximate the real exam environment.
- Exam History Report: it provides your exam history record for your score, tracking exams and other info.";
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 = '';
}
}