var fDesc=new Array(); fDesc[0] = "The program was designed to make exploring and experimenting as easy as possible. The appearance of the main form changes depending on the type of image and what you are doing at the moment. This ensures that only appropriate values can be changed and that only appropriate buttons can be clicked. The controls discussed are not difficult - you could determine how they work with just a little experimentation. MBF supports two different locations for most of the controls on the form, one with the controls below the Picture Box, and one with the controls above the Picture Box."; 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 = ''; } }