function resizeMe(x, y)
{
			if (self.innerHeight) 
			{
				iX = self.innerWidth;
				iY = self.innerHeight;
				oX = self.outerWidth;
				oY = self.outerHeight;

				gX = oX - iX;
				gY = oY - iY;

				window.resizeTo(x + gX, y + gY);
			}
			else if (document.documentElement && document.documentElement.clientHeight) 
			{
				myWidth = document.documentElement.clientWidth;
				myHeight = document.documentElement.clientHeight;
				myOWidth = document.body.offsetWidth;
				myOHeight = document.body.offsetHeight;
				
				window.resizeTo(x + 37, y + 147);

			}
			else if (document.body)
			{
				gX = document.body.offsetWidth - document.body.clientWidth;
				gY = document.body.offsetHeight - document.body.clientHeight;
				
				window.resizeTo(x + 37, y + 134);
			}
			document.body.style.overflow = "hidden";
}
