
/**
* resize.js 0.3 970811
* by gary smith
* js component for "reloading page onResize"
*/
var saveInnerWidth;
var saveInnerHeight;


if(!saveInnerWidth && document.layers)
{
	window.onresize = resizeIt;
	saveInnerWidth = window.innerWidth;
	saveInnerHeight = window.innerHeight;
}

function resizeIt()
{
	//alert("Window needs updating");
	if (saveInnerWidth < window.innerWidth ||
		saveInnerWidth > window.innerWidth ||
		saveInnerHeight > window.innerHeight ||
		saveInnerHeight < window.innerHeight ) 
	{
		window.history.go(0);
	}
}
//***EOF***/
