var fDesc=new Array();
fDesc[0] = "The Woodward SOS Servlink OPC server ("SOS") provides an OPC interface for Woodward controls. It runs on a Windows PC that accesses data on controls using the Woodward proprietary Servlink protocol through either a serial or Ethernet connection.
Woodward OPC client applications, such as Monitor GAP, Watch Window II and Control Assistant connect to SOS by selecting a 'Servlink OPC server' connection.
SOS implements the OPC Data Access 2.0 standard, so other OPC client applications may also function with it. Instructions for using SOS from a non-Woodward client are available in the SOS help.";
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 = '';
}
}