var wHeight, wWidth, sHeight, sWidth, bitDepth;
sHeight = window.screen.height;
sWidth = window.screen.width;
if( typeof( window.innerHeight ) == 'number' ) {
	//Non-IE 
   wHeight = window.innerHeight;
   wWidth = window.innerWidth + 120;
} else if( document.documentElement &&
	     ( document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    wHeight = document.documentElement.clientHeight;
    wWidth = document.documentElement.clientWidth +120;
  } else if( document.body && document.body.clientHeight ) {
    //IE 4 compatible
    wHeight = document.body.clientHeight;
    wWidth = document.body.clientWidth +120;
  }

img = '<img alt=" " height="1" width="1" src="/monitor/monitor.php?wHeight=' + wHeight + '&wWidth=' + wWidth + '&sHeight=' + sHeight + '&sWidth=' + sWidth + '&bitDepth=' + bitDepth + '">';
document.write(img);
