var fDesc=new Array(); fDesc[0] = "First and foremost, DBGallery is a database application used to store data about images. As shown in the screenshot below, DBGallery includes a viewer, which shows the image and its data, reports, statistics, a website and email generation subsystems, and a main search window with a folder tree view and thumbnails. These features come naturally to a system with a database backend. One doesn’t just key data and use it temporally. Instead, it is reused over and over by searching, including the data in websites and reports, and other ways that’s become obvious as you become familiar with this unique photo database system. With the addition of ITPC support in v3.0, data keyed into DBGallery is shared by other programs and websites that your photo files are copied to.



NOTE: DBGallery doesn’t store the images themselves. Instead just a path to where the image is located is stored in the system database. This method means images aren’t copied, which takes up disk space."; 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 = ''; } }