Which browser(s)?
Code:
eval('window.showModelessDialog(url,"","help:0;resizable:1;dialogWidth:'+mwidth+'px;dialogHeight:'+mheight+'px")')
else
eval('window.open(url,"","width='+mwidth+'px,height='+mheight+'px,resizable=1,scrollbars=1")')
Just a little good practice: you almost never need to use eval(). In this case, you want to use:
Code:
window.showModelessDialog(url,"","help:0;resizable:1;dialogWidth:"+mwidth+"px;dialogHeight:"+mheight+"px")
else
window.open(url,"","width="+mwidth+"px,height="+mheight+"px,resizable=1,scrollbars=1")
Bookmarks