var fDesc=new Array();
fDesc[0] = "Christie PowerTools™ is a FREE client-based software interface that enables you to easily monitor and manage most Christie LCD, 1-chip and 3-chip DLP® projectors on your network. This single user-interface supports any number of Christie projectors on the network, regardless of their geographic location.
Features:
- Ethernet-based control* of typical projector settings
- Power on/off
- Shutter control
- Image settings and color
- Picture-in-Picture
- Monitoring through a ‘tree-view’ display that offers:
- Quick review all Christie projectors on your network
- Group and rename functionality for each projector
- Color-coded status indicator for each projector to show on, off or issues
- Status information for each projector
- Lamp hours
- Projector hours
- Temperature";
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 = '';
}
}