function sizeWindow() {
	var winSize = document.body.clientWidth;
	if (winSize < 990) {
	document.getElementById("wrapper").style.width = "990px";
	} else {
	document.getElementById("wrapper").style.width = "100%";
	}
	var winHeight = document.body.clientHeight;
	if (winHeight < 793) {
	document.getElementById("wrapper").style.height = "793px";
	} else {
	document.getElementById("wrapper").style.height = "100%";
	}
	} 