var fDesc=new Array(); fDesc[0] = "Pupil administrator supports two methods of adding users; typing them in directly at the
keyboard or importing a list from a text file.
Pupil Administrator has two import methods, the first imports from a preformatted Comma Separated Value (CSV) file and the second method uses a flexible import wizard.
To import an unformatted CSV click on the Import User List Button."; 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 = ''; } }