var fDesc=new Array(); fDesc[0] = "MolPOV is a graphics file converter that reads Brookhaven Protein Data Bank format files and produces a ready-to-render input file for the Persistence of Vision ray tracer (POV-Ray). The PDB files can be from the Brookhaven PDB itself or from any molecular modeling program that can store structures in the PDB format. A POV setup dialog can be used to edit many of the basic scene features and rendering options. In addition, the program allows launching of the POV program to view the rendering immediately."; 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 = ''; } }