if(detectBrowser.modernBrowser()){

/*

document.observe('contentloaded', function() {
	if($$('select.browse_year_select').length > 0){
		var dds = new SkinnedSelect($$('select.browse_year_select')[0].parentNode,$$('select.browse_year_select')[0], function(){
			if($$('select.browse_year_select')[0].value != 0) {
				document.location.href = "news_and_features_archive.shtml?new_year=" + $$('select.browse_year_select')[0].value;
			}
		},'','gray');
	}
}, false);

*/

function getyear()
{
	var w = document.yearForm.nasa_facility.selectedIndex;
	var selected_text = document.yearForm.nasa_facility.options[w].text;
	var selected_url = document.yearForm.nasa_facility.options[w].value;
	if(selected_url != null && selected_url == '0')
	{
		document.location.href = document.yearForm.nasa_facility.options[1].value;
	}
	else
	{
		document.location.href = selected_url + "?year=" + selected_text;
	}
}

}