function validate_select4oben(s)	{
	var _selected = s.selectedIndex;

	if (_selected > 0)	{
		var _location = s.options[_selected].value;

		if (_location == location.href)	{
			return false;
		}

		if (isNaN(_location))	{
			location.replace(_location);
			return false;
		}
	}

	var _len = s.options.length;
	var _i;
	for (_i = 1; _i < _len; _i++)	{
		if (s.options[_i].defaultSelected == true || s.options[_i].className == 'checked' || s.options[_i].value == location.href)	{
			s.selectedIndex = _i;
			return false;
		}
	}

	s.selectedIndex = 0;
	return false;
}

