function AdjustBackground() { window.onresize = AdjustView; AdjustView(); }
function AdjustView()
{
	var w = 0, h = 0;
	if (typeof( window.innerWidth ) == 'number' ) { w = window.innerWidth; h = window.innerHeight; }
	else
	{
		if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
		{ w = document.documentElement.clientWidth; h = document.documentElement.clientHeight; }
		else
		{
			if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
			{ w = document.body.clientWidth; h = document.body.clientHeight; }
		}
	}

	var sections = [['nwe_container',25]];
	for (i=0; i<sections.length; i++)
	{
		var section = document.getElementById(sections[i][0]);
		if (section)
			section.style.height = (h-sections[i][1])+'px';
	}
}
