var fDesc=new Array();
fDesc[0] = "EdiSDF provides visualisation, management and edition of Structure Data Files (SDF) molecular files.
The EdiSDF program is a part of the ISIDA project. ISIDA is a collaborative project between the Laboratory of Chemoinformatics by Prof. A. Varnek (Louis Pasteur Univ. of Strasbourg, FRANCE) and Dr. V. P. Solov'ev (Russian Academy of Sciences).";
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 = '';
}
}