function PopUp() { centraVentana(); muestraVentana(); $("#PopUpCerrar").click(function(){ ocultaVentana(); }); $("#PopupFondo").click(function(){ ocultaVentana(); }); } function centraVentana() { var windowWidth = document.documentElement.clientWidth; var windowHeight = document.documentElement.clientHeight; var popupHeight = $("#PopUpCapa").height(); var popupWidth = $("#PopUpCapa").width(); $("#PopUpCapa").css({ "top": windowHeight/3-popupHeight/2, "left": windowWidth/2-popupWidth/2 }); } function ocultaVentana() { $("#PopupFondo").fadeOut("slow"); $("#PopUpCapa").fadeOut("slow"); } function muestraVentana() { $("#PopupFondo").css({ "opacity": "0.7" }); $("#PopupFondo").fadeIn("slow"); $("#PopUpCapa").fadeIn("slow"); }