//------------------------------------------------------------------------------
// JAVASCRIPT SLIDE SHOW "CLICKER"
// Version 4.2 April 2004
// Created by Alan Levine, Maricopa Community Colleges
// alan.levine@domail.maricopa.edu
// http://www.mcli.dist.maricopa.edu/proj/jclicker/
// 
// GNU General Public License
// Copyright (C) 2004 Alan Levine
// See URL above for license.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation; either Version 2 of the License, or (at your
// option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details at http://www.gnu.org/licenses/gpl.html.
//
// Modified Version May 2006
// Modified by Jay H. Zimmerman
//------------------------------------------------------------------------------
//
// SHOWFULLSCREEN FUNCTION
//
// This function tells the web browser how to open the window.
function showFullScreen(url) {
	if (window.screen) {		
		w = screen.availWidth;
		h = screen.availHeight - 45;
	} else {
		w = 640;
		h = 480;
	}
	bigshow = window.open( url, 'ext', 'status,resizable,top=0,left=0,screenX=0,screenY=0,width=' + w + ',height=' + h);
	if (window.focus) {bigshow.focus()}
}
