function resize_news() {
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth - 20;
		myHeight = window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth - 5;
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}

  	var elmt = document.getElementById( 'news_iframe' );
  	var new_width = myWidth - 200 - 510 - 20 - 40 - 0 + 25; // 200=left nav, 510=flash, 20=my scroll bar, 20=window scroll bar, 5=chrome
  	if ( new_width > 0 ) {
  		elmt.width = new_width;
  	}
}

// For home page