
//This javascript is to size the browser.  Different commands are needed for
// different browsers.  The goal is to size the browser to 1005 px wide if they
// are wider than that.  Leave it alone if it is already less than that.  And 
// we are trying to touch the height as little as possible.
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.outerWidth;
		myHeight = window.outerHeight;
		//alert('1');
		if (myWidth > 1005 ) {
			//window.resizeTo(1005, myHeight);
		}		
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
		//alert('2');
		if (myWidth > 1005 ) {
			//window.resizeTo(1005, screen.Height-75);
		}		
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible - IE6 quirks mode
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
		//alert('3');		
		if (myWidth > 1005 ) {
			//window.resizeTo(1005, screen.Height-75);
		}
	}

