var fDesc=new Array(); fDesc[0] = "GeneDoc installs as a regular windows program, into a GeneDoc program group. After starting GeneDoc, use file open and read in a MSF (Multiple Sequence File) file. GeneDoc saves configuration information for these files in the comment section of the MSF, so if the file was saved by GeneDoc, then it will be reopened with the same settings it was last saved with."; 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 = ''; } }