
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's 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
	var fullscreen = yes;
	windowprops = "width="+(screen.width-10)+",height="+
	(screen.height-50) + ",top=0, left=0";
	windowprops += (menubar ? ",menubar" : "") +
	(scrollbars ? ",scrollbars" : "") +
	(locationbar ? ",location" : "") +
	(directories ? ",directories" : "") +
	(resizable ? ",resizable" : "") +
	(statusbar ? ",status" : "") +
	(toolbar ? ",toolbar" : "") +
	(fullscreen ? ",fullscreen" : ""); 
	if ((screen.width < 1024) || (screen.height < 768))
	{
		alert("Screen resolution = "+screen.width+" X "+screen.height+".  "+
		"Resolution of: 1024 X 768 or greater is advised");
		scrollbars = yes;
	}
	window.open(page, 'WimsPgs', windowprops);

}
  