var fDesc=new Array(); fDesc[0] = "Keeps Basic Dog Information, Parents Information, Additional Information, Breeding Records, Medical Records, and Extra Notes. Can add, edit, and/or delete breeding and medical record rows when needed. Ability to customize the extra notes styles for each dog record individually. Ability to customize the breeding and medical listview row colors. Useful when not using gridlines. Ability to customize the looks (in advance of exporting) of the exported data to a certain extent with style files. Create combo box data files that allow you to quickly select certain information."; 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 = ''; } }