function mostrar() {  
$("#pop").fadeIn('slow'); } 
$(document).ready(function (){
var img_w = $("#pop img").width() + 10;   
var img_h = $("#pop img").height() + 28;        
$("#pop").css('width', img_w + 'px');    
$("#pop").css('height', img_h + 'px');        
$("#pop").hide();
var w = $(this).width();   
var h = $(this).height();        
w = 118; 
h = 120; 
$("#pop").css("left",w + "px");
$("#pop").css("top",h + "px");
setTimeout("mostrar()",1500);
$("#pop").click(function (){       
$(this).fadeOut('slow');    });
});

function cerrar() {     $("#pop").fadeOut('slow');  } 

$(document).ready(function (){    
//Conseguir valores de la img     
var img_w = $("#pop img").width(400) ;     
var img_h = $("#pop img").height(200);          
//Darle el alto y ancho     
$("#pop").css('width', img_w + 'px');     
$("#pop").css('height', img_h + 'px');       
//Consigue valores de la ventana del navegador     
var w = $(this).width(400);     
var h = $(this).height(200);          
//Centra el popup        
w = (w/2) - (img_w/2);     
h = (h/2) - (img_h/2);     
$("#pop").css("left",w + "px");     
$("#pop").css("top",h + "px");    
//temporizador, para que no aparezca de golpe    
setTimeout("cerrar()",23800);    
//Función para cerrar el popup     
$("#pop").click(function (){        
$(this).fadeOut('slow');           
});      
})