var fDesc=new Array(); fDesc[0] = "The colour selector is the tool used to change or set a specific colour when creating or modifying designs.
The colour selector is very simple to work with. The standard colour model is HIS, which stands for Hue (also called colour), Saturation (how deep or faint that colour is) and Intensity (how bright the colour is)."; 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 = ''; } }