<!--

	function isIE()
	{
		return (document.all != null && document.opera == null)
	}

	function isGecko()
	{
		return navigator.userAgent.toLowerCase().indexOf("gecko") > -1;
	}
	
	function isOpera()
	{
		return document.opera != null
	}


	function getWindowWidth() 
	{
		var windowWidth = 0;
		var nav = navigator.userAgent.toLowerCase();
		if (typeof(window.innerWidth) == 'number') 
		{
			windowWidth = window.innerWidth;
		}
		else 
		{
			if (document.documentElement && document.documentElement.clientWidth) 
			{
				windowWidth = document.documentElement.clientWidth;
			}
			else 
			{
				if (document.body && document.body.clientWidth) 
				{
					windowWidth = document.body.clientWidth;
				}
			}
		}
		if (nav.indexOf("opera") > -1)
		{
			return windowWidth - 4;
		}
		else
		{
			return windowWidth;
		}
	}

	function getWindowHeight() 
	{
		var windowHeight = 0;
		var nav = navigator.userAgent.toLowerCase();
		if (typeof(window.innerHeight) == 'number') 
		{
			windowHeight = window.innerHeight;
		}
		else 
		{
			if (document.documentElement && document.documentElement.clientHeight) 
			{
				windowHeight = document.documentElement.clientHeight;
			}
			else 
			{
				if (document.body && document.body.clientHeight) 
				{
					windowHeight = document.body.clientHeight;
				}
			}
		}
		if (nav.indexOf("opera") > -1)
		{
			return windowHeight - 4;
		}
		else
		{
			return windowHeight;
		}
	}


//-->