Here, give this a whirl. If thats not what your looking for be a bit more specific or give me a link example.
<!-- TWO STEPS TO INSTALL FULLSCREEN WINDOW:
1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function openFullscreen(page) {
var yes = 1;
var no = 0;
var menubar = no; // The File, Edit, View Menus
var scrollbars = no; // Horizontal and vertical scrollbars
var locationbar = no; // The location box with the site URL
var directories = no; // the "What's New", "What Cool" links
var resizable = no; // Can the window be resized?
var statusbar = no; // Status bar (with "Document: Done"

var toolbar = no; // Back, Forward, Home, Stop toolbar
windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-50) + ",top=0,left=0";
windowprops += (menubar ? ",menubars" : ""

+
(scrollbars ? ",scrollbars" : ""

+
(locationbar ? ",location" : ""

+
(directories ? ",directories" : ""

+
(resizable ? ",resizable" : ""

+
(statusbar ? ",status" : ""

+
(toolbar ? ",toolbar" : ""

;
window.open(page, 'fullPopup', windowprops);
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<center>
<form>
<input type=button value="Open Fullscreen Page" onClick="openFullscreen('
</form>
</center>
<p><center>