﻿// Archivo JScript
function mostrarDiv()
{
    var objeto;
	objeto = document.getElementById("contenidocitas").style.display = "block";
	var enlace = document.getElementById("enlace");
	enlace.href = "Javascript:ocultarDiv()";
	enlace.firstChild.nodeValue = "cerrar";
	objeto = document.getElementById("sombra").style.display = "block";
}

function ocultarDiv(destino)
{
    var objeto;
    objeto = document.getElementById("sombra").style.display = "none";
	objeto =document.getElementById("contenidocitas").style.display = "none";
	var enlace = document.getElementById("enlace");
	enlace.href = "Javascript:mostrarDiv()";
	enlace.firstChild.nodeValue = "aqui";
	objeto =document.frames.contenido2.location=destino

}



