// Quidnunc Components.
//
// Copyright 1999, 2000 Quidnunc All Rights Reserved.
//
// refresh_page.js

var iWidth  = window.innerWidth;
var iHeight = window.innerHeight;

function refreshPage()
{
    if(isNetscape())
    {
        if(iWidth != window.innerWidth || iHeight != window.innerHeight)
        {
            window.location.reload(false);
        }
    }
}
