var fDesc=new Array();
fDesc[0] = "A-Prompt has been around for several years now and is beginning to show its age. Rather than release a new version of A-Prompt we have created an entirely new accessibility checking program that improves upon it. Here are some of the features in our new checker:
- The new checker is web based and works with all computers. (A-Prompt runs under Windows only.)
- The new checker handles several new accessibility guidelines including the Italian Stanca act and the upcoming WCAG 2.
- The new checker performs many more accessibility tests than A-Prompt.";
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 = '';
}
}