pues que estaba usando mucho tiempo este script y ahora me he dado cuenta que no sale la barra de scroll, pero no encuentro el error:
Código PHP:
var win= null;
function NewWindow(mypage,myname,w,h,scroll){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
var settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars=yes';
settings +='resizable=no';
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
Código PHP:
<a href='aviso_legal.html' onclick="NewWindow(this.href,'Nota Legal','400','400','yes');return false\">Nota Legal</a>
Un saludo y gracias, cosa mas rara...