var fDesc=new Array();
fDesc[0] = "The PrepWizard software is the most professional GMAT test prep material.
The GMAT prep software includes the following:
1 full GMAT simulation, including full explanations and a statistical analysis.
Quantitative practice questions from our Question Bank.
One chapter from our quantitative study guide.
20 flash cards out of hundreds .
Special features.";
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 = '';
}
}