var fDesc=new Array(); fDesc[0] = "Features

-Five programming languages can be used

Programming can be done using the language most familiar to the developer or using the language most suited to the process to be performed. High-level (structured text) languages that allow structuring, such as C, are supported.

-Easy to reuse well-proven programs

Efficiency when writing programs has been greatly increased by being able to split programming up for each function and process using structured programming.

-Keep know-how from getting out

By "lack boxing" a part of a program, you can prevent know-how from leaking out and improve the program's maintainability.

-Uploading of source programs from PLC possible

Maintainability increased by being able to load programs and comments from the PLC.
This only applies to FP-X, FPΣ and FP2 (with comment memory) and to FP2SH and FP10SH (with card board).

-Programming for all modelsin the FP sereis possible.

Any model can be used."; 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 = ''; } }