function Resize()
{
	if (document.layers)
	{
		if (window.innerWidth > 796)
			window.innerWidth = 796;
	}
	else if (document.all) 
	{    
		if (window.top.document.body.clientWidth > 796)
			window.top.resizeBy(796-window.top.document.body.clientWidth,0);
	}	
}

function Size()
{
	if (document.layers)
		window.innerWidth = 796;
	else if (document.all) 
		window.top.resizeBy(796-window.top.document.body.clientWidth,0);
}
