var fDesc=new Array();
fDesc[0] = "The FS2 can be used as two separate frame synchronizers/format converters, or the two channels can be combined. The FS2 supports analog and digital I/O, with full input and output crosspoint matrices, allowing any I/O port to be assigned to either processor. With support of all broadcast video formats, the FS2 makes matching up disparate video and audio systems simple.
Main Features:
- Dual video format converters, each featuring SD/HD (up/down), SD-to-SD (aspect ratio), and HD-to-HD (720/1080 cross) conversions.
- Dual video processors supporting proc amp and color correction.
- Dual frame synchronizers.
- Dual video/key framestores downloadable from the local area network.
- User-specified custom format conversion and scaling with variable crop, size, aspect, position, and Region of Interest parameters.
- Dual flexible keyers for video/key overlays or sidebar keying from the two video processors, the two internal video/key framestores, or internal matte generators.
- Closed captioning support, featuring true conversion between EIA 608 and 708 (SD and HD) CC formats.
- Active Format Description (AFD) support.";
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 = '';
}
}