//MOSTRAR / OCULTAR CAPAS
function cerrar_ofertas(){
	document.getElementById('cerrar_ofertas').style.visibility="hidden";
	document.getElementById('ofertas').style.visibility="hidden";
	document.getElementById('ofertas_todas').style.visibility="hidden";
}

function mostrar_ofertas(){
	document.getElementById('cerrar_ofertas').style.visibility="visible";
	document.getElementById('ofertas').style.visibility="visible";
	document.getElementById('ofertas_todas').style.visibility="visible";
}

//LINKS EXTERNOS
function externalLinks(idioma)
{
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++)
	{
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
		{
			var titulo = anchor.getAttribute("title");
			
			switch (idioma)
			{
				case "es":
				{ 
					anchor.title = titulo + " (se abre en ventana nueva).";
					break
				}
				case "en":
				{ 
					anchor.title = titulo + " (opens in new window).";
					break
				}
				case "de":
				{ 
					anchor.title = titulo + " (opens in new window).";
					break
				}
				default:
				{ 
					anchor.title = titulo + " (se abre en ventana nueva).";
					break
				}
			}
			anchor.target = "_blank";
		}
	}
}
