var fDesc=new Array();
fDesc[0] = "Features:
-Automatic energy saving function for your fan and pump applications
-VT, CT and SLV control modes
-Easy operation with removable standard operator keypad
-Built in PLC-like programming functions
-Compact design
-Built-in Modbus/RTU communication
-Carrier frequency selectable to 12kHz for quiet operation
Ratings: 15 to 100hp, 230V, 3 phase, 15 to 200hp, 460V, 3 phase";
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 = '';
}
}