var fDesc=new Array();
fDesc[0] = "Eye-Fi Center consists of two parts: a small application (Eye-Fi Helper) that runs on your computer and a graphic interface application (Eye-Fi Center) that runs independently of a web browser or internet connection.
Features:
- Mangage and view how and where your card uploads photos and videos
- Republish items to different sharing sites (e.g. upload to Flickr, then to Facebook)
- View photo & video uploads by date with a calendar";
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 = '';
}
}