PDA

View Full Version : Help


Steven
06-26-2002, 03:26 AM
I use

window.open('picture.htm','','header=0,directories=0,addrbar=0,menubar=0,toolbar=no,status=0,scrollb ars=yes,resizable=0')

in order not to the top bar (display ... Microsoft Internet Explorer)
what ?????=0 I forget

Thanks
Steven
:confused:

x_goose_x
06-26-2002, 04:51 AM
You can't just disable the title bar like that, but you can make it full screen then resize it, leaving no toolbars or borders.

pop = window.open("page.htm","","fullscreen=yes");
pop.resizeTo(400,100);
pop.moveTo(100,100);

Steven
06-26-2002, 08:48 AM
Thanks, x_goose_x, it's a good idea