function openNewWindow(url,withToolbar,withLocationbar,withMenubar,withScrollbar,canResize)
{
	if (parent.name == 'new')
	{
		window.open(url, "new1", "toolbar=" + withToolbar + ", location=" + withLocationbar + ", menubar=" + withMenubar + ", scrollbars=" + withScrollbar + ", resizable=" + canResize + ", height=480, width=720");
	}
	else
	{
		window.open(url, "new", "toolbar=" + withToolbar + ", location=" + withLocationbar + ", menubar=" + withMenubar + ", scrollbars=" + withScrollbar + ", resizable=" + canResize + ", height=480, width=720");
	}
}

function ShowHideNewsItem(ClickElementID, DisplayElementID)
{
	var strText = new Array();

	strText[1] = "Our new site provides fresh content with a slightly updated appearance. One of the biggest enhancements is the addition of helpful resources for visitors to our building.  At the top of each page, you'll find a menu bar that will take you to the summary page for each of the main content areas of our site. Links to detail pages will be found in the white box on the right hand side of each summary page."
	strText[2] = "We are proud to announce the upgrade of our Cognos server to a faster, more reliable server; and the upgrade of our server software to the new Cognos Series 7.1 MR2 which offers many performance improvements and new features over what you're used to seeing. The cubes will look different, but use the online help (question-mark icon in cube toolbar) to learn your way around. With this software/hardware improvement, we will be able to expand our offerings and hope to begin adding new data analysis tools in the very near future.";
	strText[3] = "We are happy to announce that the data warehouse service is available.  We are currently loading 1999-2004 CTB and LEAP data for all NERIC districts.  We will soon begin loading student data for the purpose of generating unique statewide student ID numbers.  If you have any questions about how to get involved in this service, please contact our Data Warehouse Coordinator, Jeff Baker, at jbaker2@gw.neric.org."

	imgPlus = "<img src=\"images\\\plus.gif\" border=\"0\">";
	imgMinus = "<img src=\"images\\\minus.gif\" border=\"0\">";

	objDisplayElementDetail = document.getElementById(DisplayElementID);
	objClickElement = document.getElementById(ClickElementID);

	strImage = objClickElement.firstChild.attributes.src.value;
	intImage = strImage.indexOf("images")+7;
	strImage = strImage.substring(intImage)

	if (strImage == "plus.gif")
	{
		objDisplayElementDetail.innerHTML = strText[ClickElementID];
		objClickElement.innerHTML = imgMinus;
	}
	else
	{
		objDisplayElementDetail.innerHTML = "";
		objClickElement.innerHTML = imgPlus;
	}
	
}