var fDesc=new Array();
fDesc[0] = "e-Granthalaya is a library automation software from National Informatics Centre, Department of Information Technology, Ministry of Communications and Information Technology, Government of India. The software has been designed by a team of experts from software as well as Library and Information Science discipline. Using this software the libraries can automate in-house activities as well as user services. The software can be implemented either in stand-alone or in client-server mode where database and WebOPAC are installed on the server PC while the data entry program is installed on client PCs. The software provides LAN/Web based data entry solutions for a cluster of libraries where a common database can be created with Union Catalog output. The software provides Web OAPC interface to publish the library catalog over Internet/Intranet. The software runs on Windows platform.";
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 = '';
}
}