
// 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.body_suite)
	{
		if (document.body.offsetWidth < 800) {
			top.body_suite.id = "body_suite2";
		}
		else {
			top.body_suite.id = "body_suite";
		}
		if (document.documentElement.clientWidth < 800) {
			top.body_suite.id = "body_suite2";
		}
		else {
			top.body_suite.id = "body_suite";
		}

	}
}