
window.onload = function()
{
	initSelect();
}

function initSelect()
{
	_initSelect('espece_select');
}


function _initSelect(sId)
{
	var sel = document.getElementById(sId);
	if ( !sel )
		return;
	sel.onchange = function() { redirectSelect(sel); }
}

function redirectSelect(sel)
{
	var opt = sel.options[sel.selectedIndex];
	if ( opt.value != "0" )
		document.location.href = opt.value;
}
