podrias usar lo siguiente
Esto va dentro del body de tu html
Código HTML:
Ver original<div id="popup">HOLA
</div>
Código Javascript
:
Ver original$(document)​.ready(function(){
var p = $('#popup');
p.css({
width: '500px',
height: '500px',
backgroundColor: 'red',
position: 'absolute',
display: 'none'
});
// ABRIMOS EL POPUP LUEGO DE CIERTOS SEGUNDOS EN EL CASO 2 SEGUNDOS
setTimeout(function(){
var p = $('#popup');
p.css({
left: (window.screen.height + $(this).height())/2 + 'px',
top: (window.screen.width + $(this).width())/2 + 'px',
display: 'block'
});
},2000);
});​