var fDesc=new Array();
fDesc[0] = "Canon XF Utility offers various options for managing and playing back clips recorded with Canon camcorders compatible with MFX files.
Main features:
- Display a list of all the clips recorded on a CF card, search the list and play back clips.
- Save clips that were recorded on a CF card to the computer, or write back previously saved clips from the computer onto a CF card.
- Create, edit and save User memory profiles on a SD memory cards.";
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 = '';
}
}