function setContentWidth(w) {
	winW = (is.ns)? window.innerWidth-16 : document.body.offsetWidth-18
	winH = (is.ns)? window.innerHeight : document.body.offsetHeight-4
	if (winW < w)
	winW = w;
	contentLeft = (winW/2)-(w/2);
}

