Ciao, faccio aprire un popup da alcune thumb. Su firefox e safari tutto ok, ma da Internet Explorer la finestra ha la barra degli indirizzi e tutte quelle diavolerie che non mi servono. Come faccio a dire a IE che deve aprire una semplice finestra senza barra degli indirizzi, ne scrollbar?
var win = null;
function NewWindow(mypage,myname,w,h,scroll) {
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left ='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}grazieecho "<a href=\"#\" onclick=\"NewWindow('$imgdir/$image','ZoomIn','$width','$height','no');return false\"><img src=\"$thumbdir/$thumb\" width=\"$tsize[0]\" height=\"$tsize[1]\" border=\"0\" /></a>";