var fDesc=new Array();
fDesc[0] = "Shimaden Lite Software enables the user full function of the controllers from the PC and has a recording feature and alarm notification. With the wizard set-up feature the program automatically locates the controllers and configures the software ready for use, no programming is required.
Main Features:
- Shimaden Wizard to find controllers on the Serial Port.
- Simple navigation method to view controllers.
- Group View to view up to six controllers at once.
- CSV Report generation for viewing data in Excel
- Alert window for showing status of controller events.
- Toolbar for changing controller parameters
- " Controller Like " display and short time interval trend graph.
- Access control to prevent changes to controllers, program setups and closing program.
- Supports RS485 controllers: SR80, SR90, FP93, SD16, MR13, SR73A/74A, SR50, SD20.
- Supports RS422 controllers: SR25, SR253, FP21, SR50, SR73A/74A, SD20.";
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 = '';
}
}