var fDesc=new Array();
fDesc[0] = "JGateToolBar is a tool that helps you access quickly the Jgate homepage.
J-Gate is a global e-journal gateway providing seamless access to millions of journal articles. This tool can help you to find what article you want to read quickly and easily.
It's a usefull application that provides you quick access.";
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 = '';
}
}