	if (self.window.document.body.offsetWidth && screen.width && 
		self.window.document.body.offsetHeight && screen.height)
	{
		if
		((self.window.document.body.offsetWidth==screen.width) &&
		(self.window.document.body.offsetHeight == screen.height))		
		{
			var h = screen.availHeight;
			var w = screen.availWidth;
			self.window.open(self.window.location.href,'','left=0;top=0;height='+h+';width='+w+';fullscreen=0;scrollbars=1;menubar=1;toolbar=1;location=1;resizable=1;status=1');
			self.window.close();
		}
	}
	else
	{
		if (self.window.innerWidth && self.window.innerHeight &&
			screen.width && screen.height)
		{
			if (self.window.innerWidth == screen.width &&
				self.window.innerHeight == screen.height)
			{
				var h = screen.availHeight;
				var w = screen.availWidth;
				self.window.open(self.window.location.href,'','left=0;top=0;height='+h+';width='+w+';fullscreen=0;scrollbars=1;menubar=1,toolbar=1,location=1,resizable=1,status=1');
				self.window.close();
			}
		}
	}
