function resizeBox()
{
	sObj = document.getElementById("box").style;
	if (document.body.clientWidth)	(document.body.clientWidth > 1280) ? sObj.width = "1280px" : sObj.width = "90%";
}

//onload = resizeBox;
//onresize = resizeBox;

