// JavaScript Document
function PositionsAndSizes_in_differentbrowsers()
{
	this.objWindowSize = new Object();
	
	this.windowGetSizeVariables = function()
	{
		if(window.innerWidth)
		{
			this.objWindowSize.width = window.innerWidth;
			this.objWindowSize.height = window.innerHeight;
			this.objWindowSize.sl = window.pageXOffset;
			this.objWindowSize.sv = window.pageYOffset;
		}
		else if(document.documentElement && document.documentElement.clientHeight)
		{
			this.objWindowSize.width = document.documentElement.clientWidth;
			this.objWindowSize.height = document.documentElement.clientHeight;
			this.objWindowSize.sl = document.documentElement.scrollLeft;
			this.objWindowSize.sv = document.documentElement.scrollTop;
		}
		else if(document.body)
		{
			this.objWindowSize.width = document.body.clientWidth;
			this.objWindowSize.height = document.body.clientHeight;
			this.objWindowSize.sl = document.body.scrollLeft;
			this.objWindowSize.sv = document.body.scrollTop;
		}
		return this.objWindowSize;
	}
}
var obj_PositionsAndSizes_in_differentbrowsers = new PositionsAndSizes_in_differentbrowsers();
