/*
(c) webreference.com
Description:
	Thanks to webreference.com
	Code for handling the Netscape resize bug.
	http://www.webreference.com/dhtml/diner/resize/ for a full explanation
*/

if ( document.layers )
{
	origWidth = innerWidth;
	origHeight = innerHeight;
}

function reDo() 
{
	if (innerWidth != origWidth || innerHeight != origHeight) 
		location.reload();
}

if ( document.layers ) onresize = reDo;
