var fDesc=new Array();
fDesc[0] = "When shooting images using the compressed mode on Leaf products, the files are saved in an intermediate, non-standard compressed format.
The Leaf Raw Converter enables you to convert these non-standard compressed files to a standard Leaf format which can be read by other applications such as the Adobe® Photoshop® Camera Raw plug-in.
The converted files can be saved in standard compressed or uncompressed form. The Leaf Raw Converter can also be used to convert uncompressed files to standard compressed format.";
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 = '';
}
}