function getcookie(nombre) {
var cookie = document.cookie.indexOf(nombre);
return (cookie != -1);
}
function setcookie(nombre, segundos) {
var duracion = new Date();
var segs = duracion.getTime();
segs += segundos * 1000;
duracion.setTime(segs);
duracion = duracion.toUTCString();
document.cookie = nombre+'=desactivar; expires='+duracion;
}
window.onload = function() {
if (!getcookie('popunder')) {
var w = 'width='+screen.width+',';
var h = 'height='+screen.height+',';
var ventana = window.open('http://www.google.com', 'Popunder', w+h+'scrollbar=no,resizable=no');
if (ventana) {
setcookie('popunder', 86400);
}
}
}