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

