//Variable global del FCKeditor
var sBasePath = "modulos/FCKeditor/" ;

function Editor_Visual(Nombre, Altura)
{
	var oFCKeditor = new FCKeditor( Nombre ) ;
	oFCKeditor.BasePath	= sBasePath;
	oFCKeditor.Height = Altura;
	oFCKeditor.Width = 600;
	oFCKeditor.ReplaceTextarea();
}

function Pregunta(Pregunta, Url)
{
	if(confirm(Pregunta))
	{
		window.location = Url;
	}
}

function Mostrar(id)
{
	current=(document.getElementById(id).style.display == 'none') ? 'block' : 'none';
	document.getElementById(id).style.display = current;
}


var dominio = "wallack.es";
function LinksExternos()
{
	var Externo;
	if (document.getElementsByTagName('a'))
	{
		for (var i = 0; (Externo = document.getElementsByTagName('a')[i]); i++)
		{
			if (Externo.href.indexOf(dominio) == -1)
			{
				Externo.setAttribute('target', '_blank');
			}
		}
	}
}