
	if (self.innerHeight) // all except Explorer
	{
		height = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
		// Explorer 6 Strict Mode
	{
		height = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		height = document.body.clientHeight;
	}
var width;
		if (self.innerWidth) // all except Explorer
		{
			width = self.innerWidth;
		}
		else if (document.documentElement && document.documentElement.clientWidth)
			// Explorer 6 Strict Mode
		{
			width = document.documentElement.clientWidth;
		}
		else if (document.body) // other Explorers
		{
			width = document.body.clientWidth;
		}
