function setObjWidth() {
	if(	window.innerWidth == undefined) {
		if(	document.body.offsetWidth > 950) {
			return '100%'
		} else {
			return '950'
		}
	} else {
		if(	window.innerWidth > 950) {
			return '100%'
		} else {
			return '950'
		}
	}
}
function setObjHeight() {
	if(	window.innerHeight == undefined) {
		if(	document.body.offsetHeight > 550) {
			return '100%'
		} else {
			return '550'
		}
	} else {
		if(	window.innerHeight > 550) {
			return '100%'
		} else {
			return '550'
		}
	}
}
function refreshPage() {
	document.getElementById('flashObj').width=setObjWidth();
	document.getElementById('flashObj').height=setObjHeight();
	if(document.body.offsetWidth > 950 & document.body.offsetHeight > 550) {
		document.getElementById('flashcontent').style.overflow='hidden';
	} else {
		document.getElementById('flashcontent').style.overflow='visible';
	}
}
window.onresize = refreshPage;
