var fDesc=new Array(); fDesc[0] = "Window Detective is a programmer's tool used to "spy" on an application's windows and allows you to view and even modify some of it's properties.
Key features of Window Detective include:
View properties of windows such as text/title, dimensions and styles.
Set properties such as text/title, dimensions and styles.
View all windows in a tree hierarchy of parent/child windows.
'Pick' windows to inspect using the mouse.
Advanced search which allows you to find windows that match specified criteria.
Listen for window messages sent to a window.
"Smart Settings" that intelligently remember user settings such as window positions."; 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 = ''; } }