// JavaScript Document

function encuesta()
{
	document.getElementById("formulario").action="encuesta.asp";
	document.getElementById("formulario").submit();
}

function mapaweb()
{
	document.getElementById("formulario").action="mapaweb.asp";
	document.getElementById("formulario").submit();
}
function legal()
{
	document.getElementById("formulario").action="avisolegal.asp";
	document.getElementById("formulario").submit();
}
function cerrarSesionGlobal(destino)
{
	document.getElementById("txtLog").value="cerrarSesion";
	document.getElementById("txtTipoCarpeta").value="";
	document.getElementById("formulario").action=destino;
	document.getElementById("formulario").submit();
}