window.onresize = GetNewX;
var spX;
var isNav = (navigator.appName == "Netscape") ? true : false;

function GetNewX()
{
	if (isNav)	{	spX = (window.innerWidth - 700)/2; }
	else		{	spX = (document.body.clientWidth - 700)/2;	}
}
