//This is the Netscape resize bug fix.

var g_iOldHeight = window.innerHeight;
var g_iOldWidth = window.innerWidth;

function checkScreenSize()
{
        if (g_iOldWidth != window.innerWidth || g_iOldHeight != window.innerHeight) { 
		location.reload();
		
		}
}