var fDesc=new Array(); fDesc[0] = "Vocabulon allows you to reconstruct conserved words that appear in DNA sequence with a certain frequency. The algorithm is based on a dictionary model description of DNA sequence and can be use both as a tool for de novo discovery of motifs, as well as for the localization of known motifs in DNA sequence. Generally speaking, dictionary models are useful when one is interested in localizing and reconstructing a large number of motifs."; 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 = ''; } }