var min_width = 950

function SetWidth(obj,val)
{
	obj.style.width = val;
}

function detectBrowser()
{
	if (navigator.appName=="Microsoft Internet Explorer")
	{
		opaque = document.getElementById("body");
		container = document.getElementById("bckg");

		if(container.offsetWidth < min_width)
			SetWidth(container,min_width+"px");
		else if(opaque.offsetWidth > container.offsetWidth)
			SetWidth(container,"100%");
	}
	else
	{
		//
	}
}
