<div align='center'>
<script>
function ventanaSecundaria(){
t=11;timer=window.setInterval( 'contador()',1000);
hija=window.open('URL DE LA WEB DEL POP UP','ventana','width=940,height=525,scrollbars=0');
}
function contador(){
if(hija!=null){
if(hija.closed){
clearInterval(timer);
t=10;
document.getElementById('contador').value='Mostrar enlaces';
return
}
if(hija.frames.length!=3){
t=t-1;
if(t<=0){
clearInterval(timer);
document.getElementById('hide').style.display='';
t='Enlaces'
}
document.getElementById('contador').value=t;
return false
}
}
}
</script>
<div style='margin:20px; margin-top:5px'>
<div class='smallfont' style='margin-bottom:2px'>
<p class='Boton BtnGreen'>
<input type='button' id='contador' value='Mostrar enlaces' style='width:297;height=35;font-weight:bold;font-size:16px;margin:0px;padding:0px' onClick=ventanaSecundaria()></div>
<div class='alt2' style='margin: 0px; padding: 6px; border: 1px inset;'>
<div id='hide' style='display: none;'>
<div class='info_bbc'>
AQUÍ LOS ENLACES <br />
</div>
</div>
</div>
</div>
</div>