// JavaScript Document
function changeIdiom(idioma)
{
	url = window.location;
	url = url.toString();
	var flag = false;
	
	if (url.indexOf("?") == -1)	
		prefix = "?"
	else
		prefix = "&"	
		
	if (url.indexOf("lang=es") != -1){
		url = url.replace("&lang=es", "");
		url = url.replace("?lang=es", "");
		flag = true;
	}
	else if (url.indexOf("lang=fr") != -1){
		url = url.replace("&lang=fr", "");
		url = url.replace("?lang=fr", "");
		flag = true;		
	}
		
	//url = url + prefix + "lang=" + idioma;
	//window.location = url;
	window.location = 'index.php?lang=' + idioma;
}

function idiomaIlumina(idioma){
	if (document.getElementById(idioma)!=null){
		document.getElementById(idioma).style.color = "#AAA";
	}
}

function menuIlumina(id){
	if (id){
		if (document.getElementById("secc"+id)!=null){
			document.getElementById("secc"+id).className = "seccion_selected";			
		}
	}
	else{
		document.getElementById("secc999").className = "seccion_selected";					
	}
}
