var fDesc=new Array();
fDesc[0] = "Photo Organizer Deluxe is a Windows software that allows you to create and manage all kinds of digital photo, picture, and graphic catalogs. For the database novice, the program's intuitive interface and ready-to-use photo inventory solutions make it easy to set up and use.
Features:
- Picture Organizer Basic: organize and maintain all your digital pictures and photos in a general form.
- Picture Organizer Detailed: complete template that allows you to catalog and maintain detailed information about all digital pictures and photos.
- Multimedia Organizer: solution that allows you to organize and maintain all your multimedia files using specialized table field.
- Ready-to-use templates: there are other database business and home inventory solutions that will enable you to be productive and effective at work or home immediately.";
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 = '';
}
}