﻿// JScript File

function alterWidth()
{
	var browser = navigator.appName;
	if (browser == "Microsoft Internet Explorer")
	{
		var div = document.getElementById("pageContent");
		
		if (document.body.clientWidth > 990)
			div.style.width = "990px";
		else
			div.style.width = "auto";
	}
}

window.onresize = function()
{
	alterWidth();
}

alterWidth();

