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