window.onload = init; 

function init() 
{
	document.body.onload = register;
	window.onresize = register;
	register();
}

function register()
{
	if (document.body.clientWidth < 950)
	{
		document.getElementById('content').style.marginLeft=160;
		document.body.style.textAlign="Left";
	}
	else
	{
		document.body.style.textAlign="";
		document.getElementById('content').style.marginLeft="";
	}
	return true;
}

