var fDesc=new Array();
fDesc[0] = "PictureProject allows you to manage your digital photos easily. In a few seconds you can download your digital images from your Nikon camera to your PC, organize them and even create a slideshow with special effects.
The key features of PictureProject includes:
* Thumbnail images are shown when you connect your camera to your computer allowing you to select the files that you want to download.
* The user-friendly interface will help you to easily manage and edit your digital images.
* The option to "drag-and-drop" images allows you to organize your digital images in different folders with just a few clicks.
* You can search for images stored in your PC without a hitch. You can do your search by file name, key words or creation and modification date.
* If you apply any special effect to your digital images and then, you want to undo your actions, It will not affect the original images.
* You can create a slideshow with your photos and then, add the background music that you desire.
* With just a few clicks you can share your digital images with your family and friends. Just send them via e-mail or print them.";
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 = '';
}
}