function checkWindowSize () {
	var size = document.getSize();
	var h = size.y;
	var w = size.x;
	var swf = document.getElementById("flash_swf");
	var wrapper = document.getElementById("wrapper");
	if (h < 690) {
		swf.style.height = "690px";
		wrapper.style.height = "690px";
	} else {
		swf.style.height = h + "px";
		wrapper.style.height = h + "px";
	}
	if (w < 1000) {
		swf.style.width = "1000px";
		wrapper.style.width = "1000px";
	} else {
		swf.style.width = w + "px";
		wrapper.style.width = w + "px";
	}
}
window.onresize = checkWindowSize;
window.onload = checkWindowSize;
document.onload = checkWindowSize;