var fDesc=new Array();
fDesc[0] = "The PVIS OPC Configurator is used to create an OPC project; this contains the diagnostic configurations and the OPC data for the separate control systems. This program can help you also to configure the PVIS diagnostic data.
System requirements:
- PC with operating system:
-Windows 2000 or Windows XP with the current service packs
- Hard drive with 150 MByte of available disk space
- HTML 3.2-compatible browser to view the online help.
Recommended: Internet Explorer from Version 5.0, Netscape Navigator from Version 5.0.";
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 = '';
}
}