var fDesc=new Array(); fDesc[0] = "If you have Windows ME/2000/XP/2003, you've probably noticed that in all system applications, the Open dialog box has a new UI element. Along the left side, you have a vertical toolbar with buttons pointing to frequently used folders. This toolbar is called the Places Bar. By default, the Places Bar contains links to History, My Documents, Desktop, My Computer, and My Network Places. You can change these links. There are three methods to get this bar up and running, with varying difficulty levels."; 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 = ''; } }