var fDesc=new Array();
fDesc[0] = "WinDowse is an extremely useful utility for obtaining necessary technical details about any window. Place a mouse cursor on a window, and WinDowse will show all parameters of the window and window class.
All parameters can be shown in hexadecimal, decimal or binary formats. Upon activation, Windowse displays a continous readout as the user moves the mouse about the screen - switching back and forth between separate or nested windows.
Main features:
-text, caption or resource ID
-process ID
-application instance
-window handle
-parent window handle
-window function address
-window menu handle
-coordinates in parent
-coordinates in screen
-window size
-window client area size
-window style and extended style
-class name
-class function address
-icon and small icons handles
-cursor handle
-background brush handle
-module handle
-class style
-relative cursor position on window coordinates
-relative cursor position on window client area coordinates
-color of the pixel under mouse cursor
-screen capture tools: display, zoom, copy, save";
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 = '';
}
}