var fDesc=new Array(); fDesc[0] = "The SAS Universal Viewer is a replacement for the SAS System Viewer and is an application for the Windows environment to view SAS data sets and other simple text-based files.
You cannot edit SAS data sets with the SAS Universal Viewer, but you can sort and filter data sets. The SAS Universal Viewer enables you to view the contents of SAS data sets without invoking SAS and without installing SAS on your machine."; 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 = ''; } }