var fDesc=new Array(); fDesc[0] = "Use WindowsWhere with Windows 7 to make sure that explorer windows stay where you left them. See, Windows 7 (and Vista as well, apparently) like to forget where you left your explorer windows, so that new explorer windows end up wherever the last window was, instead of where that particular window was last. It's pretty annoying, considering it seemed to work fine on Windows XP. This tiny program is an attempt to regain that functionality."; 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 = ''; } }