var fDesc=new Array(); fDesc[0] = "BioEdit is a biological sequence alignment editor. It allows you to view and manipulate sequences with simple point-and-click operations. This program comes with a plasmid drawing interface for automated creation of plasmid vector graphic from a DNA sequence. You can easily mark positions, add features with arrows and curved boxes, and mark restriction enzyme cut sites. Also show detail of polylinker and draw moveable arrows and shapes with drawing tools."; 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 = ''; } }