var fDesc=new Array();
fDesc[0] = "Photomania is a comprehensive application ideal for acquiring, organizing, viewing, enhancing, and sharing your images.
A full-featured image viewer quickly generates high-quality displays of your images. Photomania supports over 40 image file formats & 50 effects(filters).
Image read support: PNG, BMP, ICO, EMF, WMF, JPEG, JPEG2000, MNG, TIFF, RAS, TGA, GIF, PCD, PSP, PCX, PSD, FAX, SGI, RGB, PNM, PGM, PPM, HIPS, BW, PDD, VST, ICB, VDA, RLA, RPF, CEL, PIC, PCC, SCR, EPS, CUT, IFF, RSB, LBM, ADA, XPM, SCR
Image write support: PNG, JPEG, JPEG2000, MNG, TIFF, BMP, GIF, WMF, EMF, PCX, TGA, RAS, ADA, XPM
Basic effects: Antialias, Colorize, Crop, Despeckle, Old look (Sepia), Sharpen, Resize, Rotate.";
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 = '';
}
}