var fDesc=new Array(); fDesc[0] = "SteganPEG is an application of Steganography to JPEG images. The software can hide your personal, private, or sensitive files in any JPEG image without changing its quality and size considerably. The main reason for choosing the JPEG image format is that it is a compressed image format, that is very popular all over the world today.

The images created in this format take very less space, less time to load via internet, and so this format is widely used. It is also the preferred format to save captured images in many digital cameras.

The key features of SteganPEG are:
· It can hide multiple files in a JPEG image
· Shows indication of how much of space remains in the image to add more files
· Password protects the hidden files, so that no one without a password could even see what files are hidden
· Compresses the files before hiding, so that more number of files can be hidden
· Provides a convenient interface to add or view the files hidden in the JPEG image
· Hidden files can be extracted selectively"; 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 = ''; } }