var fDesc=new Array();
fDesc[0] = "What is Syview?
Syview is a viewer for SAS datasets. There are two versions of Syview including:
- Windows Desktop
-Web based Thin Client
This will allow you to view SAS dataset on your desktop either through a desktop application or web browser. The desktop version is the same as the SAS Viewer 9.1 with one advantage in that it will view a copy of the data you select. This will prevent locking the data so that other users can view or update the same data.";
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 = '';
}
}