var fDesc=new Array();
fDesc[0] = "ez Share is a program designed to transfer images for Wi-Fi SD card wirelessly. It can be applied to family
products of ez Share including Wi-Fi SD card, Wi-Fi microSD adapter and Wi-Fi Smart box powered and
branded by ez Share. With this app, users can easily browse and download image/video files on a digital camera, stuck with a ez Share product, and perform image processing and social sharing.";
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 = '';
}
}