function cambia_idioma(idioma){

	hoy = new Date()
	fecha_caducidad = new Date(hoy.getYear(), hoy.getMonth()+1, hoy.getDate())

	document.cookie = "idioma="+idioma+"; path=/; expires=" + fecha_caducidad.toGMTString();

	if (idioma=="ingles"){
		document.location.href="http://info.rallyracc.com/2009/ingles/index.html"
	}
	else{
		re = /\/espanol\/|\/catalan\/|\/ingles\//g; 
		nueva_url = document.location.href.replace(re, "/"+idioma+"/"); 
		document.location.href=nueva_url
	}

	

}

menu_actual = 0

function menu(item){

	obj = document.getElementById("menu"+item)
	if (obj.style.display=="none")
		obj.style.display="block"
	else
		obj.style.display="none"



	if (menu_actual!=0){
		obj = document.getElementById("menu"+menu_actual)
		obj.style.display="none"
	}


	if (menu_actual == item)
		menu_actual=0
	else
		menu_actual = item



	
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}