Mi problema está en que cuando muestro el popup porque en Mozilla Firefox me sale sin la barra de scroll vertical.
tengo como código js
function abrirpopup(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
if(window.screen)if(isCenter)if(isCenter=="true"){
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2;
features+=(features!='')?',':'';
features+=',left='+myLeft+',top='+myTop;
}
window.open(theURL,winName,features+((features!='' )?',':'')+'width='+myWidth+',height='+myHeight);
}
y para llamar una ventana aplico
<a href="javascript:;abrirpopup('ver_noticia.php?cod= <?=$row[id]?>','noticia','status=yes scrollbars=yes','640','480','true')"><?=$row[titulo_articulo]?></a></span>
en Internet explorer me muestra el scroll vertical
pero en Mozilla Firefox no
![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)