var fDesc=new Array();
fDesc[0] = "Experts agree that the SAT Verbal section is mostly a vocabulary test. It is as simple as that: if you know the words, with some common sense you will ace the test. To help you do your best on the test, we offer QB - SAT Verbal.
QB - SAT Verbal is an easy-to-use and fun program for Windows. Learning is accomplished through answering a number of automatically-generated questions.
Main features:
- A quiz of over 50 SAT prefixes
- More than 300 words similar to those that may appear in the SAT Verbal section
- Built-in algorithm that automatically adjusts to your way of learning making it more time-efficient and fun
- Intuitive and attractive interface with skins and funny sounds";
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 = '';
}
}