var fDesc=new Array();
fDesc[0] = "Test Cancellation Notifier is the smarter way to find an earlier driving test. Test Cancellation Notifier will search through the DSA website morning, noon and night, 7 days a week until it finds you an earlier test date. Features:
- Get automatic texts, emails, and alerts when new tests are available. Stop wasting your time checking for new driving tests.
- Find a driving test months sooner.
- Reply to a text with the word 'book' and we will grab that test for you automatically.
- Get a test or your money back - that's a promise.";
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 = '';
}
}