function zoom(b) {
	var f = (parseInt(document.body.style.fontSize) || 100) * (b ? 1.1 : 0.9);
	if (f >= 80 && f <= 120) 
		document.body.style.fontSize = f + "%";
}