var fDesc=new Array(); fDesc[0] = "RCConsole's user interface is hopefully very intuitive. The images you want to process must first be open in MaxIm. Start the plug-in by selecting it's entry in MaxIm's plug-in menu. Choose which images you want to process using the selection list buttons, and then click which processing operation you want to run. Set any options needed, and then click the OK button. When you are finished processing the images, click the Exit button on the main dialog form."; 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 = ''; } }