/* COPYRIGHT 2002 Tim Harris, TimHarris.com, ALL RIGHTS RESERVED */

//for Netscape because it doesn't work well when the page is resized
var isNav = false
if (parseInt(navigator.appVersion) >= 4)
	{
	if (navigator.appName == "Netscape") {isNav = true}
	}
function handleResize()
{
location.reload()
return false
}
if (isNav == true)
{
window.captureEvents(Event.RESIZE)
window.onresize = handleResize
}
// end for Netscape resizing
