function GetURLIdioma(location, panchor, idioma)
{
	var pagina;
	var pathnamehastaidioma;
	var URL;
	
	pagina=location.href.substring(location.href.lastIndexOf("/")+1, location.href.length);
	pathnamehastaidioma=location.href.substring(0,location.href.lastIndexOf("//")+2)+location.hostname;
	URL=pathnamehastaidioma+"/"+idioma+"/"+pagina;
	
	panchor.href=URL;

}