//adjust stylesheet for low resolution browsers
if (screen.width <= 970) { 
	var headWidth = document.getElementById("top_header_bg");
	headWidth.style.width = "1000px";
	var footerWidth = document.getElementById("footer");
	footerWidth.style.width = "1000px";
	var headingSize = document.getElementById("heading_tagline");
	headingSize.style.fontSize = ("8pt");
}

//adjust for people who have shrunk their browser window
function GetWidth()
{
        var x = 0;
        if (self.innerHeight)
        {
                x = self.innerWidth;
        }
        else if (document.documentElement && document.documentElement.clientHeight)
        {
                x = document.documentElement.clientWidth;
        }
        else if (document.body)
        {
                x = document.body.clientWidth;
        }
        return x;
}

if (GetWidth() <= 970) { 
	var headWidth = document.getElementById("top_header_bg");
	headWidth.style.width = "1000px";
	var footerWidth = document.getElementById("footer");
	footerWidth.style.width = "1000px";
	var headingSize = document.getElementById("heading_tagline");
	headingSize.style.fontSize = ("8pt");
}
