24/06/2004, 12:42
|
| Moderadora | | Fecha de Ingreso: agosto-2001 Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 4 meses Puntos: 381 | |
Prueba entonces esto......
var mipopup; var abierta = false
function abrepopup()
{
if(abierta){
if (!mipopup.closed)
{
mipopup.focus();
}
else
{
var url = 'hola.htm';
mipopup = window.open(url,"popup","scrollbars=yes,width=400, left=200,top=25,height=35 0,status=yes");
abierta = true
}
}
else{
var url = 'hola.htm';
mipopup = window.open(url,"popup","scrollbars=yes,width=400, left=200,top=25,height=35 0,status=yes");
}
}
prueba a ver....
Última edición por tunait; 24/06/2004 a las 12:43 |