// Navegar hacia atras
	function Atras()
	{
		 history.go(-1);
	}
// Navegar hacia adelante
	function Siguiente()
	{
		 history.go(1);
	}
// Volver al menu principal
	function ObtenerURL()
	{
		document.location = "MainMenu.asp"
	}  
// Cerrar sesion
	function CloseSession()
	{
		document.location = "End.asp"
	}  
// Actualizar Datos del usuario
	function UpdateUser()
	{
		document.location = "Register.asp?Opt=UPDATE"
	}  
// Actualizar Contraseņa del usuario	
	function ChangePassword()
	{
		document.location = "Register.asp?Opt=UPDATE"
	}  
// Ir al portal
	function GoHome()
	{
		document.location = "../../default.asp"
	}  
