function abrir() {
	$("#pop").fadeIn('fast');
}

function cerrar() {
	$("#pop").fadeOut('fast');
}

 //Función para cerrar el popup 
   $("#cerrar").click(function (){ 
      $(this).fadeOut('fast'); 
   });


$(document).ready(function (){

  //Esconder el popup 
   $("#pop").hide();

   //Consigue valores de la ventana del navegador 
//   var w = $(this).width(); 
//   var h = $(this).height(); 
    
   //Centra el popup    
//   w = (w/2) + 200; 
//   h = (h/2) - 00; 
//   $("#pop").css("left",w + "px"); 
//   $("#pop").css("top",h + "px");

});

