var fDesc=new Array(); fDesc[0] = "PaletteWB is an application for converting palettes between different formats. It currently supports the following formats: GIMP palette (*.gpl), Adobe Photoshop palette (*.aco), Fractint palette (*.map), Microsoft palette (*.pal). Each of these formats can be used as input and the read palette can be written in one of these formats. Additionally, PaletteWB can render palettes to .gif-files and export palettes to JavaScript, css, and HTML. As well, PaletteWB can export .gif-images animated using colorcycling."; 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 = ''; } }