<!--
function fSC() {
	var i	= document.Form1.selSC.selectedIndex;
	var url = document.Form1.selSC.options[i].value;

	if ( url.indexOf("help/") > -1 || url.indexOf("support.networkforgood.org") > -1) 
	{
		fNW(url, 'newWindow');
	}
	else if ( url.indexOf("guidestar") > -1 ) 
	{
		window.open(url);
	}
	else if ( url != "" ) 
	{
		window.parent.location.href = url;
	}
}
//-->