var fDesc=new Array(); fDesc[0] = "Enter a hex or RGB color value and the program will convert it for you. Pop up a color mixing pallette to enable you to get an exact color match for your buttons. When you have selected colors for your background, text and link colors you can output the complete blank page HTML with your new color values."; 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 = ''; } }