	
	function OpenNewsItem(id){
		var w = 440;
		var h = 410;
		
		var optStr = "width=" + w + ",height=" + h + ",resizable,scrollbars,status";
		var winStr = "newstItem";
		var urlStr = "NewsItem.aspx?objectId=" + id;

		// Open the window and return a reference to the window
		var NewsItemWin = window.open(urlStr,winStr,optStr);

		if(!NewsItemWin.opener) NewsItemWin.opener = self;

		// Bring the window into focus
		NewsItemWin.focus();
	}