function isIE()
{
      return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}

function setMenu(indice,sizetab,year){

    var textyearbeg = '';

    for(i=2010;i>1900;i--){
	if(isIE() == true)
	{
		var oOption = document.createElement("OPTION");
		oOption.text = i + '-' + (i+1);
		oOption.value = i;
		if(i==year){
		oOption.selected="selected";
		}
		document.getElementById('yearbeg').add(oOption);
	}
	else
	{
    		textyearbeg += '<option value="' + i + '"';
		if(i==year){
			textyearbeg += ' selected="selected" '
		}	
    		textyearbeg += '>' + i + '-' + (i+1) + '</option>';
	}
    }

    if(isIE()==false)
    {
	document.getElementById('yearbeg').innerHTML = textyearbeg;
    }
     
    for(i=0;i<sizetab;i++){
      
      if(i==indice){
        
        document.getElementById('ssmenu_'+ i).style.display="block";
        document.getElementById('href'+i).style.color="#FFFFFF";

        if(i==0 && year>=1984){
          document.getElementById('href'+i).style.backgroundColor="#0a2875";
          document.getElementById('ss_menu_general_homepage').style.backgroundColor="#0a2875";
        }else if(i==1 && year==2007){
          document.getElementById('href'+i).style.backgroundColor="#6c0707";
          document.getElementById('ss_menu_general_homepage').style.backgroundColor="#6c0707";
        }else{
          document.getElementById('href'+i).style.backgroundColor="#124217";
          document.getElementById('ss_menu_general_homepage').style.backgroundColor="#124217";
        }
          
      }else{
        document.getElementById('ssmenu_'+ i).style.display="none";
        document.getElementById('href'+i).style.color="#000000";
        document.getElementById('href'+i).style.backgroundColor="#FFFFFF";
      }
    }
    
}
