var fDesc=new Array();
fDesc[0] = "CookExif is a useful tool for editing the meta info from the digital photos. You can fill in a large area of categories and search for your favorite photos easier.
On you hard-drive, you have stored many photos which’s from different camera or model. Fatally, you never arranged or organized them by camera or model. Don’t worry about this, CookExif helps you to do it!";
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 = '';
}
}