/******************************************************************* 
* 
* File    : JSFX_BrowserOpera.js © JavaScript-FX.com
* 
* Created : 2001/11/07 
* 
* Author  : Roy Whittle www.Roy.Whittle.com 
* 
* Purpose : To provide support for Opera!?!
* 
* History 
* Date         Version        Description 
* 2001-11-07	1.0		Created for new javascript-fx interface
***********************************************************************/  
if(window.opera) 	
{
	JSFX.Browser.getCanvasWidth	= function() {return document.body.clientWidth;}
	JSFX.Browser.getCanvasHeight	= function() {return document.body.clientHeight;}
	JSFX.Browser.getWindowWidth 	= function() {return document.body.clientWidth;}
	JSFX.Browser.getWindowHeight	= function() {return document.body.clientHeight;}
	JSFX.Browser.getScreenWidth	= function() {return screen.width;}
	JSFX.Browser.getScreenHeight	= function() {return screen.height;}
	JSFX.Browser.getMinX		= function() {return(window.pageXOffset);}
	JSFX.Browser.getMinY		= function() {return(window.pageYOffset);}
	JSFX.Browser.getMaxX		= function() {
		return(window.pageXOffset
			+window.innerWidth);
	}
	JSFX.Browser.getMaxY		= function() {
			return(window.pageYOffset
				+window.innerHeight);
	}
} 
/*** End  ***/ 