function popup_venta(){
var w = 480, h = 340;
if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}
var popW = 400, popH = 460;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open('../venta.html','venta','resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0, width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}

function popup_concurso(){
var w = 480, h = 340;
if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}
var popW = 645, popH = 380;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open('../concursos/index.html','concursos','resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0, width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}


function popup_subscripcion(){
var w = 480, h = 340;
if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}
var popW = 510, popH = 140;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open('../contacto/subscripcion.html','subscripcion','resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0, width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}



