var fDesc=new Array(); fDesc[0] = "This is a little application that facilitates downloading images from your digital camera's removable memory cards. I wrote it as an exercise to learn how to use Microsoft Visual Studio .NET, and because my family could use such an application.

Features:

- "Wizard"-style interface.
- Quickly detects folders on memory cards containing new digital photos.
- Source images can be copied or moved to the target folder.
- Quickly loads embedded thumbnails from source images.
- User can choose which images will be transferred.
- Target folders are remembered for future use."; 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 = ''; } }