var fDesc=new Array(); fDesc[0] = "Four sections, a graphics section, graphic reduction, sound section and a video section. Each section is self contained and could quite easily be a program within itself but by combining the four together you have a complete multimedia program. Details of each section are as follows:~~Graphics Section~This section allows you to view graphic files in the following formats BMP, DIB, JIF, JPG, JPEG, PBM, PCX, PGM, PNG, PPM, RLE, TGA, TIF, TIFF, ICO, PDF and WMF.~Can display true color graphics with an optimised palette and Floyd Steinberg Dithering on 256 color systems while keeping the true color data in memory. An OpenDialog and a SaveDialog add a preview for graphics so you always know which file is selected. There are color filters for RGB, CMY, YCbCr, HLS and HSV. There are also a number of special effect filters such as to change a graphic's brightness, contrast and gamma, others include sharpen, smooth, blur and contour features. Other filters allow to grayscale a graphic (with and without RGB weighing)."; 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 = ''; } }