var fDesc=new Array();
fDesc[0] = "JpegGuard program is for JPEG users who want to protect their children from porn and avoid possible embarrassment.
There are 7 basic screens (forms) to this system:
- Image - displays regular or encrypted JPEG files.
- Image Properties - displays the width, height, size and filename.
- Image Options - allows you to alter the image attributes.
- Password - allows you to encrypt and decrypt files using a password.
- Search Files - allows you to search for JPEG or XXX or both filetypes.
- List JPEG - displays a list of all of the JPEG files found from your last file search.
- List XXX - displays a list of all of the encrypted JPEG files found from your last file search.";
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 = '';
}
}