var fDesc=new Array(); fDesc[0] = "The SAS/GRAPH ODS Graphics Editor is a complementary tool in the ODS graphics system. It is an interactive graphical application used to edit and annotate ODS graphics that are created by a wide variety of SAS procedures. You can save the results as an image for inclusion in a report or as an SGE file that you can edit in the future."; 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 = ''; } }