<!--
	var lastWidth = window.innerWidth;
	var lastHeight = window.innerHeight;


	function PW_ReDrawNetscape() 
	{ 
		if (document.layers) //  are we in dhtml ns4?
		{	
			if( (lastWidth != window.innerWidth) || (lastHeight != window.innerHeight))
			{
		   	 window.location=window.location;	// this'll toggle.
				 lastWidth = window.innerWidth;
				 lastHeight = window.innerHeight;
			}
		}
	}
//-->