var fDesc=new Array(); fDesc[0] = "The Synesis Software File Case Shell Extension allows the user to alter the case of selected file item(s). It provides the three context-menu options for files in the Explorer shell of Convert to lower case, Convert to upper case and Capitalise, as shown in the accompanying graphic below. Selection of one of these options causes the name(s) of the selected file(s) to be transformed in the given manner.
This is very useful when editing html files on a Windows system (case-insensitive) which are then FTP-ed up to a UNIX host (case-sensitive)."; 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 = ''; } }