/**
*	News specific scripts
**/
var lastNewsClicked=null;

function changeNewsHospital (list)
{

	document.location.href="intranetNews.aspx" + 
		"?archive=" + $("archiveMode").value + "&hospital=" + list.value;
}

//Open news popup

function openNewsPopup (ahref, news_id, noHighlight)
{
	if (lastNewsClicked!=null)
		lastNewsClicked.style.fontWeight="normal";
	if (!noHighlight)
		ahref.style.fontWeight="bold";
	lastNewsClicked=ahref;
	var win = window.open (getVirtualPath () + "intranet/news.aspx?news=" + String(news_id),"News",
		"width=620,height=500,scrollbars=yes,resizable=yes");
}