function iefix1() {
	thebrowser = navigator.appName;
	theversion = navigator.userAgent;
	if(thebrowser == "Microsoft Internet Explorer") // && (theversion.lastIndexOf("6.") >= -1 || theversion.lastIndexOf("5.") >= -1)
	{
		//document.write("Your browser is Internet Explorer, and is version 5.0 or higher.");
		windowwidth = document.body.clientWidth;
		if (windowwidth <910)
		{
			document.all.mainbox.style.left="0px";
			document.all.mainbox.style.marginLeft="0px";
		}
	}
	else
	{
		windowwidth = window.innerWidth;
		if (windowwidth <910)
		{
			document.getElementById('mainbox').style.left="0px";
			document.getElementById('mainbox').style.marginLeft="0px";
		}
	}
}
function iefix() {
	thebrowser = navigator.appName;
	theversion = navigator.userAgent;
	if(thebrowser == "Microsoft Internet Explorer") // && (theversion.lastIndexOf("6.") >= -1 || theversion.lastIndexOf("5.") >= -1)
	{
		//document.write("Your browser is Internet Explorer, and is version 5.0 or higher.");
		windowwidth = document.body.clientWidth;
		if (windowwidth <910)
		{
			document.all.mainbox.style.left="0px";
			document.all.mainbox.style.marginLeft="0px";
		}
		else
		{
			document.all.mainbox.style.left="50%";
			document.all.mainbox.style.marginLeft="-450px";
		}
	}
	else
	{
		windowwidth = window.innerWidth;
		if (windowwidth <910)
		{
			document.getElementById('mainbox').style.left="0px";
			document.getElementById('mainbox').style.marginLeft="0px";
		}
		else
		{
			document.getElementById('mainbox').style.left="50%";
			document.getElementById('mainbox').style.marginLeft="-450px";
		}
	}
}
iefix1()
onload=iefix1;
window.onresize=iefix;
