var fDesc=new Array();
fDesc[0] = "Large-format frame sensor configurations use multiple sensor heads. To produce a final frame requires several additional processing steps which include compensation of system specific parameters, co-registration of the multiple head patched data and the introduction of so-called “virtual frames”.
In comparison, the Leica XPro line sensor workflow is straightforward to implement and easy to use for those familiar with the traditional analog frame processing. Most importantly, it produces the best results.";
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 = '';
}
}