var fDesc=new Array(); fDesc[0] = "Visual Subst is a small tool that allows you to associate the most accessed directories with virtual drives. It uses an API similar to the console 'subst' utility, but makes it easier to create and remove virtual drives in a GUI way. Using virtual drives, you will be able to turn a long path (D:\My Documents\My Projects\) into just one drive letter (X:). It may be very useful when working with deep folder hierarchies as well as when working with projects copied from another system."; 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 = ''; } }