Forum Moderators: open
<!--
var str = "left=0,screenX=0,top=0,screenY=0";
if (window.screen) {
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;
str += ",height=" + ah;
str += ",innerHeight=" + ah;
str += ",width=" + aw;
str += ",innerWidth=" + aw;
} else {
str += ",resizable"; // so the user can resize the window manually
}
function fullScreenScrollbar(theURL) {
return window.open(theURL, '', str, 'scrollbars=1');
}
// -->
Perhaps you just need to alter your link to:
echo '<a href="javascript:void(0);" onclick="fullScreenScrollbar(\'/uploads/File/',$row['map'],'\');">Map</a><br>';
If that is not the case, we need to see the actual FullScreen() function.
str += ",scrollbars=1";
Here is the full script:
<!--
var str = "left=0,screenX=0,top=0,screenY=0";
if (window.screen) {
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;
str += ",height=" + ah;
str += ",innerHeight=" + ah;
str += ",width=" + aw;
str += ",innerWidth=" + aw;
str += ",scrollbars=1";
} else {
str += ",resizable"; // so the user can resize the window manually
}
function fullScreenScrollbar(theURL) {
return window.open(theURL, '', str);
}
// -->