var fDesc=new Array();
fDesc[0] = "PocketPhoto Download photos from KODAK PhotoNet online.
-Supports COLOR on the new Palm IIIc™, and the new Handspring Visor Prism!* (But also displays great black/white pictures on all Palm OS compatible handhelds.)
-Support for multiple albums, by user and category
-Pictures added from files are automatically named from the file name (but can be easily edited).
-Slide show on handheld--can view all pictures in album, or by category (you can also do simple animation!)
-Individual photos can be marked as private
-Faster synchronization--only files that have changed are downloaded, and now files can be uploaded to any PC";
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 = '';
}
}