var fDesc=new Array();
fDesc[0] = "The ChromaPIX concept is to develop a high-performance SSTV workstation system, that exploits the newest DSP, imaging, and operating-system technologies.
Main features:
- DSP code revisions for improved picture quality
- New B/W modes - 8 sec 120 line (Robot 8), 36 sec 256 line (Robot 36 " "), 17 sec 256 line (SP17)
- MP115 mode support
- Full Time Sync (user selected)
- Auto-Stop on lost sync (user selected)
- "Sticky" load effects buttons can stay selected or auto-clear after image load
- Support for transparency in image loads, both 32-bit (alpha channel) and chromakey (transparent color) images
- New thumbnail tray keyboard shortcuts for scrolling, and loading or deleting images
- New RX Mute and COM port Sharing options
- "Zoom" control now zooms to full-screen
- Monitor window is now user-scaleable to any desired size";
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 = '';
}
}