var fDesc=new Array(); fDesc[0] = "Every now and then when working with Eclipse you'd like to examine a file or a folder inside the Eclipse workspace with your Windows Explorer, or you edit a configuration file in an Eclipse editor, which refers to another file in the filesystem and you wonder what it is in that file or you would like to open it in a different application. This plug-in provides you with a convenient way to do all this by adding a few entries to Eclipse's context menus. Furthermore, it offers a different (faster) way to issue any shell/dos commands you like through customizable menu commands."; 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 = ''; } }