function readjust() {
	w = 930;
	h = 420;
	objWidth = "100%";
	objHeight = "100%";
	if (document.all) {
		if (document.body.clientWidth <= w && w > 0) {
			objWidth = w + "px";
		}
		if (document.body.clientHeight <= h && h > 0) {
			objHeight = h + "px";
		}
		if (document.object[0] && document.object[1]) {
			document.object[0].width = objWidth;
			document.object[0].height = objHeight;
			document.object[1].width = objWidth;
			document.object[1].height = objHeight;
		} else {
			document.object.width = objWidth;
			document.object.height = objHeight;
		}
	} else {
		if (window.innerWidth <= w && w > 0) {
			objWidth = w + "px";
		}
		if (window.innerHeight <= h && h > 0) {
			objHeight = h + "px";
		}
		document.getElementById('object').width = objWidth;
		document.getElementById('object').height = objHeight;
	}
}
