var ventana var cont=0 var titulopordefecto = "LACNIC" function afoto(cual,titulo) { if(cont==1){ventana.close();ventana=null} if(titulo==null){titulo=titulopordefecto} ventana=window.open('','ventana','resizable=no,scrollbars=yes,width=700,height=518') ventana.document.write('' + titulo + '') ventana.document.close() cont++ } function redimensionar(ancho, alto) { //ventana.resizeTo(ancho,alto) //+12 +60 ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup }