
function openFullscreen(page)
{
	var yes = 1;
	var no = 0;

	var menubar = no; 		// The file, Edit, View Menus
	var channelmode = yes;
	var scrollbars = no; 	// Horizontal and vertical scrollbars
	var location = 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	status = no;		// Status bar (with "Document: Done")
	var toolbar = no; 		// Back, Forward, Home, Stop toolbar
	var titlebar = no;
	var fullscreen = yes;
	windowprops = "width=" + (screen.width/*-10*/) + ",height=" +
	(screen.height/*-50*/) + ",top=0, left=0";
	windowprops += (menubar ? ",menubar" : "") +
    (channelmode ? ",channelmode" : "") +
	(scrollbars ? ",scrollbars" : "") +
	(location ? ",location" : "") +
	(directories ? ",directories" : "") +
	(resizable ? ",resizable" : "") +
	(status ? ",status" : "") +
	(toolbar ? ",toolbar" : "") +
    (titlebar ? ", titlebar" : "") +
	(fullscreen ? ",fullscreen" : ""); 
	window.open(page, 'WimsPgs', windowprops);

}

