// functions to modify layout for wide windows                     //

function setWindow() {
    var windowWidth = getWindowWidth()
    var windowHeight = getWindowHeight()
	if (windowHeight < 845) {
        document.getElementById("wrapper").className = "window_medium"
        document.getElementById("logo").className = "logo_mid"
		if (windowHeight < 745) {
	        document.getElementById("wrapper").className = "window_small"
	        document.getElementById("logo").className = "logo_high"
		}
	}
    else {
       document.getElementById("wrapper").className = "window_big"
       document.getElementById("logo").className = "logo_low"
	}
} //setWideOption