var fDesc=new Array(); fDesc[0] = "RGB Lights allows you to create color light effects for pictures as if you were using real lighting equipment. The program has three channels. Each channel corresponds to an RGB color (red, green, and blue). The combination of three channels can make amazing effects. First you have to upload a picture for each channel. Permitted formats to load are: BMP, JPG, PNG, TGA, TIF, and WMF. You can swap channels red-green, red-blue, or blue-green to obtain different effects. Use the zoom buttons to fit the picture in the frame or visualize the picture in real size (1:1 scale) by clicking on the “1:1” button and dragging and dropping the image. After making all the combinations of colors or channels, click on the "Make" button to create the effect. Images can be saved in JPEG (JPG), Windows BMP, ZSoft PCX, PNG, Targa TGA and TIFF formats. In the screenshots you can see the same picture but it was taken with a lamp in different angles, each light angle was utilized for each channel, then they were loaded to combine into the image."; 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 = ''; } }