var fDesc=new Array();
fDesc[0] = "Scholar's Aid Academic Edition is a program package which has a bibliographical data manager called Library, an importing/exporting manager called DataRetriever, and a notes/information manager called Notes.
The Library part manages bibliographical data, and is packed with a wide range of easy and powerful functions.
The DataRetriever transforms external data such as z39.50 data to SA data and vise versa.
The Notes manages notes and other information in a hierarchical structure, and enables retrieveing the information in various ways.";
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 = '';
}
}