var fDesc=new Array();
fDesc[0] = "Do your roster files suffer from duplicate IDs, badly formatted fields, or other maladies?
If so, the Edusoft Data Validator can help.
The Data Validator is a desktop application that helps you find problems in your roster files before you send them to Edusoft, reducing roster turn-around time and ensuring accurate data in the Edusoft system.
As an added benefit, the Data Validator can also help you maintain clean data within your SIS.";
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 = '';
}
}