<!--

function QuickLinkselChange(selObj) {
	/*
		handles the Quicklink selection change event
	*/
	var idx=selObj.selectedIndex;
	if (selObj.options[idx].value=="blankline") {
		return;
	}
		
	window.location.href=selObj.options[idx].value;
		
}

function NewsArchiveChange(selObj) {
	/*
		handles the News Archive  selection change event
	*/
	var idx=selObj.selectedIndex;
	if (selObj.options[idx].value=="blankline") {
		return;
	}
		
	window.location.href='/general/newsitem.asp?NewsItemID='+selObj.options[idx].value;
		
}

function DirWinPopUp(fileName, width, height, winTitle) {
		apopup = window.open(fileName,winTitle,'toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=no,copyhistory=no,width='+width+',height='+height);
}


function setBGColor(spanObj) {
	
	spanObj.style.backgroundColor='lightBlue';
	spanObj.style.cursor='hand';
	
}

function resetBGColor(spanObj){

	spanObj.style.backgroundColor='';
	spanObj.style.cursor='';
}
//-->
