Hi,
I am using this script
"function openFullscreen( page) {
var yes = 1;
var no = 0;
windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-50)
+ ",top=0,left=0" ;
windowprops += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbar s" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directori es" : "") +
(resizable ? ",resizable " : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");
window.open(pag e, 'fullPopup', windowprops);
}"
to open a window full screen,
but when this window is hidden and I want to re-open it, I can't ..?
Thanks in advance
I am using this script
"function openFullscreen( page) {
var yes = 1;
var no = 0;
windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-50)
+ ",top=0,left=0" ;
windowprops += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbar s" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directori es" : "") +
(resizable ? ",resizable " : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");
window.open(pag e, 'fullPopup', windowprops);
}"
to open a window full screen,
but when this window is hidden and I want to re-open it, I can't ..?
Thanks in advance
Comment