// JavaScript Document
function bExpCon(num)
{
	if (document.getElementById("buscador" + num).style.height=="0px")
	{
		document.getElementById("buscador" + num).style.height="auto";
		document.getElementById("buscador" + num).style.visibility="visible";
		document.getElementById("buscador" + num).style.display = "block";
		document.getElementById("expcon" + num).innerHTML="contraer";
	}
	else
	{
		document.getElementById("buscador" + num).style.height="0px";
		document.getElementById("buscador" + num).style.visibility="hidden";
		document.getElementById("buscador" + num).style.display = "none";
		document.getElementById("expcon" + num).innerHTML="expandir";
	}
}

function notBuscador(cod)
{
	document.getElementById("vengoDeBuscador").value="1";
	document.getElementById("txtNoticia").value=cod;
	document.getElementById("formulario").action="vernoticia.asp";
	document.getElementById("formulario").submit();	
}

function notIndformaBuscador(cod)
{
	document.getElementById("vengoDeBuscador").value="1";
	document.getElementById("txtCodNoticia").value=cod;
	document.getElementById("formulario").action="noticiaindforma.asp";
	document.getElementById("formulario").submit();	
}

function proyBuscador(cod, tipo)
{
	document.getElementById("vengoDeBuscador").value="1";
	document.getElementById("txtCodProyecto").value=cod;
	document.getElementById("txtProyecto").value=tipo;
	document.getElementById("formulario").action="verproyecto.asp";
	document.getElementById("formulario").submit();	
}

function descBuscador(archivo)
{
	window.open ("./archivosdescargas/" + archivo);	
}

function buscarTodo()
{
	document.getElementById("txtCadenaBusqueda").value=trim(document.getElementById("txtCadenaBusqueda").value);
	document.getElementById("formulario").action="buscador.asp";
	document.getElementById("formulario").submit();	
}

function buscarPalabras()
{
	document.getElementById("txtCadenaBusqueda").value=" " + trim(document.getElementById("txtCadenaBusqueda").value) + " ";
	document.getElementById("formulario").action="buscador.asp";
	document.getElementById("formulario").submit();	
}