var fDesc=new Array();
fDesc[0] = "View metadata, previews, and thumbnails of Canon RAW files.
Preview Canon RAW format (CR2) images in Windows Explorer, Windows Live Photo Gallery, and Windows 7 Media Center
View thumbnails of CR2 files
Search and view metadata
If you purchased a license, then the registration information can be entered in the Preferences application in the CR2 Codec by Ardfry Imaging program group.";
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 = '';
}
}