
// Content: js resize
var w=null;function log(m){if(!w)w=window.open();w.document.write(m+'<br />');}

function updateSize () {
	updateIt();
}

function updateIt () {
	if (top.global1024)
	{
		if (document.body.offsetWidth < 850) {
			top.global1024.className = "global800";
		}
		else {
			top.global1024.className = "global1024";
		}
		if (document.documentElement.clientWidth < 850) {
			top.global1024.className = "global800";
		}
		else {
			top.global1024.className = "global1024";
		}

	}
}
