		function abreVentana(url)
		{
			window.open(url);
			
		}
		
		
		function abrirVentanaOnClick (e,url)
		{
			var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
			if(key != 9 ){
				window.open(url);;  
				return false;
			}
		}
		
		function cargarLinkExterno(sIdioma)
		{
			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") {
					anchor.target = "_blank";
					if(sIdioma=="es"){
						anchor.title = anchor.title +" (se abre en ventana nueva)";
					}
					if(sIdioma=="en"){
						anchor.title = anchor.title +" (open in a new window)";
					}
					if(sIdioma=="as"){
						anchor.title = anchor.title +" (abrese en ventana nueva)";
					}
				}
			}
		}
