var fDesc=new Array();
fDesc[0] = "Photo Transport provides you with the following capabilities.
- Transfer of images from your computer to the camera.
- Transfer of computer screen shots to the camera as JPG images.
Although the software transfers images to the digital camera, this function is
not a file copying function. To transfer the images stored on the PC to the camera using Photo Transport, the camera must be connected to the PC via USB.";
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 = '';
}
}