function resizeFlash() {
	foo = document.getElementById('swfcontent');
	if (document.body.clientWidth > 960) {
		foo.width = "100%";
	} else foo.width = "960";
	if (document.body.clientHeight > 550) {
		foo.height = "100%";
	} else foo.height = "550";
}
window.onresize = resizeFlash;
window.onload = resizeFlash;