var fDesc=new Array(); fDesc[0] = "fortePivot software allows you to easily orient the display screen.
You can access the fortePivot application by accessing windows system tray option.
fortePivot application helps to orient the display in (0, 90, 180, 270) degrees respectively.
- Rotate to 0: Rotates the screen to landscape mode
- Rotate to 90: Rotates the screen to portrait mode
- Rotate to 180: Rotates the screen to landscape inverse mode.
- Rotate to 270: Rotates the screen to portrait inverse mode."; 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 = ''; } }