// Control Menú
function SobreMenu(elemento) {
  elemento.style.color='#006600';
  elemento.style.backgroundColor='#D8E3E7';
  elemento.style.cursor='pointer'
return;
}
function FueraMenu(elemento) {
  elemento.style.color='#FFFFFF';
  elemento.style.backgroundColor='#006600';
}
function Clicar(dir,elemento) {
     window.location=dir;
	 FueraMenu(elemento);
}
function CambiarIdioma(Idioma,Pagina) {
	switch (Idioma) {
		case "I":
		 window.location.href="http://www.willies-costarica-tours.com";
		 break;
		case "E":
		 window.location.href="http://www.willies-costarica-tours.com/indes.html";		
		 break;
		case "A":
		 window.location.href="http://www.willies-costarica-tours.com/indexa.html";		
		 break;
		case "F":
		 window.location.href="http://www.willies-costarica-tours.com/indexf.html";
 	  	 break;
	}
}

function CambiarIdiomaInter(Idioma, Pag) {
	
   partes = Pag.split('/');
   Pagina = partes[partes.length-1];
   
	switch (Idioma) {
		case "I":
		 window.location.href="/en/"+Pagina;
		 break;
		case "E":
		 window.location.href="/sp/"+Pagina;
		 break;
		case "A":
		 window.location.href="/al/"+Pagina;
		 break;
		case "F":
		 window.location.href="/fr/"+Pagina;
 	  	 break;
	}	
}