var fDesc=new Array();
fDesc[0] = "GMATPrep software uses the same technology as the official GMAT exam so that you can simulate the actual test-taking experience.
The GMATPrep software features:
-90 free questions – 30 Quantitative, 45 Verbal and 15 Integrated Reasoning - with answers and explanations
-Tools to create your own practice question set
-2 full-length computer adaptive practice tests with answers (detailed explanations of answers are not included)
-Accurate computing of GMAT® Total, Verbal, Quantitative and Integrated Reasoning scores, which you can use to judge how prepared you are for the actual GMAT exam
-A comprehensive math review
-A step-by-step guide to preparing for the GMAT® exam
-Ability to extend the GMATPrep® software by purchasing additional content (requires new version of GMATPrep)";
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 = '';
}
}