var fDesc=new Array(); fDesc[0] = "PictureData is designed to allow the user to keep track of all their pictures, movies or anything that has an image. You can store a digital preview image of the picture or the picture it's self. You can search for people, places, anything you put in the application. Each picture can be in multiple albums. The program allows you to setup users with security to add or edit data. You can put a rating on each picture and restrict users based on the rating. The application allows you to create an address book, and associate a picture with the person. The program can tell you how old the person was when the picture was taken as well as how old they currently are. You can assign a person to a group and run reports on that group. You can publish the data to the Web, if you wish. There are endless possibilities that this program can do. PictureData is very flexible as it is shipped."; 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 = ''; } }